

#intro {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
}
.intro-panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--bg-0);
  transition: transform .75s cubic-bezier(.87,0,.13,1);
  will-change: transform;
}
.intro-panel.top { top: 0; }
.intro-panel.bot { bottom: 0; }
.intro-panel.top.open { transform: translateY(-100%); }
.intro-panel.bot.open  { transform: translateY(100%); }

.intro-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 900; letter-spacing: -0.04em;
  color: var(--ink-0);
  opacity: 0;
  transition: opacity .38s ease, transform .38s ease;
  white-space: nowrap; user-select: none;
}
.intro-logo .o { color: var(--accent); }
.intro-logo.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.intro-logo.hide {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 8px));
}

.intro-panel.bot { overflow: visible; }
.intro-line {
  position: absolute;
  top: clamp(22px, 3.5vw, 42px);
  left: 50%; transform: translateX(-50%);
  height: 3px; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  transition: width .55s cubic-bezier(.22,1,.36,1);
}
.intro-line.draw { width: 72px; }

.v1 { min-height: 100vh; position: relative; }

a:not(.btn) { text-decoration: none; }
a:not(.btn):visited { color: inherit; text-decoration: none; }

.v1-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  background: color-mix(in srgb, var(--bg-0) 60%, transparent);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, padding .4s;
}
.v1-nav.scrolled { padding: 12px 32px; border-bottom-color: var(--line); }
.v1-nav .logo,
.v1-nav .logo:link,
.v1-nav .logo:visited,
.v1-nav .logo:hover,
.v1-nav .logo:active {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-0);
  text-decoration: none;
}
.v1-nav .logo .o { color: var(--accent); }
.v1-nav .links {
  position: relative;
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
}
.v1-nav .links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s;
}
.v1-nav .links a:hover { color: var(--ink-0); }
.v1-nav .links a.active { color: var(--ink-0); }
.v1-nav .links .nav-ink {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  opacity: .9;
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.2,.9,.2,1), width .35s cubic-bezier(.2,.9,.2,1), opacity .2s ease;
  pointer-events: none;
}
.v1-nav .nav-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: color-mix(in srgb, var(--line) 60%, transparent);
  overflow: hidden;
  pointer-events: none;
}
.v1-nav .nav-progress #nav-progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ff4d00, #ff8700);
  transition: width .08s linear;
}

.v1-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 88px 0;
  max-width: 1440px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  overflow: visible;
}
.v1-hero-text {
  position: relative; z-index: 2;
  padding-bottom: 80px;
}
.v1-hero-text { position: relative; z-index: 2; }
.v1-hero h1 {
  font-size: clamp(56px, 8.2vw, 120px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: .92;
  margin: 24px 0 28px;
  color: var(--ink-0);
}

.word-carousel {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  line-height: inherit;
}
.word-carousel .wc-track {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.word-carousel .wc-sizer {
  display: inline-block;
  visibility: hidden;
  white-space: nowrap;
  font: inherit;
  color: transparent;
}

.word-carousel .wc-word {
  position: absolute;
  left: 0; top: 0;
  display: inline-block;
  white-space: nowrap;
  font: inherit;
  color: var(--accent);
  opacity: 0;
  transform: translateY(70%);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}
.word-carousel .wc-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.word-carousel .wc-word.was-active {
  opacity: 0;
  transform: translateY(-70%);
}

.word-carousel::after { display: none; }
.wc-underline {
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  border-radius: 999px;
  opacity: .6;
  transition: width .5s cubic-bezier(.2,.9,.2,1);
  pointer-events: none;
}

.v1-hero .lead { max-width: 540px; margin: 0 0 36px; font-size: 19px; line-height: 1.55; color: var(--ink-2); }
.v1-hero .lead .lead-accent {
  color: var(--accent);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 70%, color-mix(in srgb, var(--accent) 25%, transparent) 70%);
  padding: 0 2px;
}
.v1-hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.v1-hero-stats {
  margin-top: 64px; display: flex; gap: 48px;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.v1-hero-stats .s .n { font-size: 32px; font-weight: 800; color: var(--ink-0); letter-spacing: -0.02em; font-family: var(--font-mono); }
.v1-hero-stats .s .l { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-3); font-weight: 700; margin-top: 4px; }

.v1-mascot-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  aspect-ratio: 4/5;
  max-width: 580px; margin-left: auto;
  align-self: center;
  transform: translate(40px, -46px);
}
.v1-mascot-frame {
  position: absolute; inset: -8% 6% 20%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 25%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.v1-mascot-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 55%);
  mix-blend-mode: multiply; pointer-events: none;
}
.v1-mascot-img {
  position: absolute; bottom: -6%; left: 50%; transform: translateX(-50%);
  height: 100%;  
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(15,13,11,.25));
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: translate(-50%, 0) scale(1); } 50% { transform: translate(-50%, -1.2%) scale(1.015); } }

.v1-mascot-orbit {
  position: absolute;
  inset: -22% -8% 6%;
  border-radius: 999px;
  z-index: 1;
}
.v1-mascot-frame { z-index: 2; }
.v1-mascot-orbit .orbit-dot {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  background: var(--accent); pointer-events: none;
  will-change: transform;
}
.v1-mascot-orbit .orbit-dot.a {
  width: 14px; height: 14px;
  box-shadow: 0 0 24px 4px color-mix(in srgb, var(--accent) 60%, transparent);
}
.v1-mascot-orbit .orbit-dot.b {
  width: 9px; height: 9px;
  opacity: 0.45;
}

.v1-float-label {
  position: absolute; z-index: 4;
  padding: 10px 14px; border-radius: 14px;
  background: var(--glass); backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 14px 30px -10px rgba(15,13,11,.2);
  animation: float-y 5s ease-in-out infinite;
}
.v1-float-label .d { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.15); }
.v1-float-label .flag-nl {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(15,13,11,.12);
  display: inline-block;
  background: linear-gradient(to bottom, #ae1c28 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
  box-shadow: 0 1px 2px rgba(15,13,11,.15);
}
.v1-float-label.a { top: 10%; left: -8%; animation-delay: 0s; }
.v1-float-label.b { top: 45%; right: -12%; animation-delay: -2s; }
.v1-float-label.c { bottom: 12%; left: -4%; animation-delay: -3.5s; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.v1-trusted { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-1); }
.v1-trusted .marquee-track { align-items: center; gap: 0; animation-name: marquee-v1; }
@keyframes marquee-v1 { to { transform: translateX(-25%); } }
.v1-trusted .item {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .05em;
  color: var(--ink-3); white-space: nowrap; display: inline-flex; gap: 14px; align-items: center;
  margin-right: 48px;
}
.v1-trusted .item::after { content: "✦"; color: var(--accent); font-size: 16px; }

.v1-section { padding: 120px 48px; max-width: 1440px; margin: 0 auto; position: relative; }
.v1-section h2.display { font-size: clamp(40px, 5.6vw, 72px); margin: 18px 0 18px; max-width: 900px; }
.v1-section .sub { font-size: 18px; color: var(--ink-2); max-width: 620px; margin-bottom: 64px; line-height: 1.5; }

.v1-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.v1-step {
  position: relative; padding: 36px 32px; border-radius: 28px;
  background: var(--bg-1); border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .4s;
}
.v1-step:hover { transform: translateY(-4px); }
.v1-step .num {
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--ink-0); color: var(--bg-1);
}
.v1-step h3 { font-size: 22px; margin: 20px 0 8px; font-weight: 800; letter-spacing: -0.02em; }
.v1-step p { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; }
.v1-step .art {
  margin-top: 24px; height: 160px; border-radius: 20px; background: var(--bg-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.v1-step-connector {
  position: absolute; top: 50%; height: 2px; background: var(--line-2);
  left: 0; right: 0; z-index: -1;
}

.art-phone {
  width: 160px; height: 140px; position: relative;
}
.art-phone .ring {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--accent); opacity: .4;
  animation: ring-grow 2s ease-out infinite;
}
.art-phone .ring:nth-child(2) { animation-delay: .6s; }
.art-phone .ring:nth-child(3) { animation-delay: 1.2s; }
.art-phone .dot {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px var(--accent);
}
@keyframes ring-grow { from { transform: scale(.3); opacity: .8; } to { transform: scale(1); opacity: 0; } }

.art-lock { font-size: 72px; color: var(--accent); animation: lock-rotate 4s ease-in-out infinite; }
@keyframes lock-rotate { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(8deg); } }

.art-globe {
  width: 150px; height: 150px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  position: relative; animation: spin 20s linear infinite;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%);
}
.art-globe::before, .art-globe::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed var(--line-2);
}
.art-globe::before { transform: rotateX(72deg); }
.art-globe::after  { transform: rotateY(72deg); }
.art-globe .pin {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.art-globe .pin.p1 { top: 24%; left: 28%; }
.art-globe .pin.p2 { top: 52%; right: 18%; }
.art-globe .pin.p3 { bottom: 22%; left: 45%; }
@keyframes spin { to { transform: rotate(360deg); } }

.v1-security {
  background: var(--ink-0); color: var(--bg-1);
  border-radius: 40px;
  padding: 100px 72px;
  margin: 40px 48px;
  max-width: calc(1440px - 96px); margin-left: auto; margin-right: auto;
  overflow: hidden;
  position: relative;
}
.v1-security .eyebrow { color: var(--bg-2); }
.v1-security .eyebrow::before { background: var(--accent); opacity: 1; }
.v1-security h2 { color: var(--bg-1); }
.v1-security .sub { color: rgba(251,247,241,.65); }
.v1-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v1-security-viz {
  aspect-ratio: 1; position: relative; max-width: 500px; margin: 0 auto;
}
.v1-ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(251,247,241,.1);
  border-radius: 50%;
}
.v1-ring.r1 { inset: 10%; animation: ring-drift 18s linear infinite; }
.v1-ring.r2 { inset: 20%; animation: ring-drift 14s linear infinite reverse; border-color: rgba(251,247,241,.2); }
.v1-ring.r3 { inset: 30%; border-color: rgba(255,77,0,.3); animation: ring-drift 10s linear infinite; }
.v1-ring .tick { position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
@keyframes ring-drift { to { transform: rotate(360deg); } }
.v1-lock-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 140px; height: 140px; border-radius: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px color-mix(in srgb, var(--accent) 70%, transparent), inset 0 0 40px rgba(255,255,255,.2);
  animation: pulse-lock 3s ease-in-out infinite;
}
.v1-lock-core i { font-size: 52px; color: #fff; }
@keyframes pulse-lock { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.04); } }
.v1-security-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.v1-security-features .f { display: flex; gap: 16px; align-items: flex-start; }
.v1-security-features .f i { color: var(--accent); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.v1-security-features .f .t { font-weight: 700; color: var(--bg-1); margin-bottom: 4px; }
.v1-security-features .f .d { color: rgba(251,247,241,.65); font-size: 14px; line-height: 1.5; }

.v1-encrypt {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(251,247,241,.75);
  margin-top: 24px;
  background: rgba(251,247,241,.07);
  border: 1px solid rgba(251,247,241,.15);
  border-radius: 14px;
  padding: 18px 22px;
  line-height: 1.6;
  white-space: normal;
  word-break: break-all;
}

.v1-speed { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.v1-speed-card {
  padding: 32px; border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--bg-1);
}
.v1-speed-card .t { font-size: 13px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-3); font-weight: 700; margin-bottom: 24px; }
.v1-speed-card .v { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink-0); font-family: var(--font-mono); display: flex; flex-direction: column; align-items: flex-start; gap: 8px; line-height: 1; }
.v1-speed-card .v small { font-size: 14px; color: var(--ink-3); font-family: var(--font-sans); font-weight: 600; letter-spacing: .01em; }
.v1-speed-card .bar { margin-top: 28px; height: 8px; background: var(--bg-3); border-radius: 999px; overflow: hidden; }
.v1-speed-card .bar .fill { height: 100%; background: var(--ink-3); border-radius: 999px; transition: width 2.5s cubic-bezier(.2,.8,.2,1); }
.v1-speed-card.on { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--bg-1)); }
.v1-speed-card.on .fill { background: linear-gradient(90deg, var(--accent), var(--accent-hi)); }
.v1-speed-card.on .v { color: var(--accent); }

.v1-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v1-price {
  position: relative; padding: 36px; border-radius: 32px;
  background: var(--bg-1); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
}
.v1-price:hover { border-color: var(--accent); box-shadow: var(--shadow-float); }

.v1-price.pop {
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 24px 60px -24px color-mix(in srgb, var(--accent) 50%, transparent), var(--shadow-card);
  transform: translateY(-6px);
}
.v1-price.pop:hover { transform: translateY(-10px); border-color: var(--accent); }
.v1-price.pop .badge-pop { background: var(--accent); color: #fff; }

.v1-price h3 { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.v1-price .muted { color: var(--ink-3); font-size: 14px; }
.v1-price .price { font-size: 56px; font-weight: 900; letter-spacing: -0.035em; line-height: 1; color: var(--ink-0); font-family: var(--font-mono); }
.v1-price .price small { font-size: 14px; color: var(--ink-3); font-family: var(--font-sans); font-weight: 500; margin-left: 6px; }
.v1-price .per-year { color: var(--accent); font-size: 13px; font-weight: 600; }
.v1-price ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.v1-price li { font-size: 14px; display: flex; gap: 10px; align-items: flex-start; color: var(--ink-1); }
.v1-price li::before { content: "→"; color: var(--accent); font-weight: 800; }
.v1-price li .plus { display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.v1-price.pop li .plus { background: rgba(255,255,255,.16); color: var(--bg-1); }
.v1-pricing-note { text-align: center; margin-top: 32px; color: var(--ink-3); font-size: 14px; }
.v1-pricing-note b { color: var(--ink-1); }

.badge-pop { position: absolute; top: -14px; left: 28px; background: var(--ink-0); color: var(--bg-1); padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.v1-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v1-review {
  padding: 28px; border-radius: 24px; background: var(--bg-1); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .4s;
}
.v1-review:hover { transform: translateY(-4px); }
.v1-review .quote-mark { font-size: 48px; line-height: .3; color: var(--accent); font-family: Georgia, serif; }
.v1-review p { font-size: 15px; line-height: 1.55; margin: 0; color: var(--ink-1); }
.v1-review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.v1-review .avatar {
  width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
  background: var(--accent);
}
.v1-review .name { font-weight: 700; font-size: 14px; color: var(--ink-0); }
.v1-review .role { font-size: 12px; color: var(--ink-3); }
.v1-review .avatar--red  { background: #e5233c; }
.v1-review .avatar--blue { background: #5b5bff; }

.v1-cta-band {
  margin: 80px 48px 40px; max-width: calc(1440px - 96px); margin-left: auto; margin-right: auto;
  padding: 80px 72px; border-radius: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hi));
  color: #fff;
  text-align: center; position: relative; overflow: hidden;
}
.v1-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.3), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0,0,0,.2), transparent 50%);
}
.v1-cta-band h2 { position: relative; font-size: clamp(36px, 5vw, 64px); color: #fff; margin: 0 0 20px; font-weight: 800; letter-spacing: -0.03em; }
.v1-cta-band p { position: relative; font-size: 18px; max-width: 560px; margin: 0 auto 32px; opacity: .9; }
.v1-cta-band .btn { position: relative; background: #fff; color: var(--accent); font-size: 17px; padding: 20px 40px; }
.v1-cta-band .btn:hover { background: var(--ink-0); color: #fff; }

.v1-footer {
  padding: 60px 48px 40px; max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  border-top: 1px solid var(--line);
}
.v1-footer .brand .logo { font-size: 22px; font-weight: 800; }
.v1-footer .brand .logo .o { color: var(--accent); }
.v1-footer .brand .slogan { font-family: var(--font-display, var(--font-sans)); font-size: 18px; font-weight: 600; font-style: italic; color: var(--ink-1); margin: 8px 0 14px; letter-spacing: -0.01em; }
.v1-footer .brand p { color: var(--ink-3); font-size: 14px; margin: 0; max-width: 300px; line-height: 1.5; }
.v1-footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-3); margin: 0 0 16px; font-weight: 700; }
.v1-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.v1-footer a { color: var(--ink-1); font-size: 14px; text-decoration: none; transition: color .2s; }
.v1-footer a:hover { color: var(--accent); }
.v1-footer .copy { grid-column: 1 / -1; padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 12px; }

.v1-scroll-ind {
  position: fixed; bottom: 32px; left: 48px; z-index: 10;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3);
  opacity: 1; transition: opacity .4s ease;
  pointer-events: none;
}
.v1-scroll-ind.hidden { opacity: 0; }
.v1-scroll-ind .line {
  width: 60px; height: 1px; background: var(--line-2); position: relative; overflow: hidden;
}
.v1-scroll-ind .line::after {
  content: ""; position: absolute; width: 20px; height: 100%; background: var(--accent);
  animation: scroll-dash 2s ease-in-out infinite;
}
@keyframes scroll-dash { 0% { left: -20px; } 100% { left: 100%; } }

.v1-referral .sub { margin-bottom: 48px; }

.v1-ref-rewards {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
  margin-bottom: 40px;
}

.v1-ref-reward {
  position: relative;
  padding: 36px 32px;
  border-radius: 32px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .4s, box-shadow .4s, border-color .4s;
  transform-style: preserve-3d;
}
.v1-ref-reward:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: var(--shadow-float);
}

.v1-ref-reward--accent {
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow: 0 24px 60px -24px color-mix(in srgb, var(--accent) 40%, transparent), var(--shadow-card);
  transform: translateY(-4px);
}
.v1-ref-reward--accent:hover { transform: translateY(-8px); }

.v1-ref-reward-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent);
  margin-bottom: 8px;
}

.v1-ref-num {
  font-family: var(--font-mono);
  font-size: clamp(56px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.v1-ref-who {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.v1-ref-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 4px;
}

.v1-ref-reward--how {
  justify-content: space-between;
  gap: 0;
}

.v1-ref-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.v1-ref-step-mini {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-1);
  line-height: 1.4;
}

.v1-ref-step-mini .n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--ink-0); color: var(--bg-1);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.v1-ref-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.v1-ref-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

.v1-ref-notes span i {
  color: var(--accent);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.v1-ref-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .v1-ref-rewards {
    grid-template-columns: 1fr 1fr;
  }
  .v1-ref-reward--how {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .v1-ref-rewards {
    grid-template-columns: 1fr;
  }
  .v1-ref-reward--how {
    grid-column: auto;
  }
}

.footer-contacts-btn {
  background: none; border: none; padding: 0; margin: 0;
  font-family: var(--font-sans); font-size: 14px; font-weight: 400; line-height: 1;
  color: var(--ink-1);
  cursor: pointer; text-align: left;
  transition: color .2s;
}
.footer-contacts-btn:hover { color: var(--accent); }

.contacts-overlay {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(15, 13, 11, .45);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  opacity: 0;
  transition: opacity .3s cubic-bezier(.2,.9,.2,1);
}
.contacts-overlay.open { opacity: 1; }
.contacts-overlay[hidden] { display: none; }

.contacts-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 36px 36px;
  max-width: 400px; width: 100%;
  box-shadow: 0 32px 64px -16px rgba(15,13,11,.3), 0 4px 12px rgba(15,13,11,.08);
  transform: translateY(16px) scale(.97);
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
  text-align: center;
}
.contacts-overlay.open .contacts-card {
  transform: none;
}

.contacts-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink-2); cursor: pointer;
  transition: background .2s, color .2s;
}
.contacts-close:hover { background: var(--bg-3); color: var(--ink-0); }

.contacts-icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  margin: 0 auto 20px;
}
.contacts-title {
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink-0); margin: 0 0 10px;
}
.contacts-sub {
  font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0 0 28px;
}
.contacts-actions {
  display: flex; flex-direction: column; gap: 10px;
}

.nav-about-wrap {
  position: relative;
}
.nav-about-btn {
  background: none; border: none; padding: 0; margin: 0;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--ink-2); cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-about-btn:hover, .nav-about-wrap.open .nav-about-btn { color: var(--ink-0); }
.nav-about-btn .fa-chevron-down {
  font-size: 10px;
  transition: transform .25s ease;
}
.nav-about-wrap.open .nav-about-btn .fa-chevron-down { transform: rotate(180deg); }

.nav-about-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 252px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 40px -10px rgba(15,13,11,.18), 0 4px 12px rgba(15,13,11,.07);
  padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.9,.2,1);
  z-index: 600;
}
.nav-about-wrap.open .nav-about-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-about-dropdown a,
.nav-about-dropdown button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  font-size: 14px; font-weight: 500; color: var(--ink-1);
  text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: var(--font-sans);
  width: 100%; text-align: left;
  transition: background .18s, color .18s;
  line-height: 1;
}
.nav-about-dropdown a:hover,
.nav-about-dropdown button:hover {
  background: var(--bg-2); color: var(--ink-0);
}
.nav-about-dropdown a i,
.nav-about-dropdown button i {
  color: var(--accent); width: 18px; text-align: center; flex-shrink: 0;
}
.nav-about-dropdown .dropdown-divider {
  height: 1px; background: var(--line); margin: 4px 8px;
}
