/* =============================================================
   getHire(); — retro-terminal × editorial
   Dark, phosphor-green, amber accents, oversized serif + mono
   ============================================================= */

:root {
  /* palette */
  --bg:         #0b0d0c;
  --bg-2:       #101311;
  --bg-3:       #151815;
  --bg-alt:     #0f1a13;
  --ink:        #ecebe4;
  --ink-dim:    #b9b6a8;
  --ink-mute:   #7d7b70;
  --rule:       #252824;
  --rule-2:     #31342e;

  --phosphor:   #86ff7a;   /* primary accent — CRT green */
  --phosphor-2: #5de14a;
  --amber:      #ffc14d;   /* warm accent */
  --amber-2:    #ffa61f;
  --ember:      #ff7a59;

  /* legacy aliases (used by shared pages) */
  --color-primary:       var(--phosphor-2);
  --color-primary-light: var(--phosphor);
  --color-accent:        var(--amber);
  --color-accent-light:  var(--amber-2);
  --color-bg:            var(--bg);
  --color-bg-alt:        var(--bg-2);
  --color-bg-card:       var(--bg-3);
  --color-text:          var(--ink);
  --color-text-muted:    var(--ink-dim);
  --color-text-light:    var(--ink-mute);
  --color-border:        var(--rule);
  --color-border-light:  var(--rule-2);

  /* type */
  --font-body:    'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-brand:   var(--font-mono);

  /* space */
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --space-2xl: 7rem;

  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
  --glow: 0 0 0 1px rgba(134,255,122,.35), 0 10px 40px rgba(134,255,122,.08);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02", "liga", "calt";
  position: relative;
  overflow-x: hidden;
}

/* ambient grid + grain backdrop */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(134,255,122,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(134,255,122,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 40%, transparent 80%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main, header, footer, section { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: var(--phosphor); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber); }
ul, ol { list-style: none; }
em { font-style: italic; color: var(--amber); font-family: var(--font-display); }
strong { color: var(--ink); font-weight: 600; }

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section--manifesto { padding: var(--space-xl) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--phosphor);
  letter-spacing: .02em;
  text-transform: none;
  margin-bottom: var(--space-md);
  opacity: .85;
}

.section-head { margin-bottom: var(--space-xl); max-width: 720px; }
.section-head--alt { text-align: center; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 120, "SOFT" 20;
}
.section-title em { color: var(--phosphor); font-style: italic; }

/* ===== Header ===== */
.site-header {
  background: rgba(11,13,12,.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.brand {
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 2px;
}
.brand:hover { color: var(--phosphor); }
.brand-bracket { color: var(--phosphor); }
.brand-paren   { color: var(--amber); }

/* Nav */
.nav-list {
  display: flex; gap: 2px;
  font-family: var(--font-mono);
  font-size: .85rem;
}
.nav-list a {
  display: block;
  padding: .5rem .85rem;
  color: var(--ink-dim);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.nav-list a::before { content: "/ "; color: var(--ink-mute); }
.nav-list a:hover { color: var(--phosphor); background: rgba(134,255,122,.06); }
.nav-list a.active { color: var(--phosphor); }
.nav-list a.active::before { color: var(--phosphor); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--rule);
  cursor: pointer; padding: .4rem; color: var(--ink); border-radius: var(--radius);
}
.nav-toggle svg { display: block; }

/* ===== Hero ===== */
.hero {
  padding: clamp(4rem, 9vw, 8rem) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% 40% -10%;
  background:
    radial-gradient(ellipse 60% 40% at 18% 30%, rgba(134,255,122,.10), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(255,193,77,.08), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(var(--space-lg), 6vw, var(--space-2xl));
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--ink-dim);
  padding: .35rem .7rem;
  border: 1px solid var(--rule-2);
  border-radius: 100px;
  background: rgba(255,255,255,.02);
  margin-bottom: var(--space-md);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--phosphor);
  box-shadow: 0 0 10px var(--phosphor);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .4 } }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--space-md);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
}
.accent-word {
  color: var(--phosphor);
  font-style: italic;
  font-weight: 600;
}
.underline-stroke {
  background-image: linear-gradient(transparent 78%, rgba(255,193,77,.45) 78%, rgba(255,193,77,.45) 94%, transparent 94%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.caret {
  display: inline-block;
  width: .5em;
  background: var(--phosphor);
  margin-left: .08em;
  animation: blink 1.05s steps(1) infinite;
  vertical-align: -0.08em;
  height: .9em;
}
@keyframes blink { 50% { opacity: 0 } }

.lede {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 46ch;
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex; gap: var(--space-sm); flex-wrap: wrap;
}

/* terminal card */
.hero-terminal {
  background: linear-gradient(180deg, #0f1210 0%, #0a0c0a 100%);
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(134,255,122,.06),
    inset 0 1px 0 rgba(255,255,255,.03);
  overflow: hidden;
  transform: rotate(.6deg);
  position: relative;
}
.hero-terminal::after {
  /* scanlines */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.02) 0,
    rgba(255,255,255,.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  opacity: .6;
}
.term-chrome {
  display: flex; align-items: center; gap: .45rem;
  padding: .7rem .9rem;
  background: #14181500;
  border-bottom: 1px solid var(--rule-2);
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--ink-mute);
}
.term-dot {
  width: 11px; height: 11px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
}
.term-dot--r { background: #ff5f57; }
.term-dot--y { background: #febc2e; }
.term-dot--g { background: #28c840; }
.term-title { margin-left: auto; opacity: .7; }

.term-body {
  font-family: var(--font-mono);
  font-size: clamp(.78rem, .92vw, .92rem);
  line-height: 1.7;
  padding: 1.2rem 1.3rem 1.5rem;
  color: var(--ink-dim);
  white-space: pre-wrap;
  tab-size: 2;
}
.t-dim { color: var(--ink-mute); }
.t-cmd { color: var(--phosphor); font-weight: 600; }
.t-str { color: var(--amber); }
.t-num { color: var(--ember); }
.t-ok  { color: var(--phosphor); }
.t-val { color: var(--ink); font-weight: 600; }
.t-cur {
  display: inline-block;
  background: var(--phosphor);
  color: transparent;
  animation: blink 1.05s steps(1) infinite;
  width: .55em;
}

/* marquee */
.marquee {
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(134,255,122,.02) 0 8px, transparent 8px 16px);
}
.marquee-track {
  display: flex; gap: 2.2rem;
  width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--ink-dim);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee-track span { white-space: nowrap; }
.marquee-track span:nth-child(2n) { color: var(--phosphor); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ===== Page Header (inner pages) ===== */
.page-header {
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.025em;
  color: var(--ink);
}
.page-header p {
  color: var(--ink-dim);
  margin-top: var(--space-xs);
  font-size: 1.05rem;
}

/* ===== Manifesto ===== */
.manifesto { max-width: 880px; }
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.feature-card {
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--space-lg);
  position: relative;
  transition: background .3s ease;
}
.feature-card:hover {
  background: rgba(134,255,122,.03);
}
.feature-card:hover .feature-num {
  color: var(--phosphor);
  text-shadow: 0 0 24px rgba(134,255,122,.45);
}
.feature-num {
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--ink-mute);
  margin-bottom: var(--space-md);
  letter-spacing: .05em;
  transition: color .3s, text-shadow .3s;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.feature-card p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* ===== Guarantees ===== */
.guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.guarantee-item {
  padding: var(--space-lg);
  text-align: left;
  border-right: 1px solid var(--rule-2);
  background: rgba(255,255,255,.01);
  position: relative;
}
.guarantee-item:last-child { border-right: none; }
.guarantee-item:hover { background: rgba(134,255,122,.04); }
.guarantee-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--phosphor);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}
.guarantee-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: .3rem;
  letter-spacing: -0.01em;
}
.guarantee-item p {
  font-family: var(--font-body);
  font-size: .98rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: var(--space-2xl) 0;
  position: relative;
}
.cta-inner {
  text-align: center;
  max-width: 780px;
}
.cta-inner .section-tag {
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.cta-title em { color: var(--phosphor); font-style: italic; }
.cta-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin-bottom: var(--space-lg);
}
.cta-buttons {
  display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.35rem;
  font-family: var(--font-mono);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--phosphor);
  color: #0a0c0a;
  box-shadow: 0 0 0 1px rgba(134,255,122,.25), 0 10px 30px rgba(134,255,122,.18);
}
.btn--primary:hover {
  background: var(--ink);
  color: #0a0c0a;
  box-shadow: 0 0 0 1px rgba(255,255,255,.4), 0 10px 30px rgba(255,255,255,.08);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-2);
}
.btn--ghost:hover {
  color: var(--phosphor);
  border-color: var(--phosphor);
  background: rgba(134,255,122,.05);
}

.btn--outline { /* legacy */
  background: transparent; color: var(--ink); border: 1px solid var(--rule-2);
}
.btn--outline:hover { color: var(--phosphor); border-color: var(--phosphor); }

.btn--accent {
  background: var(--amber);
  color: #1a1305;
}
.btn--accent:hover { background: var(--amber-2); color: #1a1305; }

/* ===== Job Cards ===== */
.jobs-list {
  display: flex; flex-direction: column; gap: var(--space-md);
  max-width: 860px; margin: 0 auto;
}
.job-card {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color .25s, transform .25s;
}
.job-card:hover { border-color: var(--phosphor); transform: translateY(-2px); }
.job-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-sm); margin-bottom: .75rem; flex-wrap: wrap;
}
.job-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.job-meta {
  display: flex; gap: var(--space-sm); align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-dim);
  margin-bottom: .75rem;
}
.job-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.job-badge {
  display: inline-block; padding: .25rem .65rem;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  border-radius: 100px;
  background: rgba(134,255,122,.12); color: var(--phosphor);
  border: 1px solid rgba(134,255,122,.25);
  white-space: nowrap;
}
.job-card p {
  font-size: 1rem; color: var(--ink-dim); line-height: 1.6; margin-bottom: .85rem;
}
.job-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.job-tag {
  display: inline-block; padding: .2rem .6rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  background: rgba(255,193,77,.08);
  color: var(--amber);
  border: 1px solid rgba(255,193,77,.2);
  border-radius: 100px;
  font-weight: 500;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md); max-width: 680px; margin: 0 auto;
}
.contact-card {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--space-lg); text-align: center;
  transition: border-color .25s;
}
.contact-card:hover { border-color: var(--phosphor); }
.contact-card .icon {
  width: 52px; height: 52px; margin: 0 auto var(--space-sm);
  background: rgba(134,255,122,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--phosphor);
}
.contact-card h3 {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 500;
  color: var(--ink-mute); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .4rem;
}
.contact-card a, .contact-card p {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500; color: var(--ink);
}
.contact-card a:hover { color: var(--phosphor); }

/* ===== Resume Page ===== */
.resume-content { max-width: 680px; margin: 0 auto; text-align: center; }
.resume-content p {
  font-size: 1.1rem; color: var(--ink-dim); line-height: 1.7; margin-bottom: var(--space-md);
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
  background: var(--bg-2);
}
.site-footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-md);
}
.footer-brand {
  display: inline-flex; align-items: baseline; gap: .9rem;
  font-family: var(--font-brand); font-size: 1rem; font-weight: 600;
  color: var(--ink);
}
.footer-tag {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: .95rem; color: var(--ink-mute);
}
.footer-links {
  display: flex; gap: var(--space-md); align-items: center;
  font-family: var(--font-mono); font-size: .82rem;
}
.footer-links a { color: var(--ink-dim); }
.footer-links a:hover { color: var(--phosphor); }
.footer-copy { color: var(--ink-mute); }

/* ===== Entrance animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow      { animation: rise .7s .05s both ease-out; }
  .hero .display      { animation: rise .9s .15s both ease-out; }
  .hero .lede         { animation: rise .9s .28s both ease-out; }
  .hero .hero-cta     { animation: rise .9s .42s both ease-out; }
  .hero-terminal      { animation: riseTilt 1.1s .35s both ease-out; }
  .marquee            { animation: fade 1s .7s both ease-out; }
}
@keyframes rise     { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes riseTilt { from { opacity: 0; transform: translateY(24px) rotate(.6deg); } to { opacity: 1; transform: rotate(.6deg); } }
@keyframes fade     { from { opacity: 0 } to { opacity: 1 } }

/* ===== Mobile ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-terminal { transform: none; max-width: 560px; }
  .features-grid { grid-template-columns: 1fr; }
  .guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--rule);
    padding: var(--space-sm);
    box-shadow: var(--shadow-lg);
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: .75rem 1rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .job-card-header { flex-direction: column; }

  .site-footer .container { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; gap: .3rem; }
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .guarantee-item { border-right: none; border-bottom: 1px solid var(--rule-2); }
  .guarantee-item:last-child { border-bottom: none; }
  .feature-card { padding: var(--space-md); }
}
