/* ============================================================
   ALIGNED PROFIT — website redesign (mockup)
   Same brand vocabulary as the live site (black/white canvas,
   coral accent, Inter) with a serif display face added for
   headlines, real elevation, scroll motion, and tighter rhythm.
   ============================================================ */

:root {
  --canvas-dark: #000;
  --canvas-light: #fff;
  --surface-1: #0a0a0a;
  --surface-2: #161616;
  --surface-2-hover: #1d1d1d;

  --accent: #E85A52;
  --accent-lt: #FF8078;
  --accent-dk: #B8423C;

  --ink: #14161a;
  --ink-mute: #55585d;
  --stone: #86868b;

  --text-on-dark: #fff;
  --text-on-dark-2: rgba(255,255,255,.74);
  --text-on-dark-3: rgba(255,255,255,.52);

  --hairline-dark: rgba(255,255,255,.10);
  --hairline-light: #e8e8ec;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-card: 0 1px 0 rgba(255,255,255,.03) inset, 0 20px 48px rgba(0,0,0,.4);
  --shadow-card-light: 0 1px 2px rgba(20,22,26,.04), 0 24px 48px rgba(20,22,26,.06);
  --shadow-lift: 0 30px 70px rgba(0,0,0,.5);

  --serif: 'Fraunces', 'Iowan Old Style', ui-serif, Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--canvas-light);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 20px 0;
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  background: #000;
}
.nav.is-scrolled {
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  border-bottom-color: var(--hairline-dark);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { list-style: none; display: flex; align-items: center; gap: 2.25rem; margin: 0; padding: 0; }
.nav__links a {
  color: rgba(255,255,255,.72); text-decoration: none; font-size: .9rem; font-weight: 500;
  letter-spacing: -.005em; transition: color .2s ease;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__cta {
  background: #fff; color: #000 !important; padding: .6rem 1.35rem; border-radius: var(--radius-full);
  font-weight: 500; transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover { background: #f0f0f0; transform: translateY(-1px); }
.nav__hamburger { display: none; }
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__hamburger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer;
  }
  .nav__hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }
}
.nav__mobile-menu {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; top: var(--mobile-menu-top, 64px); z-index: 99;
  background: rgba(0,0,0,.97); backdrop-filter: blur(20px);
  flex-direction: column; padding: 24px 24px; gap: 4px; overflow-y: auto;
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-menu a {
  color: #fff; text-decoration: none; font-size: 1.15rem; font-weight: 500;
  padding: 14px 4px; border-bottom: 1px solid var(--hairline-dark);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--canvas-dark);
  padding: 112px 0 96px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 420px at var(--mx, 50%) var(--my, 10%), rgba(232,90,82,.14), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,.07), transparent 65%);
  transition: background .6s ease;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero__eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-on-dark-3); margin-bottom: 2rem; display: inline-flex; align-items: center; gap: .65rem;
}
.hero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px rgba(232,90,82,.7); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 6.4vw, 5.1rem);
  letter-spacing: -.02em; line-height: 1.06; margin: 0; max-width: 960px;
  color: #fff; /* fallback for plain (non-.silver/.coral) hero headlines on a dark canvas */
}
.hero h1 .line2 { display: block; }
.hero h1 .silver {
  background: linear-gradient(180deg, #fff 0%, #adadad 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .coral {
  background: linear-gradient(180deg, var(--accent-lt) 0%, var(--accent) 55%, var(--accent-dk) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic;
}
.hero__tag {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--text-on-dark-2); line-height: 1.65;
  max-width: 700px; margin: 2rem auto 0; letter-spacing: -.003em;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.75rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem; padding: 1rem 2rem; border-radius: var(--radius-full);
  font-weight: 500; font-size: .98rem; letter-spacing: -.005em; text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn::after { content: '→'; transition: transform .2s ease; }
.btn:hover::after { transform: translateX(3px); }
.btn--primary { background: #fff; color: #000 !important; }
.btn--primary:hover { background: #f2f2f2; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,.12); }
.btn--ghost-dark { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.24); }
.btn--ghost-dark:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--dark { background: #000; color: #fff !important; }
.btn--dark:hover { opacity: .85; transform: translateY(-2px); }

/* ── STATS ───────────────────────────────────────────────────── */
.stats { background: var(--canvas-dark); border-top: 1px solid var(--hairline-dark); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1000px; margin: 0 auto;
  padding: 56px 0;
}
.stat { text-align: center; padding: 0 1rem; border-right: 1px solid var(--hairline-dark); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 500; color: #fff;
  line-height: 1; letter-spacing: -.01em; margin-bottom: .6rem; font-variant-numeric: tabular-nums;
}
.stat__num .suffix { color: var(--accent); }
.stat__label {
  font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-on-dark-3); line-height: 1.4;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; padding: 40px 0; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid var(--hairline-dark); }
}

/* ── SECTION SHELL ───────────────────────────────────────────── */
.section { padding: 128px 0; }
.section--dark { background: var(--canvas-dark); color: #fff; }
.section--light { background: #fff; }
.section-head { max-width: 820px; margin-bottom: 0; }
.section-head.centered { margin: 0 auto; text-align: center; }
.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.section h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  letter-spacing: -.01em; line-height: 1.12; margin: 0 0 1.5rem; text-wrap: balance;
}
.section--dark h2 { color: #fff; }
.lead { font-size: 1.12rem; line-height: 1.68; max-width: 700px; letter-spacing: -.003em; }
.section--light .lead { color: var(--ink-mute); }
.section--dark .lead { color: var(--text-on-dark-2); }
.lead.centered { margin: 0 auto; }

/* ── PROBLEM ─────────────────────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: 1fr 64px 1fr; align-items: stretch;
  max-width: 1080px; margin: 56px auto 0;
}
.problem-arrow { display: flex; align-items: center; justify-content: center; color: #c8c8cc; }
.problem-arrow svg { width: 30px; height: 30px; }
@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-arrow { transform: rotate(90deg); padding: 4px 0; }
}
.card-flat {
  background: #fff; border: 1px solid var(--hairline-light); border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem; box-shadow: var(--shadow-card-light);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.card-flat--accent {
  background: linear-gradient(165deg, var(--accent) 0%, var(--accent-dk) 100%);
  border-color: transparent; color: #fff;
  box-shadow: 0 30px 64px rgba(232,90,82,.28);
}
.stamp {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.25rem; display: inline-flex; align-items: center; gap: .5rem;
}
.stamp::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .55; }
.card-flat--accent .stamp { color: rgba(255,255,255,.82); }
.card-title {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 500;
  letter-spacing: -.01em; line-height: 1.15; color: var(--ink); margin-bottom: 1rem; display: block;
}
.card-flat--accent .card-title { color: #fff; }
.card-lead { font-size: 1.08rem; font-weight: 500; line-height: 1.4; margin-bottom: .9rem; display: block; }
.card-desc { font-size: .97rem; color: #52565c; line-height: 1.65; letter-spacing: -.003em; }
.card-flat--accent .card-desc { color: rgba(255,255,255,.92); }
.problem-closer { text-align: center; margin-top: 56px; }
.problem-closer p {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--ink);
  max-width: 640px; margin: 0 auto; line-height: 1.4; letter-spacing: -.005em;
}

/* ── PILLARS ─────────────────────────────────────────────────── */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.card-dark {
  background: var(--surface-2); border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-card);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.card-dark:hover { background: var(--surface-2-hover); border-color: rgba(255,255,255,.2); transform: translateY(-4px); }
.card-eyebrow { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.card-dark h3, .step h3 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: #fff;
  letter-spacing: -.008em; margin: 0 0 .75rem; line-height: 1.28;
}
.card-dark p, .step p { font-size: .95rem; color: var(--text-on-dark-2); line-height: 1.65; letter-spacing: -.003em; margin: 0; }

/* ── STEP FLOW ───────────────────────────────────────────────── */
.stepflow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; position: relative; }
.stepflow::before {
  content: ''; position: absolute; top: 36px; left: 16%; right: 16%; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent); z-index: 0;
}
@media (max-width: 900px) { .stepflow { grid-template-columns: 1fr; gap: 40px; } .stepflow::before { display: none; } }
.step { padding: 0 16px; position: relative; z-index: 1; }
.step__badge {
  width: 72px; height: 72px; border-radius: 50%; background: var(--surface-2);
  border: 1.5px solid rgba(232,90,82,.4); color: var(--accent); font-family: var(--serif);
  font-weight: 500; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 0 0 6px #000;
}
.step__cat { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.step p a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(232,90,82,.35); }

/* ── CASE STUDIES ────────────────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #fff; border: 1px solid var(--hairline-light); border-radius: var(--radius-lg);
  padding: 2.25rem; display: flex; flex-direction: column; box-shadow: var(--shadow-card-light);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(20,22,26,.09); border-color: #d8d8dc; }
.case-card__tag { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.case-card__title { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; color: var(--ink); letter-spacing: -.008em; margin-bottom: .6rem; }
.case-card__val {
  font-family: var(--serif); font-size: 2.1rem; font-weight: 500;
  background: linear-gradient(180deg, var(--accent-lt) 0%, var(--accent) 55%, var(--accent-dk) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.01em; line-height: 1; margin-bottom: 1rem; font-variant-numeric: tabular-nums;
}
/* deal-path mark: sourced -> cultivated -> closed, a light data touch */
.deal-path { display: flex; align-items: center; gap: 6px; margin-bottom: 1.4rem; }
.deal-path__seg { flex: 1; height: 2px; background: var(--hairline-light); border-radius: 2px; }
.deal-path__seg.filled { background: var(--accent); opacity: .35; }
.deal-path__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline-light); flex-shrink: 0; }
.deal-path__dot.filled { background: var(--accent); box-shadow: 0 0 0 3px rgba(232,90,82,.15); }
.case-card__body { font-size: .93rem; color: #52565c; line-height: 1.65; flex: 1; letter-spacing: -.003em; }

/* ── GUARANTEE ───────────────────────────────────────────────── */
.guarantee { background: #000; padding: 64px 0; }
.guarantee__card {
  max-width: 1080px; margin: 0 auto; border-radius: var(--radius-lg); padding: 5rem 3.5rem; text-align: center;
  color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--accent) 0%, var(--accent-dk) 100%);
  box-shadow: 0 40px 90px rgba(232,90,82,.3);
}
.guarantee__label {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem; display: inline-flex; align-items: center; gap: .65rem;
}
.guarantee__label::before, .guarantee__label::after { content: ''; width: 24px; height: 1px; background: rgba(255,255,255,.4); }
.guarantee__card h2 {
  font-family: var(--serif); font-size: clamp(2.3rem, 4.6vw, 3.4rem); font-weight: 500; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.12;
}
.guarantee__card h2 em { color: rgba(255,255,255,.7); font-style: italic; }
.guarantee__card p { max-width: 700px; margin: 0 auto 2.5rem; font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,.92); letter-spacing: -.003em; }
.guarantee__cta {
  display: inline-flex; align-items: center; gap: .5rem; padding: 1rem 2.25rem; border-radius: var(--radius-full);
  background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.4); color: #fff !important;
  font-weight: 500; text-decoration: none; transition: background .2s ease, transform .2s ease;
}
.guarantee__cta:hover { background: rgba(0,0,0,.35); transform: translateY(-2px); }
.guarantee__cta::after { content: '→'; transition: transform .2s ease; }
.guarantee__cta:hover::after { transform: translateX(3px); }
@media (max-width: 700px) { .guarantee__card { padding: 3rem 1.75rem; } }

/* ── TIERS ───────────────────────────────────────────────────── */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
@media (max-width: 960px) { .tiers-grid { grid-template-columns: 1fr; } }
.tier {
  background: #fff; border: 1px solid var(--hairline-light); border-radius: var(--radius-lg);
  padding: 2.25rem 2rem; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-card-light);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 30px 64px rgba(20,22,26,.1); border-color: #d8d8dc; }
.tier--featured { background: linear-gradient(180deg, #1a1a1c, #000); border-color: #1a1a1c; color: #fff; }
.tier--featured .card-desc, .tier--featured .tier__includes > div, .tier--featured h3 { color: #fff; }
.tier__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.tier__eyebrow { font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.tier__name { font-family: var(--serif); font-size: 2.1rem; font-weight: 500; letter-spacing: -.01em; line-height: 1.05; margin-bottom: .35rem; }
.tier__name--silver { background: linear-gradient(180deg, #1d1d1f 0%, #6e6e73 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier__name--coral { background: linear-gradient(180deg, var(--accent-lt) 0%, var(--accent) 60%, var(--accent-dk) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier__name--gold { background: linear-gradient(180deg, #f4d770 0%, #C9A227 60%, #8c6f1b 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tier__suffix { font-size: .8rem; font-weight: 500; letter-spacing: .03em; color: var(--stone); display: block; margin-bottom: 1.25rem; }
.tier--featured .tier__suffix { color: rgba(255,255,255,.5); }
.tier__pitch { font-size: .95rem; color: #52565c; line-height: 1.62; margin-bottom: 1.5rem; letter-spacing: -.003em; flex: 1; }
.tier__includes { margin-top: 0; padding-top: 1.25rem; border-top: 1px solid #f0f0f3; font-size: .84rem; color: #52565c; }
.tier--featured .tier__includes { border-top-color: rgba(255,255,255,.1); }
.tier__includes strong { color: var(--ink); display: block; margin-bottom: .35rem; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.tier--featured .tier__includes strong { color: rgba(255,255,255,.7); }
.tier__includes > div { margin-bottom: 1rem; }
.tier__includes > div:last-child { margin-bottom: 0; }

.cta-row { display: flex; justify-content: center; margin-top: 56px; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-band { background: #000; padding: 140px 0; border-top: 1px solid var(--hairline-dark); }
.form-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.form-wrap .eyebrow { display: inline-flex; }
.form-wrap h2 { color: #fff; }
.form-wrap .lead { color: var(--text-on-dark-2); margin: 0 auto 3rem; }
.form-embed {
  background: var(--surface-2); border: 1px solid var(--hairline-dark); border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; text-align: left; box-shadow: var(--shadow-lift);
}
@media (max-width: 600px) { .form-embed { padding: 2rem 1.5rem; } }
.field { margin-bottom: 1.25rem; }
.field--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field--inline { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 600; color: #fff; margin-bottom: .5rem; letter-spacing: -.005em; }
.field label .req { color: var(--accent); font-weight: 700; margin-left: 2px; }
.field label .opt { color: var(--text-on-dark-3); font-weight: 400; font-size: .72rem; margin-left: 6px; }
.input, .select, .textarea {
  width: 100%; padding: .9rem 1rem; font-family: var(--sans); font-size: .94rem;
  background: rgba(255,255,255,.04); color: #fff; border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--text-on-dark-3); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(232,90,82,.18);
}
.textarea { min-height: 96px; resize: vertical; line-height: 1.55; }
.select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.submit {
  width: 100%; padding: 1.1rem 1.5rem; font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: -.005em;
  background: #fff; color: #000; border: 0; border-radius: var(--radius-full); cursor: pointer;
  transition: background .2s ease, transform .2s ease; min-height: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.submit:hover { background: #f2f2f2; transform: translateY(-2px); }
.submit::after { content: '→'; transition: transform .2s ease; }
.submit:hover::after { transform: translateX(3px); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-secondary { margin-top: 1.5rem; text-align: center; font-size: .82rem; color: var(--text-on-dark-3); line-height: 1.6; letter-spacing: -.003em; }
.form-secondary a { color: var(--text-on-dark-2); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #000; color: rgba(255,255,255,.6); padding: 72px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--hairline-dark); }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__desc { font-size: .88rem; line-height: 1.65; color: var(--text-on-dark-3); max-width: 340px; }
.footer__col-title { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer__links a { color: var(--text-on-dark-3); text-decoration: none; font-size: .88rem; transition: color .2s ease; }
.footer__links a:hover { color: #fff; }
.footer__bottom { padding-top: 32px; font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer__bottom p { margin: 0 0 .6rem; }

/* preview banner (this mockup only) */
.preview-banner {
  background: var(--accent); color: #fff; text-align: center; font-size: .82rem; font-weight: 500;
  padding: 10px 16px; letter-spacing: -.003em;
}
.preview-banner a { color: #fff; text-decoration: underline; }
