/* ==========================================================================
   Two Oaks Technologies LLC — brand stylesheet
   Palette pulled from the logo: deep forest green + antique gold.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:          #08110d;
  --bg-alt:      #0b1611;
  --surface:     #0f1d16;
  --surface-2:   #14261d;
  --surface-3:   #1a3126;

  /* Gold */
  --gold:        #c8a44d;
  --gold-bright: #e6cb8a;
  --gold-dim:    #8d7231;
  --gold-glow:   rgba(200, 164, 77, 0.28);

  /* Green accent */
  --moss:        #4c8a63;

  /* Type */
  --text:        #e9efe9;
  --text-mid:    #b9c8bd;
  --muted:       #8ea395;

  /* Lines */
  --line:        rgba(200, 164, 77, 0.16);
  --line-soft:   rgba(233, 239, 233, 0.08);

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* height:auto and align-self:center are guards, not decoration: iOS Safari
   stretches an image that is a direct flex/grid item to fill its track, and
   every mark on this site sits inside one. */
img { max-width: 100%; display: block; height: auto; align-self: center; }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1.1em; color: var(--text-mid); }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section__head { max-width: 760px; margin-bottom: 3rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.lede { font-size: 1.09rem; color: var(--text-mid); }

/* Technical eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

/* Faint circuit grid used behind sections */
.grid-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(200,164,77,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,77,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 20%, transparent 78%);
}
.grid-bg > * { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .88rem 1.6rem; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn--gold {
  /* Kept to the light half of the gold ramp so the dark label stays legible
     across the whole button, including the far corner of the gradient. */
  background: linear-gradient(135deg, var(--gold-bright), #d9b76e 60%, var(--gold));
  color: #0d1a12; box-shadow: 0 6px 26px -10px var(--gold-glow);
}
.btn--gold:hover { color: #0d1a12; transform: translateY(-2px); box-shadow: 0 12px 34px -10px var(--gold-glow); }
.btn--ghost { border-color: var(--line); color: var(--text); background: rgba(200,164,77,.04); }
.btn--ghost:hover { color: var(--gold-bright); border-color: var(--gold); background: rgba(200,164,77,.09); transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.15rem; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 17, 13, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); background: rgba(8, 17, 13, 0.93); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 40px; height: auto; filter: drop-shadow(0 0 12px rgba(200,164,77,.25)); }
.brand__name {
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-bright); line-height: 1.1;
}
.brand__sub {
  display: block; font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .22em; color: var(--muted); margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5rem .8rem; border-radius: 8px; font-size: .93rem; font-weight: 500;
  color: var(--text-mid); transition: color .2s, background .2s;
}
.nav a:hover { color: var(--gold-bright); background: rgba(200,164,77,.07); }
.nav a[aria-current="page"] { color: var(--gold-bright); }
.header .btn { margin-left: .5rem; }
/* `.nav a` outranks `.btn--gold`, which would leave the dark-on-gold phone
   button rendering muted grey on gold. Restore the button's own colours. */
.nav a.btn--gold, .nav a.btn--gold:hover { color: #0d1a12; background-image: linear-gradient(135deg, var(--gold-bright), #d9b76e 60%, var(--gold)); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 9px;
  border: 1px solid var(--line); background: rgba(200,164,77,.05);
  color: var(--gold); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; transition: .25s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: currentColor; transition: .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6rem); overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .85; }
.hero::after {
  content: ""; position: absolute; z-index: 0; inset: auto 0 -40% 0; height: 80%;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(200,164,77,.13), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1.1rem; }
/* Gradient stays inside the gold range: a headline wraps unpredictably, and a
   ramp that ran to a pale green left the second line washed out. */
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 70%, #d3b673);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { font-size: clamp(1.03rem, 1.6vw, 1.18rem); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.4rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
}
.hero__meta div strong {
  display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-bright); line-height: 1.2;
}
.hero__meta div span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Brand-led hero: full logo lockup centred above the headline. The lockup
   carries the tagline and the Proverbs line, so it is the page's first word. */
.hero--brand { padding-top: clamp(2.5rem, 5vw, 4rem); }
/* gap:0 — the shared .hero__inner grid gap would otherwise space every stacked
   child by ~4rem; the elements carry their own vertical rhythm. */
.hero__inner--center { grid-template-columns: 1fr; gap: 0; text-align: center; justify-items: center; }
/* The mark is a fixed-ratio BOX with the image letterboxed inside it, rather
   than an <img> left to size itself. Intrinsic image sizing is where mobile
   browsers get creative — reports of vertical stretching in portrait that were
   not reproducible in Chromium at any viewport. Here the image is given an
   explicit width AND height (100% of a box whose ratio is pinned), so there is
   no intrinsic-sizing path left to get wrong; object-fit:contain then keeps the
   artwork proportional even if the box itself were mis-sized. */
.hero__logo {
  display: block;
  /* Scales with the viewport so the "Founded on Proverbs 3:5-6" line stays
     readable on a phone rather than collapsing to a minimum width. */
  width: min(240px, 66vw);
  aspect-ratio: 796 / 802;
  margin: 0 auto 1.7rem;
  align-self: center;
  justify-self: center;
}
.hero__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(200, 164, 77, 0.13));
}
.hero__inner--center h1 { max-width: 22ch; }
.hero__inner--center .hero__lede { margin-inline: auto; }
.hero__inner--center .hero__actions { justify-content: center; }
.hero__inner--center .hero__meta { justify-content: center; text-align: center; }

/* Section head paired with a panel (e.g. the audit terminal) */
.split-intro {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 3.5rem); align-items: center; margin-bottom: 3rem;
}

/* ---------- Faith. Family. Innovation. ---------- */
.faith { position: relative; overflow: hidden; }
.faith::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 50% 0%, rgba(200,164,77,.1), transparent 68%);
}
.faith > * { position: relative; }
.faith__verse { text-align: center; max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); }
.faith__verse blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2.3vw, 1.55rem); line-height: 1.6; color: var(--text);
}
.faith__verse cite {
  display: block; margin-top: 1.15rem; font-family: var(--font-mono); font-style: normal;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}

.values { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.25rem; align-items: start; }
.value {
  padding: 1.9rem 1.7rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.value:hover { transform: translateY(-4px); border-color: var(--line); }
.value__word {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  color: var(--text); margin-bottom: .7rem; letter-spacing: .01em;
}
.value p { margin-bottom: 0; font-size: .96rem; }
/* Faith leads the three, so it gets the gold treatment and a little more room. */
.value--lead {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: rgba(200,164,77,.42);
  box-shadow: 0 0 0 1px rgba(200,164,77,.09), 0 30px 60px -35px rgba(200,164,77,.3);
}
.value--lead .value__word {
  font-size: 2.1rem;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.value--lead p { color: var(--text); }

/* Terminal-style audit panel */
.terminal {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,38,29,.92), rgba(11,22,17,.96));
  box-shadow: 0 30px 70px -35px rgba(0,0,0,.9), 0 0 0 1px rgba(200,164,77,.05);
  overflow: hidden;
}
.terminal__bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem; border-bottom: 1px solid var(--line-soft); background: rgba(200,164,77,.045);
}
.terminal__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-dim); opacity: .65; }
.terminal__dot:nth-child(2) { opacity: .45; }
.terminal__dot:nth-child(3) { opacity: .3; }
.terminal__title { margin-left: .4rem; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.terminal__body { padding: 1.25rem 1.25rem 1.4rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.95; min-height: 268px; }
.terminal__body .k { color: var(--muted); }
.terminal__body .ok { color: var(--moss); }
.terminal__body .warn { color: var(--gold-bright); }
.terminal__body .fail { color: #d98a6a; }
.terminal__line { display: block; }
.terminal__cursor { display: inline-block; width: 8px; height: 1em; background: var(--gold); vertical-align: -2px; animation: blink 1.1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.25rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: 1.85rem 1.65rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px); border-color: var(--line);
  background: var(--surface-2);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(200,164,77,.06);
}
.card h3 { color: var(--text); margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.card__num {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  color: var(--gold); display: block; margin-bottom: .9rem;
}
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(200,164,77,.18), rgba(200,164,77,.04));
  border: 1px solid var(--line); color: var(--gold-bright);
}
.card__icon svg { width: 21px; height: 21px; }

/* Feature list with gold ticks */
.ticks li {
  position: relative; padding-left: 1.7rem; margin-bottom: .68rem;
  color: var(--text-mid); font-size: .955rem; line-height: 1.55;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .46em;
  width: 9px; height: 5px; border-left: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}
.ticks li:last-child { margin-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; align-items: start; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 2rem 1.75rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line-soft);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--line); box-shadow: 0 24px 50px -30px rgba(0,0,0,.85); }
.plan--featured {
  border-color: rgba(200,164,77,.42);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: 0 0 0 1px rgba(200,164,77,.1), 0 30px 60px -35px rgba(200,164,77,.28);
}
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: .3rem .85rem; border-radius: 99px; white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #0d1a12; font-family: var(--font-mono); font-size: .64rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.plan__name {
  font-family: var(--font-mono); font-size: .8rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}
.plan__for { font-size: .9rem; color: var(--muted); min-height: 2.7em; margin-bottom: 1.2rem; }
.plan__price {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--text); line-height: 1;
  display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap;
}
.plan__price small { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.plan__rule { height: 1px; background: var(--line); margin: 1.35rem 0; }
.plan__intro { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.plan .ticks { flex: 1; margin-bottom: 1.5rem; }
.plan__save {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em;
  color: var(--moss); margin-bottom: 1rem;
}

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: .93rem; }
thead th {
  padding: 1.15rem 1rem; text-align: center; vertical-align: bottom;
  background: rgba(200,164,77,.07); border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright);
}
thead th:first-child { text-align: left; }
thead th .price {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  letter-spacing: 0; text-transform: none; color: var(--text); margin-top: .35rem;
}
tbody th {
  padding: .85rem 1rem; text-align: left; font-weight: 500; color: var(--text-mid);
  border-bottom: 1px solid var(--line-soft); font-size: .93rem;
}
tbody td {
  padding: .85rem 1rem; text-align: center; color: var(--text);
  border-bottom: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft);
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
tbody tr:hover th, tbody tr:hover td { background: rgba(200,164,77,.035); }
td .yes { color: var(--gold); font-size: 1.1rem; }
td .no  { color: rgba(142,163,149,.45); }
.col-featured { background: rgba(200,164,77,.05); }
.table-note { font-size: .87rem; color: var(--muted); margin-top: 1rem; }

/* Simple price list table */
.table--list { min-width: 520px; }
.table--list td:last-child { text-align: right; font-family: var(--font-mono); color: var(--gold-bright); white-space: nowrap; }
.table--list tbody th { width: 60%; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; max-width: 860px; }
.step { position: relative; padding: 0 0 2.4rem 3.6rem; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: 17px; top: 34px; bottom: -4px; width: 1px;
  background: linear-gradient(180deg, var(--line), transparent);
}
.step:last-child::before { display: none; }
.step__num {
  position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(200,164,77,.2), rgba(200,164,77,.05));
  border: 1px solid var(--line); color: var(--gold-bright);
  font-family: var(--font-mono); font-size: .84rem; font-weight: 600;
}
.step h3 { margin-bottom: .4rem; padding-top: .18rem; }
.step p { margin-bottom: 0; }

/* ---------- Terms / small grid ---------- */
.terms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.term {
  padding: 1.35rem 1.25rem; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line-soft);
}
.term strong { display: block; color: var(--gold-bright); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .5rem; }
.term span { font-size: .93rem; color: var(--text-mid); }

/* ---------- Scripture band ---------- */
.scripture { text-align: center; padding: clamp(3rem, 6vw, 4.5rem) 0; border-block: 1px solid var(--line-soft); background: var(--bg-alt); }
.scripture blockquote {
  margin: 0 auto; max-width: 680px;
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  font-style: italic; line-height: 1.65; color: var(--text);
}
.scripture cite {
  display: block; margin-top: 1.1rem; font-family: var(--font-mono); font-style: normal;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}

/* ---------- CTA band ---------- */
.cta { position: relative; overflow: hidden; text-align: center; padding: clamp(4rem, 8vw, 6rem) 0; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 0%, rgba(200,164,77,.14), transparent 65%);
}
.cta > * { position: relative; }
.cta h2 { max-width: 26ch; margin-inline: auto; }
.cta p { max-width: 58ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.9rem; }
.cta__phone { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .1em; color: var(--muted); margin-top: 1.5rem; }
.cta__phone a { color: var(--gold-bright); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-card {
  padding: 2rem 1.85rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
}
.contact-line { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-of-type { border-bottom: none; }
.contact-line__label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); min-width: 92px; padding-top: .35rem; }
.contact-line__value { font-size: 1.05rem; color: var(--text); }
.contact-line__value a { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .01em; }
.contact-line__value small { display: block; font-size: .85rem; color: var(--muted); font-family: var(--font-body); }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .45rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border-radius: 9px;
  background: rgba(8,17,13,.65); border: 1px solid var(--line-soft);
  color: var(--text); font-family: var(--font-body); font-size: .96rem;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,77,.12);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 1rem; }
.hp { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line-soft); padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand img { width: 76px; margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; max-width: 32ch; }
.footer h4 {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer li { margin-bottom: .55rem; }
.footer li a { color: var(--text-mid); font-size: .93rem; }
.footer li a:hover { color: var(--gold-bright); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .07em; color: var(--muted);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .split-intro { grid-template-columns: 1fr; }
  .split-intro .section__head { margin-bottom: 0; }
  .values { grid-template-columns: 1fr; }
  .terminal { max-width: 560px; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 480px; }
  .plan--featured { order: -1; }
  .terms { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(8,17,13,.98); border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .75rem .6rem; font-size: 1rem; }
  .header .btn { margin: .6rem 0 0; width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cards--2, .cards--4 { grid-template-columns: 1fr; }
  .terms { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.25rem 2rem; }
  /* The eyebrow wraps to two lines here, leaving its leading rule stranded
     out at the left margin. */
  .hero__inner--center .eyebrow::before { display: none; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .nav, .cta, #hero-canvas { display: none; }
  body { background: #fff; color: #000; }
}
