/* ═══════════════════════════════════════
   COCOS PLATFORM — Unified Design System
   Swiss Modernism · Slate Palette · Apple Motion
   Source of truth for ALL pages
   ═══════════════════════════════════════ */

:root {
  /* Palette */
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #94A3B8;
  --bg: #FFFFFF;
  --bg-2: #F8FAFC;
  --border: #E2E8F0;

  /* Accents — used sparingly */
  --purple: #7C5CFC;
  --purple-light: #F0ECFF;
  --teal: #0D9488;
  --teal-light: #CCFBF1;
  --orange: #EA580C;
  --orange-light: #FFF7ED;
  --pink: #DB2777;
  --pink-light: #FDF2F8;
  --blue: #0369A1;

  /* System */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale }
body { font-family: var(--font); color: var(--text-2); background: var(--bg); line-height: 1.65; overflow-x: hidden; font-weight: 400 }
a { text-decoration: none; color: inherit; cursor: pointer }
button { cursor: pointer; border: none; background: none; font-family: inherit }
img { max-width: 100%; display: block }
ul { list-style: none }
::selection { background: rgba(15,23,42,0.08); color: var(--text) }

/* ═══ GRAIN ═══ */
.grain { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px }

/* ═══ LAYOUT ═══ */
.w { max-width: 1080px; margin: 0 auto; padding: 0 32px }
.w--s { max-width: 720px }
.w--xs { max-width: 600px }
.w--wide { max-width: 1200px }

/* ═══ SECTIONS ═══ */
.s { padding: 120px 0 }
.s--gray { background: var(--bg-2) }
.s--dark { background: var(--text); color: #fff }

/* ═══ NAV ═══ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: all 0.5s var(--ease) }
.nav--scrolled { box-shadow: 0 1px 8px rgba(15,23,42,0.04) }
/* Transparent variant (hero pages) */
.nav--t { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; box-shadow: none }
.nav--t.nav--solid { background: rgba(255,255,255,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border) }

.n { max-width: 1080px; margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center }
.n__logo { font-weight: 800; font-size: 1.1rem; color: var(--text); letter-spacing: -0.02em; margin-right: auto; display: flex; align-items: baseline; gap: 6px }
.n__logo small { font-size: 0.58rem; font-weight: 400; color: var(--text-3) }
.n__links { display: flex; gap: 28px; margin-right: 28px; align-items: center }
.n__links > a { font-size: 0.8rem; font-weight: 500; color: var(--text-2); transition: color 0.2s }
.n__links > a:hover { color: var(--text) }
.n__links > a.active { color: var(--text); font-weight: 600 }

/* Dropdown */
.n__dd { position: relative }
.n__dd-btn { font-size: 0.8rem; font-weight: 500; color: var(--text-2); display: flex; align-items: center; gap: 4px; cursor: pointer; padding: 0 }
.n__dd-btn::after { content: ''; border: 3.5px solid transparent; border-top: 3.5px solid currentColor; transition: transform 0.3s }
.n__dd:hover .n__dd-btn::after { transform: rotate(180deg) }
.n__dd:hover .n__dd-btn { color: var(--text) }
.n__dd-menu { position: absolute; top: calc(100% + 10px); left: -12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 6px; min-width: 200px; box-shadow: 0 8px 30px rgba(15,23,42,0.06); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.25s var(--ease); z-index: 20 }
.n__dd:hover .n__dd-menu { opacity: 1; visibility: visible; transform: translateY(0) }
.n__dd-menu a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 0.8rem; color: var(--text-2); transition: background 0.15s }
.n__dd-menu a:hover { background: var(--bg-2); color: var(--text) }
.n__dd-menu .soon { font-size: 0.55rem; font-weight: 700; color: var(--text-3); background: var(--bg-2); padding: 2px 7px; border-radius: 99px; margin-left: 6px }

/* Nav actions */
.n__login { font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-right: 16px; transition: color 0.2s }
.n__login:hover { color: var(--text) }
.n__cta { font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--text); padding: 9px 22px; border-radius: 999px; transition: background 0.2s }
.n__cta:hover { background: #334155 }
.n__cta:active { transform: scale(0.97) }

/* Language switcher */
.n__lang { display: flex; align-items: center; gap: 4px; margin-left: 8px; font-size: 0.72rem; font-weight: 600; color: var(--text-3) }
.n__lang a { color: var(--text-3); padding: 2px 6px; border-radius: 4px; transition: color 0.2s }
.n__lang a:hover { color: var(--text) }
.n__lang a.active { color: var(--text); background: var(--bg-2) }
.n__lang span { color: var(--border) }

/* Mobile */
.n__ham { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center }
.n__ham span { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease) }
.n__mob { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 24px; position: fixed; inset: 0; top: 64px; z-index: 40; background: #fff }
.n__mob.active { display: flex }
.n__mob a { font-size: 1.15rem; font-weight: 600; color: var(--text); min-height: 44px; display: flex; align-items: center }

/* ═══ TYPOGRAPHY ═══ */
.s__label { display: inline-flex; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); border: 1px solid var(--border); border-radius: 999px; padding: 6px 18px; margin-bottom: 20px }
.s--dark .s__label { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.12) }

.s__h { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text); line-height: 1.05; letter-spacing: -0.035em; text-wrap: balance; margin-bottom: 16px }
.s__h--lg { font-size: clamp(2.4rem, 5.5vw, 4rem) }
.s__h--c { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto }
.s--dark .s__h { color: #fff }
.hi { color: var(--purple) }
.hi-teal { color: var(--teal) }
.hi-orange { color: var(--orange) }
.hi-pink { color: var(--pink) }

.s__p { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; margin-top: 0; margin-bottom: 24px; max-width: 560px }
.s__p--c { text-align: center; margin-left: auto; margin-right: auto }
.s--dark .s__p { color: rgba(255,255,255,0.55) }

.fine { font-size: 0.75rem; color: var(--text-3) }

/* ═══ HERO ═══ */
.hero { min-height: 100dvh; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 64px; background: var(--bg-2); position: relative }
.hero--center { justify-content: center; text-align: center }
.hero--center .hero__text { max-width: 700px; margin: 0 auto }
.hero--center .hero__p { max-width: 520px; margin: 16px auto 28px }

.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1080px; margin: 0 auto; padding: 0 32px }
.hero__text { max-width: 520px }
.hero h1, .hero__h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; color: var(--text); line-height: 1.02; letter-spacing: -0.04em; text-wrap: balance }
.hero h1 span, .hero__h1 span { color: var(--purple) }
.hero__p { font-size: 1.05rem; color: var(--text-2); line-height: 1.65; margin: 16px 0 28px; max-width: 440px }
.hero__visual { text-align: center }
.hero__visual img { width: 100%; max-width: 480px; margin: 0 auto }
.hero__arrow { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); color: var(--text-3); animation: arrowBounce 2.2s ease-in-out infinite }
@keyframes arrowBounce { 0%,100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(10px) } }

/* Hero metrics */
.hero-metrics { display: flex; gap: 12px; margin-bottom: 28px }
.hero-metric { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 18px; text-align: center; flex: 1 }
.hero-metric strong { display: block; font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.2 }
.hero-metric span { display: block; font-size: 0.65rem; color: var(--text-3); margin-top: 2px }

/* Hero form */
.hero-form { display: flex; gap: 8px; margin-bottom: 10px }
.hero-form input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 0.9rem; background: var(--bg); color: var(--text); transition: border 0.3s; font-family: var(--font) }
.hero-form input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,92,252,0.08); outline: none }
.hero-form input::placeholder { color: var(--text-3) }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 700; border-radius: 999px; padding: 14px 28px; transition: all 0.25s var(--ease); cursor: pointer; min-height: 44px }
.btn:active { transform: scale(0.97) }
.btn:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px }
.btn--dark { background: var(--text); color: #fff }
.btn--dark:hover { background: #334155; box-shadow: 0 4px 16px rgba(15,23,42,0.12) }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border) }
.btn--outline:hover { border-color: var(--text) }
.btn--white { background: #fff; color: var(--text) }
.btn--white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: translateY(-2px) }
.btn--outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.18) }
.btn--outline-w:hover { border-color: rgba(255,255,255,0.4) }
.btn--full { width: 100%; justify-content: center }
.btn--lg { padding: 16px 36px; font-size: 1rem }

/* ═══ DIVIDER ═══ */
.divider { height: 1px; background: var(--border); max-width: 80px; margin: 0 auto 56px }

/* ═══ SPLIT ═══ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.split--flip { direction: rtl }
.split--flip > * { direction: ltr }
.split__img { width: 100%; max-width: 400px; margin: 0 auto; mix-blend-mode: multiply; border-radius: var(--radius) }

/* ═══ CHECK LIST ═══ */
.check-list { margin: 20px 0 0; padding: 0; list-style: none }
.check-list li { position: relative; padding-left: 28px; font-size: 0.95rem; color: var(--text); font-weight: 500; line-height: 1.55; margin-bottom: 10px }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800 }

/* ═══ CARDS ═══ */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); cursor: default; position: relative; overflow: hidden }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.06) }
.card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; border-radius: 3px 0 0 3px; background: transparent }
.card--purple::before { background: var(--purple) }
.card--teal::before { background: var(--teal) }
.card--orange::before { background: var(--orange) }
.card--pink::before { background: var(--pink) }
.card__title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px }
.card__body { font-size: 0.88rem; color: var(--text-2); line-height: 1.65 }
.card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; font-weight: 600; color: var(--purple); margin-top: 16px; transition: gap 0.3s var(--ease); cursor: pointer }
.card__link:hover { gap: 8px }

/* Icon containers */
.ico { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px }
.ico--purple { background: rgba(124,92,252,0.06); color: var(--purple) }
.ico--teal { background: rgba(13,148,136,0.06); color: var(--teal) }
.ico--orange { background: rgba(234,88,12,0.06); color: var(--orange) }
.ico--pink { background: rgba(219,39,119,0.06); color: var(--pink) }
.ico--blue { background: rgba(3,105,161,0.06); color: var(--blue) }

/* ═══ AREA CARDS ═══ */
.area-card { display: block; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); cursor: pointer; position: relative }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.06) }
.area-card--soon { opacity: 0.6; cursor: default }
.area-card--soon:hover { transform: none; box-shadow: none }
.area-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 4px }
.area-card__clevel { font-size: 0.75rem; font-weight: 600; color: var(--purple); margin-bottom: 10px; display: block }
.area-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6 }
.area-card__link { font-size: 0.82rem; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; transition: gap 0.3s var(--ease) }
.area-card:hover .area-card__link { gap: 8px }
.soon-badge { position: absolute; top: 16px; right: 16px; font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); background: var(--bg-2); padding: 3px 10px; border-radius: 999px }
.area-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 16px }

/* ═══ AGENT CARDS ═══ */
.agent-hero { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-top: 48px; margin-bottom: 32px }
.agent-hero__img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid var(--purple-light); flex-shrink: 0 }
.agent-hero__name { font-size: 1.4rem; font-weight: 800; color: var(--purple); margin-bottom: 8px; letter-spacing: -0.02em }
.agent-hero__role { font-size: 0.95rem; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; max-width: 460px }

.agent-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all 0.3s var(--ease); cursor: default }
.agent-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,23,42,0.06); border-color: transparent }
.agent-card__img { width: 88px; height: 88px; margin: 0 auto 16px; object-fit: contain }
.agent-card__name { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 6px }
.agent-card__desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.55 }

/* ═══ STATS ═══ */
.stats-bar { background: var(--text); color: #fff; padding: 20px 0 }
.stats-bar p, .stats-bar__grid { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.7) }
.stats-bar strong { color: #fff; font-weight: 700 }
.stats-bar__grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap }
.stats-bar__item { font-size: 0.82rem; color: rgba(255,255,255,0.7) }
.stats-bar__item strong { color: #fff; margin-right: 4px }

.proof-stats { display: flex; justify-content: center; gap: 48px; margin: 48px 0; flex-wrap: wrap }
.proof-stat { text-align: center }
.proof-stat__num { display: block; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.04em }
.proof-stat__label { font-size: 0.75rem; color: var(--text-3); margin-top: 4px }

/* ═══ QUOTE ═══ */
.quote { max-width: 520px; margin: 40px auto 0; text-align: center; padding: 28px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius) }
.quote p { font-size: 1.05rem; font-weight: 600; color: var(--text); font-style: italic; line-height: 1.5; margin-bottom: 8px }
.quote cite { font-size: 0.75rem; color: var(--text-3); font-style: normal }

/* ═══ STEPS ═══ */
.steps { margin-top: 56px }
.stp { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 44px 0; border-top: 1px solid var(--border); align-items: start }
.stp:last-child { border-bottom: 1px solid var(--border) }
.stp__n { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 300; color: var(--border); line-height: 0.9; letter-spacing: -0.04em }
.stp h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px }
.stp p { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; max-width: 480px }

/* Horizontal step variant */
.step { text-align: center }
.step__num { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 auto 16px }
.step__num--purple { background: var(--purple) }
.step__num--teal { background: var(--teal) }
.step__num--orange { background: var(--orange) }

/* ═══ GRIDS ═══ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px }

/* ═══ CTA BAND ═══ */
.cta-band { background: var(--text); padding: 100px 0; text-align: center }
.cta-band__h { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em; max-width: 560px; margin: 0 auto 36px; text-wrap: balance }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap }

/* ═══ FAQ ═══ */
.faq { display: flex; flex-direction: column }
.faq__item { border-top: 1px solid var(--border) }
.faq__item:last-child { border-bottom: 1px solid var(--border) }
.faq__q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px 0; font-size: 0.95rem; font-weight: 600; color: var(--text); cursor: pointer; list-style: none; transition: color 0.2s; min-height: 44px }
.faq__q:hover { color: var(--purple) }
.faq__q::-webkit-details-marker { display: none }
.faq__q::after { content: '+'; font-size: 1.2rem; color: var(--text-3); transition: transform 0.3s var(--ease) }
.faq__item[open] .faq__q::after { content: '−'; color: var(--purple) }
.faq__a { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; padding-bottom: 20px }
.faq__a a { color: var(--purple); font-weight: 600 }

/* ═══ FORMS ═══ */
.form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 40px auto 0 }
.form--wide { max-width: 560px }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.form input, .form select, .form textarea {
  padding: 15px 18px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; background: var(--bg); color: var(--text); transition: border 0.3s; font-family: var(--font) }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,92,252,0.08); outline: none }
.form input::placeholder, .form textarea::placeholder { color: var(--text-3) }
.form select { color: var(--text-2); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center }
.form textarea { resize: vertical; min-height: 100px }

/* ═══ CALLOUT ═══ */
.callout { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--text) }
.callout--teal { color: var(--teal) }
.callout-src { font-size: 0.72rem; color: var(--text-3); margin-top: 8px; font-style: italic }

/* ═══ STORY (sticky scroll) ═══ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; min-height: 90vh; align-items: start }
.story__pin { position: sticky; top: 35vh }
.story__flow { padding: 200px 0 120px; display: flex; flex-direction: column; gap: 56px }
.story__flow p { font-size: 1.05rem; color: var(--text-2); line-height: 1.85; max-width: 460px }
.story__flow p strong { color: var(--text); font-weight: 600 }

/* ═══ FOOTER ═══ */
.ft { border-top: 1px solid var(--border); padding: 48px 0 24px }
.ft__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px }
.ft__logo { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: 4px }
.ft__by { font-size: 0.58rem; color: var(--text-3); display: block; margin-bottom: 12px }
.ft__tag { font-size: 0.82rem; color: var(--text-2); font-style: italic; line-height: 1.6; max-width: 280px }
.ft__col-title { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 16px }
.ft__col a { display: block; font-size: 0.8rem; color: var(--text-2); margin-bottom: 10px; transition: color 0.15s }
.ft__col a:hover { color: var(--text) }
.ft__bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 0.68rem; color: var(--text-3) }

/* ═══ ANIMATION ═══ */
[data-a] { opacity: 0; transform: translateY(36px) }

/* ═══ FOCUS ═══ */
*:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px }

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  [data-a] { opacity: 1 !important; transform: none !important }
  .hero__arrow { animation: none }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; min-height: auto }
  .story__pin { position: static }
  .story__flow { padding: 40px 0 0 }
}
@media (max-width: 768px) {
  .s { padding: 80px 0 }
  .w { padding: 0 20px }
  .n__links, .n__login, .n__cta { display: none }
  .n__ham { display: flex }
  .hero { min-height: auto; padding: 100px 0 48px }
  .hero__grid { grid-template-columns: 1fr; text-align: center; padding: 0 20px }
  .hero__text { max-width: 100% }
  .hero__p { max-width: 100%; margin-left: auto; margin-right: auto }
  .hero-metrics { justify-content: center; flex-wrap: wrap }
  .hero-form { flex-direction: column }
  .hero__visual img { max-width: 320px }
  .split, .split--flip { grid-template-columns: 1fr; direction: ltr }
  .grid-2 { grid-template-columns: 1fr }
  .grid-3 { grid-template-columns: 1fr }
  .grid-4 { grid-template-columns: 1fr 1fr }
  .agent-hero { grid-template-columns: 1fr; text-align: center }
  .proof-stats { gap: 32px }
  .form__row { grid-template-columns: 1fr }
  .ft__grid { grid-template-columns: 1fr 1fr }
  .stp { grid-template-columns: 56px 1fr; gap: 20px; padding: 32px 0 }
  .cta-band { padding: 80px 0 }
  .cta-band__btns { flex-direction: column; align-items: center }
  .stats-bar__grid { gap: 24px }
}
@media (max-width: 480px) {
  .hero-metrics { flex-direction: column; gap: 8px }
  .grid-4 { grid-template-columns: 1fr }
  .ft__grid { grid-template-columns: 1fr }
  .stats-bar__grid { flex-direction: column; gap: 12px }
}