:root {
  --sand: #f6eef2;
  --blush: #fff8fa;
  --ink: #171214;
  --ink-soft: #7a6f74;
  --terracotta: #ff4d80;
  --terracotta-dark: #e03a6c;
  --gold: #f0b429;
  --gold-light: #ffe08a;
  --gold-deep: #c48412;
  --leaf: #2f6f5e;
  --online: #34d399;
  --card: #1c1619;
  --line: rgba(232, 216, 223, 0.16);
  --bg: #0c090b;
  --bg-2: #141013;
  --text: #f7eef2;
  --muted: #b7a8af;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --nav-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-feature-settings: "ss01" on;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 12% -10%, rgba(255, 77, 128, 0.22), transparent 55%),
    radial-gradient(800px 500px at 100% 8%, rgba(240, 180, 41, 0.12), transparent 50%),
    radial-gradient(700px 500px at 50% 100%, rgba(255, 77, 128, 0.08), transparent 55%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--terracotta);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(12, 9, 11, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #ff6b96, var(--terracotta));
  color: #fff;
  padding: 12px 20px;
  box-shadow: 0 10px 28px rgba(255, 77, 128, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(255, 77, 128, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 12px 18px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 15px 24px;
  font-size: 16px;
}

.nav-cta {
  display: inline-flex;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 77, 128, 0.1);
  border: 1px solid rgba(255, 77, 128, 0.22);
  color: #ffb3c7;
  font-size: 13px;
  font-weight: 650;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.15);
  animation: pulse 1.8s ease infinite;
}

h1,
.h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.grad {
  background: linear-gradient(110deg, #fff 10%, #ff8fb0 48%, #f0b429 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.store {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 10px 16px;
  border-radius: 16px;
  background: #fff;
  color: #111;
}

.store small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.55;
}

.store strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Phone */
.stage {
  position: relative;
  min-height: 640px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

.orb-a {
  width: 220px;
  height: 220px;
  background: #ff4d80;
  top: 40px;
  left: 10px;
}

.orb-b {
  width: 180px;
  height: 180px;
  background: #f0b429;
  right: 20px;
  bottom: 80px;
  animation-delay: -3s;
}

.phone {
  position: relative;
  width: 290px;
  height: 600px;
  margin: 0 auto;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(180deg, #2a2226, #151013);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: lift 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 96px;
  height: 18px;
  transform: translateX(-50%);
  background: #0c090b;
  border-radius: 20px;
  z-index: 3;
}

.screen {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 250, 0.04), transparent 30%),
    #1a1417;
  position: relative;
}

.screen-top {
  padding: 34px 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.cards {
  position: relative;
  height: 330px;
  margin: 8px 16px 0;
}

.card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #2a2226;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 16px 16px;
  background: linear-gradient(transparent, rgba(10, 7, 9, 0.92));
}

.card-meta strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.card-meta span {
  color: #ffd7e2;
  font-size: 13px;
}

.card-1 {
  transform: rotate(-6deg) translate(-18px, 10px);
  animation: card1 7s ease-in-out infinite;
}

.card-2 {
  transform: rotate(5deg) translate(16px, 4px);
  animation: card2 7s ease-in-out infinite;
}

.chat-preview {
  margin: 16px;
  display: grid;
  gap: 8px;
}

.bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
}

.bubble.them {
  background: #2b2327;
  border-bottom-left-radius: 6px;
}

.bubble.me {
  margin-left: auto;
  background: linear-gradient(180deg, #ff6b96, var(--terracotta));
  border-bottom-right-radius: 6px;
}

.bubble.voice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.wave i {
  width: 3px;
  background: #fff;
  border-radius: 99px;
  animation: bar 1s ease-in-out infinite;
}

.wave i:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.wave i:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.wave i:nth-child(4) { animation-delay: 0.3s; height: 55%; }
.wave i:nth-child(5) { animation-delay: 0.15s; height: 80%; }

.float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(28, 22, 25, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow);
}

.chip-a {
  top: 48px;
  right: -18px;
  animation: float 5.5s ease-in-out infinite;
}

.chip-b {
  bottom: 88px;
  left: -28px;
  animation: float 6.5s ease-in-out infinite reverse;
}

.flag {
  font-size: 16px;
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.section-kicker {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 77, 128, 0.14);
  color: #ff8eae;
  font-weight: 750;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(240, 180, 41, 0.12);
  color: var(--gold);
}

.feature:nth-child(2n) .feature-icon {
  background: rgba(255, 77, 128, 0.12);
  color: #ff8fb0;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.corridor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 8px 0;
}

.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(255, 77, 128, 0.14), rgba(240, 180, 41, 0.12));
  border: 1px solid var(--line);
}

.country {
  text-align: center;
}

.country .big {
  font-size: 42px;
}

.country strong {
  display: block;
  margin-top: 6px;
}

.line-anim {
  flex: 1;
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, #ff4d80, #f0b429);
  overflow: visible;
}

.line-anim::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
  animation: travel 2.4s linear infinite;
}

.safety {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.cta-band {
  padding: 72px 0 20px;
}

.cta-card {
  border-radius: 36px;
  padding: 48px 40px;
  background:
    linear-gradient(135deg, rgba(255, 77, 128, 0.18), rgba(240, 180, 41, 0.1)),
    var(--card);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
}

footer {
  position: relative;
  z-index: 1;
  padding: 48px 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.foot nav {
  display: flex;
  gap: 18px;
}

.foot a:hover {
  color: var(--text);
}

/* Legal */
.legal-hero {
  padding: 48px 0 12px;
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.legal-meta {
  color: var(--muted);
}

.legal-body {
  position: relative;
  z-index: 1;
  padding: 24px 0 80px;
  max-width: 760px;
}

.legal-body h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.legal-body p,
.legal-body li {
  color: #d9ccd2;
}

.legal-body ul {
  padding-left: 20px;
}

.legal-body strong {
  color: #fff;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }
.d5 { animation-delay: 0.4s; }

.inview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.inview.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes lift {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
}

@keyframes travel {
  from { left: 0; }
  to { left: calc(100% - 12px); }
}

@keyframes bar {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}

@keyframes card1 {
  0%, 100% { transform: rotate(-6deg) translate(-18px, 10px); }
  50% { transform: rotate(-8deg) translate(-22px, 0); }
}

@keyframes card2 {
  0%, 100% { transform: rotate(5deg) translate(16px, 4px); }
  50% { transform: rotate(7deg) translate(20px, 14px); }
}

@media (max-width: 900px) {
  .hero-grid,
  .corridor,
  .cta-card,
  .steps,
  .features {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 20px 24px 28px;
    background: rgba(12, 9, 11, 0.96);
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .stage {
    min-height: 580px;
  }

  .phone {
    width: 260px;
    height: 540px;
  }

  .chip-a,
  .chip-b {
    display: none;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .inview {
    opacity: 1;
    transform: none;
  }
}
