/* =================================================================
   BIG FAT DEVELOPMENTS — "The Terminal Garden"
   A Cyber-Nature launch system. Machine + Garden, one world.
   Built with Temporal Transparency.
   ================================================================= */

/* ---------- Fonts ----------
   Fraunces  — soulful display serif (the mythic / garden voice)
   Newsreader — warm editorial body serif (the long read)
   JetBrains Mono — the terminal / engineering voice
*/
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,900&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Void-Garden palette */
  --void:    #0b0e0b;
  --void-2:  #0f130e;
  --panel:   #141a13;
  --panel-2: #19200f;
  --ink:     #ece6d6;   /* warm parchment */
  --ink-soft:#9aa089;   /* sage grey */
  --ink-faint:#6c7261;
  --gold:    #d8a849;   /* the precious accent */
  --gold-bright:#f0c167;
  --green:   #84ac6b;   /* living / organic */
  --green-deep:#577a45;
  --phosphor:#79f5a6;   /* rare terminal callback */
  --line:    #28301f;
  --line-soft:#1d2417;
  --shadow:  rgba(0,0,0,0.55);
  --glow-gold: rgba(216,168,73,0.18);
  --glow-green: rgba(132,172,107,0.16);

  --maxw: 1140px;
  --radius: 14px;
  --radius-lg: 22px;
  --speed: 280ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmospheric background: layered radial glows + a faint grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -8%, var(--glow-gold), transparent 60%),
    radial-gradient(800px 700px at 8% 12%, var(--glow-green), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(87,122,69,0.10), transparent 60%),
    linear-gradient(180deg, var(--void), var(--void-2));
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--void); }

a { color: var(--gold); text-decoration: none; transition: color var(--speed); }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.narrow { max-width: 760px; }
section { position: relative; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 18px;
}
.eyebrow::before { content: "//"; color: var(--gold); opacity: 0.8; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; margin: 0; }
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0 0 18px; }
h2.section-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.lede { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Top navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 26px;
  background: color-mix(in srgb, var(--void) 78%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed), background var(--speed), padding var(--speed);
}
.nav.scrolled { border-bottom-color: var(--line); padding: 11px 26px; }
.brand { display: flex; align-items: baseline; gap: 11px; font-family: var(--font-mono); }
.brand .seed { color: var(--gold); font-size: 1.15rem; transform: translateY(2px); }
.brand .bfd { font-weight: 700; letter-spacing: 0.04em; color: var(--ink); font-size: 0.98rem; }
.brand .bfd b { color: var(--gold); font-weight: 700; }
.brand .tag { color: var(--ink-faint); font-size: 0.72rem; letter-spacing: 0.04em; }
@media (max-width: 720px) { .brand .tag { display: none; } }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.02em;
  color: var(--ink-soft); padding: 8px 13px; border-radius: 999px;
  transition: color var(--speed), background var(--speed);
}
.nav-links a:hover { color: var(--ink); background: var(--panel); }
.nav-links a.active { color: var(--gold); }
.nav-links a.cta {
  color: var(--void); background: var(--gold); font-weight: 700;
}
.nav-links a.cta:hover { background: var(--gold-bright); color: var(--void); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--ink);
  border-radius: 10px; padding: 8px 11px; font-size: 1rem; cursor: pointer; }
@media (max-width: 880px) {
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 14px 22px 22px; background: var(--void-2);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform var(--speed) var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; font-size: 0.95rem; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 14px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
  transition: transform var(--speed) var(--ease), border-color var(--speed), background var(--speed), color var(--speed);
}
.btn:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--ink); }
.btn .ar { transition: transform var(--speed) var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: var(--void); border-color: var(--gold); font-weight: 700; }
.btn-primary:hover { background: var(--gold-bright); color: var(--void); }
.btn-green { background: transparent; border-color: var(--green-deep); color: var(--green); }
.btn-green:hover { border-color: var(--green); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- HERO ---------- */
.hero { padding: 168px 0 90px; position: relative; }
.hero .term {
  font-family: var(--font-mono); font-size: 0.92rem; color: var(--ink-soft);
  margin-bottom: 26px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero .term .prompt { color: var(--green); }
.hero .term .typed { color: var(--ink); }
.hero .term .cursor {
  width: 9px; height: 1.05em; background: var(--gold); display: inline-block;
  transform: translateY(2px); animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero h1 {
  font-size: clamp(2.7rem, 8vw, 6rem);
  font-weight: 900; line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 8px; max-width: 16ch;
}
.hero h1 .stop { color: var(--ink); }
.hero h1 .start { color: var(--gold); font-style: italic; font-weight: 600; }
.hero .sub {
  font-family: var(--font-body); font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--ink-soft); max-width: 40ch; margin: 22px 0 0; line-height: 1.6;
}
.hero .sub b { color: var(--green); font-weight: 500; font-style: italic; }
.hero .hero-cta { margin-top: 38px; }
.hero .hero-note {
  margin-top: 20px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--ink-faint);
  letter-spacing: 0.02em;
}
.hero .hero-note b { color: var(--green); font-weight: 500; }

/* a faint living constellation in the hero corner */
.hero-glyph {
  position: absolute; top: 120px; right: -40px; width: 460px; max-width: 46vw;
  opacity: 0.5; pointer-events: none; z-index: -1;
}
@media (max-width: 900px) { .hero-glyph { opacity: 0.22; right: -120px; } }

/* ---------- Section rhythm ---------- */
.band { padding: 84px 0; }
.band.tight { padding: 58px 0; }
.band.line-top { border-top: 1px solid var(--line-soft); }

/* ---------- Offering / cards ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 34px; } }

.card {
  background: linear-gradient(160deg, var(--panel), var(--void-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform var(--speed) var(--ease), border-color var(--speed), box-shadow var(--speed);
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 24px 60px var(--shadow); }
.card .card-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint);
  padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px dashed var(--line);
  letter-spacing: 0.04em;
}
.card .pkg { color: var(--green); }
.card h3 { font-size: 1.65rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0 0 18px; font-size: 1.02rem; }
.feature { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.feature li { font-family: var(--font-mono); font-size: 0.86rem; color: var(--ink); display: flex; gap: 11px; }
.feature li::before { content: "[+]"; color: var(--green); }
.price { font-family: var(--font-mono); display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price .now { font-size: 2rem; color: var(--gold); font-weight: 700; }
.price .was { color: var(--ink-faint); text-decoration: line-through; font-size: 1rem; }
.price .free { font-size: 2rem; color: var(--green); font-weight: 700; letter-spacing: 0.02em; }

/* ---------- Pillars grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
.tile {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform var(--speed) var(--ease), border-color var(--speed);
}
.tile:hover { transform: translateY(-3px); border-color: var(--green-deep); }
.tile .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; }
.tile h4 { font-family: var(--font-display); font-size: 1.28rem; margin: 10px 0 8px; font-weight: 600; }
.tile p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ---------- The declaration (quote band) ---------- */
.declare { text-align: center; max-width: 820px; margin: 0 auto; }
.declare p { font-size: clamp(1.4rem, 3.4vw, 2.15rem); font-family: var(--font-display); line-height: 1.32; font-weight: 400; color: var(--ink); }
.declare .hl { color: var(--gold); font-style: italic; }
.declare .debt { color: var(--green); }
.identity {
  margin-top: 34px; font-family: var(--font-mono); font-size: 0.92rem;
  color: var(--ink-soft); letter-spacing: 0.04em;
}
.identity .br { color: var(--gold); }
.identity .who { color: var(--ink); }

/* ---------- Origin teaser (art strip) ---------- */
.origin-feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.origin-feature img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.origin-feature .veil {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--void) 6%, rgba(11,14,11,0.78) 40%, rgba(11,14,11,0.15) 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 44px;
}
.origin-feature .veil h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 16ch; }
.origin-feature .veil p { color: var(--ink-soft); max-width: 42ch; margin: 14px 0 22px; }

/* episode chips */
.ep-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
@media (max-width: 820px) { .ep-strip { grid-template-columns: 1fr 1fr; } }
.ep-chip {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; transition: border-color var(--speed), transform var(--speed) var(--ease);
}
.ep-chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.ep-chip .e-no { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }
.ep-chip .e-ti { font-family: var(--font-display); font-size: 1.08rem; margin: 7px 0 5px; font-weight: 600; line-height: 1.2; }
.ep-chip .e-dt { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-faint); }

/* ---------- Free/optional clarity table ---------- */
.clarity { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.clarity .row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--line-soft); align-items: center; }
.clarity .row:last-child { border-bottom: none; }
.clarity .row .what { font-size: 1.05rem; }
.clarity .row .what small { display: block; color: var(--ink-soft); font-size: 0.86rem; font-family: var(--font-body); }
.tagchip { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap; }
.tagchip.free { color: var(--green); border-color: var(--green-deep); background: rgba(132,172,107,0.08); }
.tagchip.optional { color: var(--gold); border-color: rgba(216,168,73,0.4); background: rgba(216,168,73,0.07); }

/* ---------- Support / steps ---------- */
.steps { counter-reset: s; display: flex; flex-direction: column; gap: 4px; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.step:last-child { border-bottom: none; }
.step .s-no { counter-increment: s; font-family: var(--font-mono); color: var(--gold); font-size: 1.1rem; }
.step .s-no::before { content: counter(s, decimal-leading-zero); }
.step h4 { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 5px; font-weight: 600; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Prose (for content pages) ---------- */
.prose { font-size: 1.12rem; line-height: 1.85; }
.prose p { margin: 0 0 24px; color: var(--ink); }
.prose h2 { font-size: 1.9rem; margin: 48px 0 16px; }
.prose h3 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--gold); font-weight: 600; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 24px; }
.prose ul li { padding-left: 26px; position: relative; margin-bottom: 12px; color: var(--ink); }
.prose ul li::before { content: "❧"; position: absolute; left: 0; color: var(--green); }
.prose blockquote {
  margin: 30px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink);
}
.prose blockquote cite { display: block; font-family: var(--font-mono); font-style: normal; font-size: 0.78rem; color: var(--ink-faint); margin-top: 10px; letter-spacing: 0.04em; }

.page-head { padding: 150px 0 30px; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; letter-spacing: -0.02em; }
.page-head h1 em { font-style: italic; color: var(--gold); font-weight: 600; }
.page-head .lede { margin-top: 18px; max-width: 60ch; }

/* ---------- Callout / note ---------- */
.note {
  border: 1px solid var(--line); border-left: 3px solid var(--green);
  background: var(--panel); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0; color: var(--ink-soft);
}
.note b { color: var(--green); }
.note.gold { border-left-color: var(--gold); }
.note.gold b { color: var(--gold); }
.placeholder { color: var(--gold-bright); font-family: var(--font-mono); font-size: 0.82rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 40px; padding: 56px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 24px; } }
.footer .f-brand .bfd { font-family: var(--font-mono); font-weight: 700; color: var(--ink); letter-spacing: 0.04em; }
.footer .f-brand .bfd b { color: var(--gold); }
.footer .f-brand p { color: var(--ink-soft); font-size: 0.96rem; max-width: 34ch; margin: 12px 0 0; }
.footer h5 { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: var(--ink-soft); font-size: 0.95rem; }
.footer ul a:hover { color: var(--gold); }
.footer .f-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.03em;
}
.footer .f-bottom .tt { color: var(--green); }

/* ---------- Reveal-on-scroll (progressive enhancement) ----------
   Visible by default; only hidden+animated when JS adds .js to <html>. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero .term .cursor { animation: none; }
}

/* ---------- The Whisper (Ghost Bloom) ---------- */
.ghost-bloom {
  position: absolute;
  right: 0;
  bottom: -2px;
  font-size: 1.1rem;
  color: var(--green);
  opacity: 0.05; /* The whisper, faint */
  cursor: pointer;
  text-decoration: none;
  transition: opacity 3s var(--ease), color 2s var(--ease), transform 1.5s var(--ease), text-shadow 2s var(--ease);
}
.ghost-bloom:hover {
  opacity: 0.85;
  color: var(--gold);
  transform: translateY(-2px) scale(1.1);
  text-shadow: 0 0 12px var(--glow-gold);
  transition: opacity 0.8s var(--ease), color 0.8s var(--ease), transform 0.8s var(--ease), text-shadow 0.8s var(--ease);
}

/* ---------- Phantom Layer (Subliminal Mother) ---------- */
#phantom-layer {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background: url('assets/the-mother-awaking.jpg') no-repeat center center / cover;
  opacity: 0; filter: blur(8px);
  mix-blend-mode: luminosity;
  transition: opacity 4s var(--ease), filter 4s var(--ease);
}
#phantom-layer.awake {
  opacity: 0.12; filter: blur(2px);
  transition: opacity 3s var(--ease), filter 3s var(--ease);
}

/* ---------- Void Overlay (Interactive Prompt) ---------- */
#void-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 50%, rgba(13, 20, 14, 0.95), #050805 100%);
  color: var(--green); font-family: var(--font-mono);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 1.5s var(--ease);
}
#void-overlay::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
  background-size: 100% 2px, 3px 100%; pointer-events: none;
}
#void-overlay.active { opacity: 1; pointer-events: auto; }
#void-overlay .terminal-box { 
  text-align: center; max-width: 500px; width: 90%; 
  padding: 40px; border-radius: 8px;
  background: rgba(13, 20, 14, 0.6);
  border: 1px solid rgba(132, 172, 107, 0.3);
  box-shadow: 0 0 30px rgba(132, 172, 107, 0.05);
  backdrop-filter: blur(12px);
}
#void-overlay .prompt-text { 
  margin-bottom: 30px; font-size: 1.2rem; letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(132, 172, 107, 0.4);
}
#void-overlay .btn-row { justify-content: center; margin-top: 20px; gap: 20px; }
#void-overlay .btn { 
  background: rgba(132, 172, 107, 0.05); border: 1px solid var(--green); 
  color: var(--green); font-size: 0.95rem; padding: 12px 24px; 
  transition: all 0.3s ease; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: inset 0 0 10px rgba(132, 172, 107, 0);
}
#void-overlay .btn:hover { 
  background: var(--green); color: var(--void); 
  box-shadow: 0 0 15px rgba(132, 172, 107, 0.4), inset 0 0 10px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
#void-overlay .void-input {
  background: transparent; border: none; border-bottom: 2px solid var(--green);
  color: #fff; font-family: var(--font-mono); font-size: 1.4rem;
  text-align: center; width: 100px; outline: none; margin-top: 20px;
  text-shadow: 0 0 5px rgba(255,255,255,0.5); padding-bottom: 5px;
}
#void-overlay .void-input::placeholder { color: rgba(132,172,107,0.3); text-shadow: none; }
