/* GarageFloorGrowth — industrial-precision design system.
   Single distinctive typeface, navy + electric-blue, generous space. */

:root {
  /* Palette */
  --bg: #ffffff;
  --bg-soft: #f5f4ee;          /* warm cream — slight industrial concrete feel */
  --bg-dark: #0a1428;          /* navy — for high-contrast moments */
  --fg: #0a1428;
  --fg-soft: #4f5763;
  --fg-on-dark: #ffffff;
  --fg-on-dark-soft: #b9c0cc;
  --line: #e2e3e5;
  --line-on-dark: rgba(255, 255, 255, 0.10);
  --accent: #1e6bff;
  --accent-hover: #1958d8;

  /* Process layer colors (coating metaphor) */
  --layer-prep:  #6b7280;        /* concrete substrate gray */
  --layer-base:  #1e3a8a;        /* deep navy blue base */
  --layer-flake: #2563eb;        /* electric blue, the decorative coat */
  --layer-top:   #93c5fd;        /* pale clear, the topcoat */

  /* Typography */
  --ff: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --ff-mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;

  /* Layout */
  --maxw: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad-y: clamp(4.5rem, 9vw, 7rem);
  --radius: 4px;
}

* { box-sizing: border-box; }

html {
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "liga";
  scroll-behavior: smooth;
}

body { margin: 0; }

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

/* Wrap */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ============================================================
   TOP BAR
   ============================================================ */

.head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.head__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.head__brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--fg);
  font-weight: 600; font-size: 1rem; letter-spacing: -0.012em;
}

.head__brand-mark {
  display: inline-flex; flex-direction: column; gap: 2px;
  width: 22px; height: 22px;
  justify-content: center;
}

.head__brand-bar {
  display: block;
  height: 2px; width: 100%;
  background: var(--fg);
  border-radius: 1px;
}
.head__brand-bar--1 { width: 70%; opacity: 0.6; }
.head__brand-bar--2 { width: 100%; background: var(--accent); }
.head__brand-bar--3 { width: 40%; opacity: 0.85; }

.head__nav {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.94rem;
}

.head__nav a {
  color: var(--fg); text-decoration: none;
  padding: 0.5rem 0;
}

.head__nav a:hover { color: var(--accent); }

.head__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  padding: 0.5rem 0.85rem !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.head__phone-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

@media (max-width: 720px) {
  .head__nav { gap: 0.85rem; font-size: 0.88rem; }
  .head__phone { display: none; }
}

/* ============================================================
   ATOMS
   ============================================================ */

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow--on-dark { color: #93c5fd; }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.eyebrow__dot--alt { background: var(--fg); }

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font: inherit; font-weight: 500; font-size: 0.97rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 120ms, color 120ms, border-color 120ms, transform 120ms;
  min-height: 48px;
}

.btn--primary {
  background: var(--accent); color: #fff;
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--primary:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--fg); }

.btn--full { width: 100%; }

.section--dark .btn--ghost { color: var(--fg-on-dark); border-color: var(--line-on-dark); }
.section--dark .btn--ghost:hover { border-color: var(--fg-on-dark); }

.muted { color: var(--fg-soft); font-size: 0.95rem; }

.link {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms;
}
.link:hover { border-color: currentColor; }
.link--on-dark { color: #93c5fd; }

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: var(--section-pad-y) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: var(--fg-on-dark); }
.section--cta { background: var(--bg-dark); color: var(--fg-on-dark); }

.band { max-width: 60ch; margin: 0 0 3rem; }
.band__h { font-size: clamp(1.85rem, 4vw, 2.6rem); margin: 0 0 0.8rem; }
.band__h--on-dark { color: var(--fg-on-dark); }
.band__sub { color: var(--fg-soft); font-size: 1.02rem; margin: 0; }
.band__sub--on-dark { color: var(--fg-on-dark-soft); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.hero__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
}

.hero__h {
  font-size: clamp(2.4rem, 6.2vw, 4.5rem);
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 1.4rem;
  max-width: 18ch;
}

.hero__h-em {
  display: inline-block;
  color: var(--fg-soft);
  font-weight: 500;
}

.hero__sub {
  font-size: 1.12rem; color: var(--fg-soft);
  margin: 0 0 2.2rem;
  max-width: 45ch;
  line-height: 1.55;
}

.hero__cta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero__chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
}

.hero__chips li {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-soft);
  background: var(--bg);
}

.hero__spec {
  border-left: 2px solid var(--fg);
  padding: 0.2rem 0 0.2rem 1.5rem;
  align-self: end;
}

.spec { margin: 0; }

.spec__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--ff-mono);
  font-size: 0.84rem;
}

.spec__row:last-child { border-bottom: 0; }

.spec dt {
  color: var(--fg-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec dd {
  margin: 0;
  color: var(--fg);
  text-align: right;
  font-weight: 500;
}

/* ============================================================
   PROBLEMS
   ============================================================ */

.problems {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.problems > li {
  padding: 1.6rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.problems__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem; color: var(--fg-soft);
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
}

.problems h3 {
  font-size: 1.12rem; margin: 0 0 0.45rem;
}

.problems p {
  margin: 0; color: var(--fg-soft); font-size: 0.96rem;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.svc {
  padding: 1.8rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
}

.svc:hover {
  transform: translateY(-2px);
  border-color: var(--fg);
  box-shadow: 0 12px 30px -18px rgba(10, 20, 40, 0.18);
}

.svc__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.svc h3 {
  font-size: 1.18rem;
  margin: 0 0 0.55rem;
}

.svc p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 0.96rem;
}

/* ============================================================
   COATING LAYERS (process)
   ============================================================ */

.layers {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 1.25rem;
}

.layer {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.layer__band {
  align-self: stretch;
  width: 8px;
  margin-left: 1.5rem;
  border-radius: 2px;
}

.layer__band--prep  { background: var(--layer-prep);  }
.layer__band--base  { background: var(--layer-base);  }
.layer__band--flake { background: var(--layer-flake); }
.layer__band--top   { background: var(--layer-top);   }

.layer__copy { padding: 0; }

.layer__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--fg-on-dark-soft);
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.layer h3 {
  color: var(--fg-on-dark);
  font-size: 1.4rem;
  margin: 0 0 0.45rem;
}

.layer p {
  margin: 0;
  color: var(--fg-on-dark-soft);
  max-width: 70ch;
}

.layers__more {
  margin-top: 2.2rem;
  font-family: var(--ff-mono);
  font-size: 0.86rem;
}

/* ============================================================
   TIMELINE (60-90 day)
   ============================================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 0 0 1rem;
}

.ts {
  padding: 1.8rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.ts::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

.ts__when {
  font-family: var(--ff-mono);
  font-size: 0.86rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.85rem;
}

.ts h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.ts p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 0.96rem;
}

.timeline__caveat {
  margin-top: 1.5rem;
  font-style: italic;
}

/* ============================================================
   CTA + FORM
   ============================================================ */

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .cta__grid { grid-template-columns: 1fr; }
}

.cta__h {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--fg-on-dark);
  margin: 0 0 1rem;
  max-width: 22ch;
}

.cta__sub {
  color: var(--fg-on-dark-soft);
  margin: 0 0 2rem;
  max-width: 40ch;
  font-size: 1.02rem;
}

.cta__alt {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  gap: 0.65rem;
  font-family: var(--ff-mono);
  font-size: 0.86rem;
}

.cta__alt li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line-on-dark);
}

.cta__alt-key {
  color: var(--fg-on-dark-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta__alt a { color: var(--fg-on-dark); text-decoration: none; }
.cta__alt a:hover { text-decoration: underline; text-underline-offset: 4px; }

.form {
  background: var(--bg);
  color: var(--fg);
  padding: 2rem;
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field__label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  text-transform: uppercase;
}

.form input,
.form textarea {
  font: inherit;
  color: var(--fg);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  min-height: 48px;
  width: 100%;
}

.form textarea { min-height: 110px; resize: vertical; }

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form button { margin-top: 0.4rem; }

.form__note {
  font-size: 0.82rem;
  color: var(--fg-soft);
  margin: 0;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  padding: 4rem 0 1.5rem;
}

.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot__col--brand { grid-column: 1 / -1; }
}

.foot__brand {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.foot__tag {
  margin: 0;
  color: var(--fg-on-dark-soft);
  font-size: 0.92rem;
  max-width: 38ch;
}

.foot__heading {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-on-dark-soft);
  margin: 0 0 0.85rem;
}

.foot__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.5rem;
  font-size: 0.94rem;
}

.foot__list a {
  color: var(--fg-on-dark);
  text-decoration: none;
}
.foot__list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.foot__addr { color: var(--fg-on-dark-soft); }

.foot__bottom {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding: 1.25rem var(--pad-x) 0;
  border-top: 1px solid var(--line-on-dark);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--fg-on-dark-soft);
}

.foot__bottom p { margin: 0; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SECONDARY PAGE COMPATIBILITY (process / about / thank-you)
   ============================================================ */

/* Narrower hero variant for non-home pages */
.hero--narrow {
  padding: clamp(3rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}
.hero--narrow .hero__h, .hero--narrow h1 {
  max-width: 32ch;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* Hero on secondary pages may not use the grid */
.hero--narrow .wrap { padding: 0 var(--pad-x); }

/* Checklist used in process.html, about.html */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  max-width: 70ch;
}

.checklist > li {
  position: relative;
  padding-left: 1.6rem;
  margin: 0.55rem 0;
  color: var(--fg);
}

.checklist > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.checklist strong { color: var(--fg); font-weight: 600; }

/* Body content on secondary pages */
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.5rem 0 1rem;
}

.section h2:first-child { margin-top: 0; }

.section p {
  max-width: 70ch;
}

.lede {
  font-size: 1.08rem;
  color: var(--fg-soft);
  max-width: 65ch;
  margin: 0 0 1.5rem;
}

/* CTA spacer line at bottom of pages */
.cta-line {
  margin-top: 2.5rem;
}

/* btn--secondary is an alias for btn--ghost (older templates use it) */
.btn--secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn--secondary:hover { border-color: var(--fg); }

/* ============================================================
   CALENDAR EMBED
   ============================================================ */

.calendar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  min-height: 700px;
}

.calendar iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}

/* ============================================================
   STANCE — the five anti-Scorpion positioning moves
   ============================================================ */

.stance {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: stance;
}

.stance__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.6rem 1.6rem 1.6rem 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: border-color 200ms, box-shadow 200ms;
}

.stance__item:hover {
  border-color: var(--fg);
  box-shadow: 0 12px 30px -18px rgba(10, 20, 40, 0.18);
}

.stance__num {
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
  padding: 0.4rem 0 0 1.6rem;
  letter-spacing: 0.02em;
  border-right: 1px solid var(--line);
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}

.stance__item h3 {
  font-size: 1.18rem;
  margin: 0.4rem 0 0.5rem;
  letter-spacing: -0.018em;
}

.stance__item p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 0.97rem;
  max-width: 65ch;
}

@media (max-width: 640px) {
  .stance__item { grid-template-columns: 48px 1fr; gap: 1rem; padding-right: 1.1rem; }
  .stance__num { padding-left: 1.1rem; font-size: 0.95rem; }
}

/* ============================================================
   FOUNDER section
   ============================================================ */

.founder {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; }
}

.founder__photo-wrap {
  position: sticky;
  top: 100px;
}

@media (max-width: 880px) {
  .founder__photo-wrap { position: static; max-width: 280px; }
}

.founder__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border-left: 2px solid var(--accent);
  display: block;
}

.founder__caption {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1rem 0 0.2rem;
  letter-spacing: -0.012em;
}

.founder__role {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-soft);
  margin: 0;
}

.founder__h {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
  letter-spacing: -0.022em;
  max-width: 22ch;
}

.founder__lede {
  font-size: 1.12rem;
  color: var(--fg);
  margin: 0 0 1.5rem;
  max-width: 50ch;
  line-height: 1.5;
}

.founder__text p {
  margin: 0 0 1rem;
  color: var(--fg-soft);
  max-width: 65ch;
  line-height: 1.6;
}

.founder__sig {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  font-family: var(--ff-mono);
  font-size: 0.86rem;
}

.founder__sig li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem;
  color: var(--fg-soft);
}

.founder__sig-key {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
  font-weight: 500;
}

/* ============================================================
   LEAD MAGNET helper (gfg-lead-magnet partial styling)
   ============================================================ */

.gfg-lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}

.gfg-lead-magnet::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

@media (max-width: 760px) {
  .gfg-lead-magnet { grid-template-columns: 1fr; gap: 1.5rem; }
}

.gfg-lead-magnet__label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 0 0.8rem;
}

.gfg-lead-magnet__h {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.018em;
  margin: 0 0 0.8rem;
  max-width: 22ch;
}

.gfg-lead-magnet__sub {
  margin: 0;
  color: var(--fg-soft);
  font-size: 0.97rem;
  max-width: 50ch;
  line-height: 1.55;
}

.gfg-lead-magnet__form {
  display: grid;
  gap: 0.85rem;
}

.gfg-lead-magnet__field {
  display: grid;
  gap: 0.4rem;
}

.gfg-lead-magnet__field-label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  text-transform: uppercase;
}

.gfg-lead-magnet__form input[type="email"] {
  font: inherit;
  color: var(--fg);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  min-height: 48px;
  width: 100%;
}

.gfg-lead-magnet__form input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.gfg-lead-magnet__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  min-height: 48px;
  transition: background 120ms;
}

.gfg-lead-magnet__submit:hover {
  background: var(--accent-hover);
}

