/* ============================================================
   PICAPAC · Kakumäe käivitusprogramm — landing page
   Light & airy · confident Omniva orange · premium consumer tech
   Type: Manrope (TT Wellingtons proxy) + JetBrains Mono (micro-labels)
   ============================================================ */

:root {
  /* Brand */
  --orange:      #FF6600;
  --orange-deep: #E25200;
  --orange-soft: #FFEFE3;
  --orange-tint: rgba(255, 102, 0, 0.08);
  --yellow:      #FFBC01;
  --purple:      #E3C6E4;

  /* Ink + paper (warm neutrals) */
  --ink:    #14110F;
  --ink-2:  #4C443E;
  --ink-3:  #8C837B;
  --ink-4:  #B6ACA2;
  --paper:  #FFFFFF;
  --bone:   #F6F3EE;
  --bone-2: #EFE9E0;
  --black:  #0B0A09;

  --line:   rgba(20, 17, 15, 0.10);
  --line-2: rgba(20, 17, 15, 0.06);

  --sans: "Manrope", -apple-system, "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-lg: 32px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(80px, 12vw, 160px); }

/* ---------- Type ---------- */
.display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
  margin: 0;
}
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 450;
  margin: 0;
  text-wrap: pretty;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--orange);
  display: inline-block;
}
.kicker.muted { color: var(--ink-3); }
.kicker.muted::before { background: var(--ink-4); }
.lower { text-transform: lowercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 16px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 2px rgba(226,82,0,0.4), 0 12px 30px -10px rgba(255,102,0,0.55);
}
.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(226,82,0,0.4), 0 20px 40px -12px rgba(255,102,0,0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--lg { padding: 19px 34px; font-size: 1.08rem; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line-2);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--orange);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.brand__mark svg { width: 15px; height: 15px; }
.brand__word { font-size: 1.32rem; letter-spacing: -0.04em; font-weight: 750; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.96rem;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .25s;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__cta { padding: 12px 22px; font-size: 0.95rem; }
/* The CTA living inside the links row is mobile-menu only */
.nav__menu .nav__cta { display: none; }
.nav__cta--desktop { display: inline-flex; }

/* Language switcher */
.langsw {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
}
.langsw button {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--ink-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 11px;
  border-radius: 100px;
  transition: color .25s, background .25s;
  line-height: 1;
}
.langsw button:hover { color: var(--ink); }
.langsw button.active { background: var(--ink); color: #fff; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav__burger span { width: 18px; height: 1.8px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 140px;
  padding-bottom: clamp(60px, 9vw, 120px);
  background:
    radial-gradient(120% 90% at 85% 0%, var(--orange-tint), transparent 55%),
    linear-gradient(180deg, #FFFDFB 0%, var(--paper) 60%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__grid > * { min-width: 0; }
.hero__copy { max-width: 620px; }
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--orange); }
.hero__sub { margin-top: 26px; max-width: 480px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__note {
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
  max-width: 440px;
  line-height: 1.4;
}
.hero__note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(255,102,0,0.5); animation: pulse 2.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,102,0,0.5); }
  70% { box-shadow: 0 0 0 9px rgba(255,102,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,102,0,0); }
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -40px rgba(20,17,15,0.45);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 22px; top: 22px;
  background: rgba(11,10,9,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Floating perks card */
.perks {
  position: absolute;
  right: var(--perks-x, 24px); bottom: var(--perks-y, -48px);
  width: min(330px, 78%);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -24px rgba(20,17,15,0.4);
}
.perks__head {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 500;
}
.perks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.perks li { display: flex; align-items: center; gap: 12px; font-weight: 550; font-size: 1rem; letter-spacing: -0.01em; }
.perks .check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: grid; place-items: center;
}
.perks .check svg { width: 11px; height: 11px; }

/* logos / trust strip */
.hero__trust {
  margin-top: clamp(56px, 7vw, 96px);
  display: flex; align-items: center; gap: 18px;
  color: var(--ink-3);
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.hero__trust .by {
  font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.66rem;
}
.hero__trust .omniva { font-weight: 800; color: var(--orange); letter-spacing: -0.02em; font-size: 1.05rem; }

/* ============================================================
   THE SHIFT (today vs picapac)
   ============================================================ */
.shift { background: var(--bone); }
.shift__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.shift__head .h2 { margin-top: 20px; }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.card-cmp {
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 42px);
  display: flex; flex-direction: column;
}
.card-cmp__label {
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 22px;
}
.card-cmp__title { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 680; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 26px; }
.card-cmp ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.card-cmp li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.04rem; line-height: 1.4; }
.card-cmp li .ic { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; }

.card-cmp.today { background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.card-cmp.today .card-cmp__label { color: var(--ink-3); }
.card-cmp.today .card-cmp__title { color: var(--ink); }
.card-cmp.today li .ic circle { stroke: var(--ink-4); }
.card-cmp.today li .ic line { stroke: var(--ink-4); }

.card-cmp.pica {
  background: linear-gradient(165deg, #1A1512, var(--black));
  color: rgba(255,255,255,0.82);
  position: relative; overflow: hidden;
}
.card-cmp.pica::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(255,102,0,0.22), transparent 60%);
  pointer-events: none;
}
.card-cmp.pica .card-cmp__label { color: var(--orange); }
.card-cmp.pica .card-cmp__title { color: #fff; }
.card-cmp.pica li { position: relative; z-index: 1; }
.card-cmp.pica li .ic circle { fill: var(--orange); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(44px, 6vw, 76px); }
.how__head .h2 { margin-top: 18px; max-width: 13ch; }
.how__head .lead { max-width: 380px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  position: relative;
}
.step__num {
  font-family: var(--mono);
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--orange); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: clamp(60px, 9vw, 110px);
}
.step__num .pill {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--orange); color: var(--orange);
  font-weight: 600;
}
.step h3 { margin-bottom: 12px; }
.step p { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.5; }

/* ============================================================
   WHY KAKUMÄE (rollout map)
   ============================================================ */
.kaku { background: var(--bone); overflow: hidden; }
.kaku__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.kaku__copy { max-width: 480px; }
.kaku__copy .h2 { margin-top: 20px; }
.kaku__copy .lead { margin-top: 22px; }
.kaku__points { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 20px; }
.kaku__points li { display: flex; gap: 16px; align-items: flex-start; }
.kaku__points .n {
  font-family: var(--mono); font-size: 0.7rem; color: var(--orange); font-weight: 500;
  flex: 0 0 auto; padding-top: 3px;
}
.kaku__points strong { display: block; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 3px; font-size: 1.06rem; }
.kaku__points span.t { color: var(--ink-2); font-size: 0.98rem; line-height: 1.45; }

.map {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(165deg, #1A1512, var(--black));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20,17,15,0.5);
  padding: 30px;
}
.map__grid { position: absolute; inset: 0; display: grid; }
.map__dot {
  width: 7px; height: 7px; border-radius: 50%;
  justify-self: center; align-self: center;
  background: rgba(255,255,255,0.10);
  transition: transform .6s var(--ease), background .6s var(--ease);
}
.map__dot.on { background: var(--orange); box-shadow: 0 0 12px rgba(255,102,0,0.7); }
.map__dot.core { background: #fff; }
.map__label {
  position: absolute; z-index: 3;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,102,0,0.16);
  border: 1px solid rgba(255,102,0,0.5);
  padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.map__ring {
  position: absolute; z-index: 2;
  border: 1px solid rgba(255,102,0,0.45);
  border-radius: 50%;
  animation: ring 3.4s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(0.6); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.map__cap {
  position: absolute; left: 26px; bottom: 24px; z-index: 3;
  color: rgba(255,255,255,0.55); font-size: 0.8rem; max-width: 60%;
}
.map__cap b { color: #fff; font-weight: 600; }

/* ============================================================
   CAPABILITIES + PLATFORM
   ============================================================ */
.cap__head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 76px); }
.cap__head .h2 { margin-top: 20px; }
.cap__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 34px);
  background: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(20,17,15,0.35); border-color: transparent; }
.feature__ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; margin-bottom: 22px;
}
.feature__ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feature p { margin: 0; color: var(--ink-2); font-size: 0.98rem; line-height: 1.5; }

/* Platform block */
.platform {
  margin-top: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #1A1512, var(--black));
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
}
.platform__inner { padding: clamp(34px, 4.4vw, 64px); position: relative; z-index: 1; }
.platform .kicker { color: var(--yellow); }
.platform .kicker::before { background: var(--yellow); }
.platform h2 { margin: 18px 0 0; color: #fff; }
.platform .lead { color: rgba(255,255,255,0.7); margin-top: 18px; max-width: 420px; }
.eco { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.eco span {
  font-size: 0.92rem; font-weight: 550; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; white-space: nowrap;
  padding: 10px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
  transition: .3s var(--ease);
}
.eco span.live { background: var(--orange); border-color: var(--orange); color: #fff; }
.eco span.soon { color: rgba(255,255,255,0.55); }
.platform__photo { position: relative; min-height: 320px; }
.platform__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.platform__photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--black) 0%, transparent 38%);
}
.platform__photo .badge {
  position: absolute; z-index: 2; right: 22px; bottom: 22px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(11,10,9,0.6); border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 12px; border-radius: 100px; color: #fff; backdrop-filter: blur(6px);
}

/* ============================================================
   STAT BAND (social proof, dark)
   ============================================================ */
.stats { background: var(--black); color: #fff; }
.stats__inner { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 30px; align-items: end; }
.stats__lead { max-width: 280px; }
.stats__lead .kicker { color: var(--orange); }
.stats__lead p { color: rgba(255,255,255,0.62); margin: 16px 0 0; font-size: 1rem; line-height: 1.45; }
.stat .num {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .num .u { color: var(--orange); }
.stat .lab { margin-top: 12px; color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.35; }
.stats__note { margin-top: 40px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.32); text-transform: uppercase; }

/* ============================================================
   APPLICATION FORM
   ============================================================ */
.apply { background: var(--bone); scroll-margin-top: 90px; }
.apply__card {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 100px -50px rgba(20,17,15,0.5);
  background: #fff;
}
.apply__aside {
  background: var(--orange);
  color: #fff;
  padding: clamp(36px, 4vw, 58px);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.apply__aside::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
}
.apply__aside .kicker { color: rgba(255,255,255,0.85); }
.apply__aside .kicker::before { background: rgba(255,255,255,0.85); }
.apply__aside h2 { color: #fff; margin: 18px 0 0; position: relative; z-index: 1; }
.apply__aside p { color: rgba(255,255,255,0.88); margin: 18px 0 0; position: relative; z-index: 1; }
.apply__perks { list-style: none; margin: auto 0 0; padding: 28px 0 0; display: grid; gap: 13px; position: relative; z-index: 1; }
.apply__perks li { display: flex; align-items: center; gap: 12px; font-weight: 550; }
.apply__perks .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.22); display: grid; place-items: center; flex: 0 0 auto; }
.apply__perks .check svg { width: 11px; height: 11px; }

.apply__form { padding: clamp(34px, 4vw, 56px); }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 9px; font-weight: 500;
}
.field input {
  width: 100%; font-family: var(--sans); font-size: 1.04rem; color: var(--ink);
  padding: 15px 17px; border: 1px solid var(--line); border-radius: 13px;
  background: #fff; transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder { color: var(--ink-4); }
.field input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-tint); }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field.row .sub { margin: 0; }
.apply__form .btn { width: 100%; margin-top: 8px; }
.apply__fine { margin-top: 16px; font-size: 0.82rem; color: var(--ink-3); line-height: 1.4; text-align: center; }
.apply__fine a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — visually hidden, off-screen, not display:none (so bots fill it) */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Inline form error */
.form-error {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: #C0341B;
  text-align: center;
  font-weight: 500;
}
.btn[aria-busy="true"] { opacity: 0.65; pointer-events: none; }

.apply__success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(40px, 5vw, 70px) 30px;
  min-height: 100%;
}
.apply__success.show { display: flex; animation: fade .6s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.apply__success .tick {
  width: 64px; height: 64px; border-radius: 50%; background: var(--orange-soft); color: var(--orange);
  display: grid; place-items: center; margin-bottom: 24px;
}
.apply__success .tick svg { width: 30px; height: 30px; }
.apply__success h3 { font-size: 1.6rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.apply__success p { color: var(--ink-2); max-width: 380px; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { scroll-margin-top: 90px; }
.faq__grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq__head .h2 { margin-top: 18px; }
.faq__head .lead { margin-top: 20px; max-width: 320px; }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left;
  font-family: var(--sans); font-size: clamp(1.08rem, 1.6vw, 1.28rem); font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
.qa__ic { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.qa__ic::before, .qa__ic::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .35s var(--ease);
}
.qa__ic::before { width: 15px; height: 2px; transform: translate(-50%,-50%); }
.qa__ic::after { width: 2px; height: 15px; transform: translate(-50%,-50%); }
.qa.open .qa__ic::after { transform: translate(-50%,-50%) scaleY(0); }
.qa__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.qa__a-inner { padding: 0 50px 28px 4px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.55; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  background: linear-gradient(165deg, #1C1612, var(--black));
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 70% at 50% 120%, rgba(255,102,0,0.30), transparent 60%);
}
.final__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.final .h2 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.final p { color: rgba(255,255,255,0.7); margin: 26px auto 0; max-width: 520px; font-size: 1.15rem; line-height: 1.5; }
.final .btn { margin-top: 40px; }
.final__sub { margin-top: 22px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.55); padding-block: clamp(50px, 7vw, 80px) 40px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand__word { color: #fff; }
.footer__tag { max-width: 280px; margin-top: 18px; font-size: 0.92rem; line-height: 1.5; }
.footer__links { display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; }
.footer__links a { color: rgba(255,255,255,0.72); font-size: 0.98rem; font-weight: 500; transition: color .25s; }
.footer__links a:hover { color: var(--orange); }
.footer__cols { display: flex; gap: clamp(40px, 6vw, 90px); flex-wrap: wrap; }
.footer__col h4 { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 16px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 11px; transition: color .25s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 0.84rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .map__ring, .hero__note .dot { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 12px auto 30px; width: 100%; }
  .kaku__grid { grid-template-columns: 1fr; }
  .map { max-width: 460px; margin: 0 auto; width: 100%; }
  .platform { grid-template-columns: 1fr; }
  .platform__photo { min-height: 260px; order: -1; }
  .platform__photo::before { background: linear-gradient(0deg, var(--black) 0%, transparent 50%); }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
  .stats__lead { grid-column: 1 / -1; max-width: none; }
  .apply__card { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.open { position: relative; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; z-index: 99;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--pad) 26px; display: none;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav__menu { display: flex; }
  .nav__menu a { padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line-2); }
  .nav__menu .btn { margin-top: 16px; }
  .nav__menu .nav__cta { display: inline-flex; }
  .nav__cta--desktop { display: none; }
  .compare { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step { padding-top: 22px; }
  .step__num { margin-bottom: 16px; }
  .cap__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; gap: 30px; }
  .field.row { grid-template-columns: 1fr; }
  .how__head { align-items: flex-start; }
}
