:root {
  --bg:        #0D0B1A;
  --bg-2:      #13111F;
  --primary:   #7C3AED;
  --primary-d: #6D28D9;
  --accent:    #10B981;
  --accent-2:  #A78BFA;
  --bg-3:      #1E1A35;
  --text:      #F5F3FF;
  --text-2:    #C4B5FD;
  --border:    #2D2640;
  --border-2:  #3A3357;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --maxw: 1200px;
  --r: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(124,58,237,.35); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-body);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(16,185,129,.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 11px; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 8px 24px -10px rgba(124,58,237,.8);
}
.btn-primary:hover { background: var(--primary-d); transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 14px 30px -10px rgba(124,58,237,.9); }
.btn-ghost {
  background: rgba(245,243,255,.03); color: var(--text); border-color: var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(245,243,255,.07); border-color: #2f3d5c; transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 13px; }
.btn svg { width: 17px; height: 17px; }

/* ===== Nav ===== */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(10,15,30,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark { width: 32px; height: 35px; flex: none; display: block; filter: drop-shadow(0 4px 12px rgba(124,58,237,.45)); }
.logo-mark path, .logo-mark line { stroke: var(--accent-2); }
.wordmark { font-family: 'Quicksand', var(--font-head); font-size: 23px; letter-spacing: -0.5px; color: var(--accent-2); line-height: 1; }
.wordmark .w1 { font-weight: 500; } .wordmark .w2 { font-weight: 700; }
.logo-symbol { display: none; height: 34px; width: auto; filter: drop-shadow(0 4px 12px rgba(124,58,237,.45)); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link { font-size: 14.5px; color: var(--text-2); font-weight: 500; transition: color .2s; }
.nav-links a.link:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ===== Hamburger ===== */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 10px; transition: background .2s;
}
.nav-hamburger:hover { background: rgba(245,243,255,.07); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-2); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--text); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--text); }

/* ===== Mobile menu ===== */
.nav-mobile {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: rgba(10,11,26,.97); backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.16,1,.3,1);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile-inner { padding: 6px 0 20px; }
.nav-mobile-link {
  display: flex; align-items: center;
  padding: 15px 24px; font-size: 16px; font-weight: 500; color: var(--text-2);
  border-bottom: 1px solid rgba(45,38,64,.6);
  transition: color .2s, background .2s;
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-link:hover { color: var(--text); background: rgba(245,243,255,.03); }
.nav-mobile-link.login-link { color: var(--text); font-weight: 600; }

/* ===== Hero ===== */
.hero { position: relative; padding: 170px 0 90px; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.hero-fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(124,58,237,.16), transparent 55%),
    linear-gradient(180deg, transparent 55%, var(--bg) 96%);
}
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(30,41,59,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(30,41,59,.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-2);
  background: rgba(19,17,31,.6); border: 1px solid var(--border); padding: 7px 14px 7px 8px; border-radius: 100px;
  backdrop-filter: blur(8px); margin-bottom: 26px; font-weight: 500;
}
.pill b { color: var(--text); font-weight: 600; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(16,185,129,.18); }

.hero h1 { font-size: clamp(40px, 5vw, 66px); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .grad { background: linear-gradient(100deg, #fff 10%, #C4B5FD 60%, var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: 19px; color: var(--text-2); margin: 24px 0 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-2); }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); }

/* ===== Floating isometric dashboard ===== */
.iso-stage { position: relative; height: 480px; perspective: 1600px; z-index: 2; }
.iso-dash {
  position: absolute; top: 50%; left: 50%;
  width: 560px; height: 380px; transform-style: preserve-3d;
  transform: translate(-50%,-50%) rotateX(52deg) rotateZ(-42deg);
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translate(-50%,-54%) rotateX(52deg) rotateZ(-42deg); }
  50%     { transform: translate(-50%,-46%) rotateX(52deg) rotateZ(-42deg); }
}
.glass-panel {
  position: absolute; border-radius: 14px;
  background: linear-gradient(160deg, rgba(30,26,53,.82), rgba(19,17,31,.72));
  border: 1px solid rgba(124,58,237,.34);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), 0 1px 0 rgba(255,255,255,.06) inset;
  backdrop-filter: blur(12px);
}
.iso-main { inset: 0; padding: 18px; transform: translateZ(0); display: flex; flex-direction: column; gap: 14px; }
.iso-main::after { content:""; position:absolute; inset:0; border-radius:14px; background: linear-gradient(140deg, rgba(124,58,237,.10), transparent 60%); pointer-events:none; }
.iso-topbar { display: flex; align-items: center; gap: 8px; }
.iso-topbar .tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); }
.iso-topbar .tbar { margin-left: auto; height: 9px; width: 120px; border-radius: 100px; background: rgba(196,181,253,.18); }
.iso-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 11px; }
.iso-stat { background: rgba(13,11,26,.6); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.iso-stat .lab { height: 7px; width: 60%; border-radius: 100px; background: rgba(196,181,253,.22); margin-bottom: 10px; }
.iso-stat .num { height: 16px; width: 80%; border-radius: 5px; background: linear-gradient(90deg, var(--primary), #A78BFA); }
.iso-stat.green .num { background: linear-gradient(90deg, var(--accent), #34d399); }
.iso-chart { flex: 1; background: rgba(13,11,26,.55); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; align-items: flex-end; gap: 9px; }
.iso-bar { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, rgba(124,58,237,.85), rgba(124,58,237,.22)); }
.iso-bar.acc { background: linear-gradient(180deg, rgba(16,185,129,.9), rgba(16,185,129,.25)); }

.iso-float {
  width: 210px; padding: 13px 15px; display: flex; align-items: center; gap: 12px;
  transform: translateZ(70px); animation: floaty2 7s ease-in-out infinite;
}
.iso-float.f1 { top: -54px; right: -40px; }
.iso-float.f2 { bottom: -46px; left: -54px; animation-delay: -2.5s; }
@keyframes floaty2 { 0%,100%{ margin-top:0 } 50%{ margin-top:-12px } }
.ic-badge { width: 36px; height: 36px; border-radius: 9px; flex: none; display: grid; place-items: center; }
.ic-badge.blue { background: rgba(124,58,237,.16); border: 1px solid rgba(124,58,237,.4); }
.ic-badge.green { background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.4); }
.ic-badge svg { width: 18px; height: 18px; }
.ic-badge.blue svg { color: #A78BFA; } .ic-badge.green svg { color: #34d399; }
.iso-float .l1 { height: 8px; width: 90px; background: rgba(245,243,255,.5); border-radius: 100px; margin-bottom: 7px; }
.iso-float .l2 { height: 7px; width: 60px; background: rgba(196,181,253,.4); border-radius: 100px; }

/* ===== Section shells ===== */
section.block { position: relative; padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; margin: 16px 0 18px; }
.sec-head p { font-size: 18px; color: var(--text-2); }

/* ===== Social proof ===== */
.social { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.social-inner { padding-top: 40px; padding-bottom: 40px; text-align: center; }
.social-inner p { font-size: 15px; color: var(--text-2); max-width: 620px; margin: 0 auto 26px; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text);
  padding: 10px 18px; border-radius: 100px; border: 1px solid var(--border-2); background: rgba(10,15,30,.5);
}
.cat-badge svg { width: 16px; height: 16px; color: var(--text-2); }

/* ===== Modules ===== */
.mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mod-card {
  position: relative; padding: 30px; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(165deg, rgba(30,26,53,.55), rgba(19,17,31,.65));
  border: 1px solid var(--border); transition: border-color .25s ease, transform .25s ease, background .25s ease;
  backdrop-filter: blur(6px);
}
.mod-card:hover { border-color: var(--border-2); transform: translateY(-3px); background: linear-gradient(165deg, rgba(30,26,53,.7), rgba(19,17,31,.7)); }
.mod-card::before { content:""; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.5), transparent); opacity:0; transition: opacity .25s; }
.mod-card:hover::before { opacity: 1; }
.mod-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.mod-card h3 { font-size: 20px; margin-bottom: 0; }
.mod-card p { color: var(--text-2); font-size: 15.5px; }
.mod-tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); }

/* isometric icon cubes */
.iso-ic { width: 54px; height: 54px; flex: none; position: relative; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(45deg); }
.iso-ic .face { position: absolute; width: 32px; height: 32px; left: 11px; top: 11px; border-radius: 6px; }
.iso-ic .top { background: linear-gradient(135deg, #8B5CF6, var(--primary)); transform: translateZ(12px); box-shadow: 0 0 18px -4px rgba(124,58,237,.7); }
.iso-ic .left { background: #2A2147; transform: rotateY(-90deg) translateZ(0px) translateX(-12px); transform-origin: left; width: 24px; height: 32px; }
.iso-ic .right { background: #1F1838; transform: rotateX(-90deg) translateZ(0px) translateY(12px); transform-origin: top; width: 32px; height: 24px; }
.iso-ic.green .top { background: linear-gradient(135deg, #34d399, var(--accent)); box-shadow: 0 0 18px -4px rgba(16,185,129,.7); }
.iso-ic .glyph { position: absolute; inset: 0; display: grid; place-items: center; transform: translateZ(13px); }
.iso-ic .glyph svg { width: 16px; height: 16px; color: #fff; }
.iso-wrap { width: 54px; height: 54px; perspective: 200px; flex: none; }

/* ===== Roadmap ===== */
.roadmap { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.road-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.road-card {
  position: relative; padding: 26px; border-radius: var(--r);
  background: linear-gradient(170deg, rgba(30,26,53,.6), rgba(13,11,26,.7));
  border: 1px solid var(--border); backdrop-filter: blur(14px);
  overflow: hidden; transition: border-color .25s, transform .25s;
}
.road-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.road-card::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 100% at 100% 0%, rgba(124,58,237,.08), transparent 60%); pointer-events:none; }
.lock {
  display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-2); background: rgba(10,15,30,.7); border: 1px solid var(--border-2); padding: 5px 11px; border-radius: 100px; margin-bottom: 18px;
}
.lock svg { width: 12px; height: 12px; }
.road-card h3 { font-size: 18px; margin-bottom: 9px; }
.road-card p { color: var(--text-2); font-size: 14.5px; }
.road-num { position: absolute; top: 22px; right: 24px; font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--border-2); }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
.price-card {
  position: relative; padding: 36px; border-radius: 20px;
  background: linear-gradient(170deg, rgba(19,17,31,.6), rgba(13,11,26,.7));
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.price-card.feat { border: 1px solid var(--primary); background: linear-gradient(170deg, rgba(36,30,64,.8), rgba(19,17,31,.85)); box-shadow: 0 24px 60px -30px rgba(124,58,237,.55); }
.price-badge { position: absolute; top: -13px; left: 36px; font-size: 12px; font-weight: 600; letter-spacing: .03em; color: #fff; background: var(--primary); padding: 6px 14px; border-radius: 100px; }
.price-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--text); }
.price-desc { font-size: 14px; color: var(--text-2); margin-top: 5px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 24px 0 6px; }
.price-amt .amt { font-family: var(--font-head); font-weight: 800; font-size: 52px; letter-spacing: -0.04em; }
.price-amt .per { color: var(--text-2); font-size: 16px; }
.price-note { font-size: 13.5px; color: var(--text-2); margin-bottom: 26px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: #C4B5FD; }
.price-feats svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
.price-card .btn { width: 100%; }

/* ===== Final CTA ===== */
.final { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
#cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.final-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(80% 60% at 50% 50%, rgba(124,58,237,.12), transparent 60%); }
.final-inner { position: relative; z-index: 2; text-align: center; padding: 30px 0; max-width: 700px; margin: 0 auto; }
.final h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; letter-spacing: -0.035em; }
.final p { font-size: 18px; color: var(--text-2); margin: 20px 0 36px; }
.email-form { display: flex; flex-direction: column; gap: 0; max-width: 480px; margin: 0 auto; }
.email-row { display: flex; gap: 12px; }
.email-input {
  flex: 1; background: rgba(10,15,30,.7); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 0 18px; color: var(--text); font-family: var(--font-body); font-size: 15px; height: 54px;
  transition: border-color .2s, box-shadow .2s;
}
.email-input::placeholder { color: #7C6FA0; }
.email-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124,58,237,.18); }
.email-form.invalid .email-input { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.15); }
.form-msg { font-size: 14px; margin-top: 16px; height: 20px; transition: color .2s; }
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #f87171; }
.final-fine { margin-top: 22px; font-size: 13px; color: #7C6FA0; }

/* ===== Consent checkbox ===== */
.consent-wrapper {
  margin-top: 16px;
  margin-bottom: 4px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(13,11,26,.45);
  transition: border-color .2s;
}
.consent-wrapper:focus-within { border-color: var(--border-2); }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--border-2);
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.consent-label input[type="checkbox"]:hover { border-color: var(--primary); }
.consent-label input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
  box-shadow: 0 0 0 3px rgba(124,58,237,.18);
}
.consent-label input[type="checkbox"]:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.consent-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.consent-text a { color: var(--accent-2); text-decoration: none; }
.consent-text a:hover { text-decoration: underline; }
.consent-error { font-size: 12px; color: #F87171; margin-top: 8px; margin-left: 30px; }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--border); padding: 46px 0 40px; }
.foot-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.foot-links a { font-size: 14px; color: var(--text-2); transition: color .2s; padding: 10px 4px; min-height: 44px; display: inline-flex; align-items: center; }
.foot-links a:hover { color: var(--text); }
.foot-copy { font-size: 13.5px; color: #7C6FA0; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .iso-dash, .iso-float { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .iso-stage { height: 420px; margin-top: 10px; }
  .mod-grid { grid-template-columns: 1fr; }
  .road-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .nav-inner { display: flex; align-items: center; gap: 10px; }
  .logo { margin-right: auto; }
  .nav-login-desktop { display: none; }
  .nav-cta .btn { font-size: 12.5px; padding: 9px 13px; border-radius: 10px; }
  header .logo-mark { display: none; }
  header .wordmark { display: none; }
  .logo-symbol { display: block; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .road-grid { grid-template-columns: 1fr; }
  .email-row { flex-direction: column; gap: 24px; }
  .email-input { height: auto; padding-top: 18px; padding-bottom: 18px; line-height: 1.5; font-size: 16px; }
  .email-row .btn { width: 100%; padding-top: 18px; padding-bottom: 18px; font-size: 16px; }
  .hero { padding-top: 130px; }
  .iso-dash { transform: translate(-50%,-50%) rotateX(52deg) rotateZ(-42deg) scale(.7); }
  .social-inner { padding-top: 52px; padding-bottom: 52px; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .foot-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0; width: 100%; }
  .foot-links a { font-size: 13px; padding: 10px 0; }
  .foot-copy { font-size: 12.5px; }
}
