:root {
  --bg: #08080c;
  --bg-soft: #101017;
  --ink: #f4f4f6;
  --muted: #a1a1b3;
  --line: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.04);
  --coral: #ff5a3c;
  --magenta: #ff2d78;
  --violet: #7c3aed;
  --grad: linear-gradient(120deg, #ff5a3c 0%, #ff2d78 48%, #7c3aed 100%);
  --radius: 20px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- ambient background orbs ---------- */
.orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-1 { width: 460px; height: 460px; background: var(--coral); top: -120px; left: -80px; }
.orb-2 { width: 520px; height: 520px; background: var(--violet); top: 20%; right: -160px; animation-delay: -6s; }
.orb-3 { width: 400px; height: 400px; background: var(--magenta); bottom: -140px; left: 30%; animation-delay: -12s; }

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(40px,-30px,0) scale(1.12); }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(8,8,12,0.6);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; text-decoration: none; color: var(--ink); }
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 16px rgba(255,45,120,0.7); }
.tabs { display: flex; gap: 6px; align-items: center; }
.tab {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: 15px;
  padding: 8px 16px; border-radius: 999px; transition: color .15s, background .15s;
}
.tab:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.tab.active { color: var(--ink); background: rgba(255,255,255,0.08); }
.tab.soon { opacity: 0.45; pointer-events: none; }
.tab.soon::after { content: "soon"; font-size: 10px; margin-left: 6px; padding: 2px 6px; border-radius: 6px; background: rgba(255,255,255,0.1); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; margin-bottom: 24px;
  background: var(--glass);
}
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 1.02rem;
  text-decoration: none; padding: 16px 30px; border-radius: 999px;
  box-shadow: 0 10px 40px rgba(255,45,120,0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(255,45,120,0.5); }
.cta .wa { width: 20px; height: 20px; }

.ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; text-decoration: none;
  padding: 15px 26px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--glass); transition: background .15s;
}
.ghost:hover { background: rgba(255,255,255,0.08); }

section { position: relative; z-index: 1; }

/* ---------- umbrella hero ---------- */
.hero { text-align: center; padding: 120px 0 90px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.02; margin: 0 0 24px;
}
.hero p.sub { max-width: 600px; margin: 0 auto 40px; color: var(--muted); font-size: 1.2rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- verticals grid ---------- */
.verticals { padding: 40px 0 110px; }
.vhead { text-align: center; margin-bottom: 54px; }
.vhead h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 12px; }
.vhead p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  position: relative; display: block; text-decoration: none; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  background: var(--glass); overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.vcard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .25s;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,0%), rgba(255,90,60,0.14), transparent 60%);
}
.vcard:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.vcard:hover::before { opacity: 1; }
.vcard.live .badge { background: var(--grad); color: #fff; }
.vcard.soon { opacity: 0.6; }
.vcard .icon { font-size: 34px; margin-bottom: 18px; }
.vcard h3 { font-size: 1.35rem; margin: 0 0 8px; letter-spacing: -0.02em; }
.vcard p { color: var(--muted); margin: 0 0 20px; font-size: 0.98rem; }
.badge {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: var(--muted);
}
.vcard .arrow { position: absolute; top: 28px; right: 28px; color: var(--muted); font-size: 20px; transition: transform .2s, color .2s; }
.vcard.live:hover .arrow { transform: translate(4px,-4px); color: var(--ink); }

/* ---------- eSIM page ---------- */
.esim-hero { padding: 110px 0 70px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.esim-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.03; margin: 0 0 22px; }
.esim-hero p.sub { color: var(--muted); font-size: 1.18rem; margin: 0 0 34px; max-width: 520px; }
.esim-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.trust div { display: flex; flex-direction: column; }
.trust b { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.trust span { color: var(--muted); font-size: 0.88rem; }

.phone-card {
  border: 1px solid var(--line); border-radius: 28px; background: var(--bg-soft);
  padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.chat { display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 82%; padding: 12px 16px; border-radius: 18px; font-size: 0.95rem; line-height: 1.35; }
.bubble.them { background: rgba(255,255,255,0.06); border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble.me { background: var(--grad); color: #fff; border-bottom-right-radius: 6px; align-self: flex-end; }

/* ---------- how ---------- */
.how { padding: 90px 0; border-top: 1px solid var(--line); }
.how h2, .plans h2 { text-align: center; font-size: clamp(1.8rem,4vw,2.4rem); font-weight: 800; letter-spacing: -0.03em; margin: 0 0 54px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; background: var(--glass); }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: var(--grad); font-weight: 800; margin-bottom: 18px; }
.step h3 { margin: 0 0 8px; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- plans ---------- */
.plans { padding: 30px 0 110px; }
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 44px; }
.plan-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  background: var(--glass); text-align: center; transition: transform .2s, border-color .2s;
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); }
.plan-card .region { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.plan-card .flag { font-size: 30px; margin-bottom: 14px; }
.plan-card .price { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; }
.plan-card .price small { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.plan-card .detail { color: var(--muted); font-size: 0.92rem; margin: 0; }
.plans .center { text-align: center; }

/* ---------- footer ---------- */
.foot { padding: 50px 0; border-top: 1px solid var(--line); text-align: center; color: var(--muted); font-size: 0.9rem; }
.foot .brand { justify-content: center; margin-bottom: 12px; }

@media (max-width: 820px) {
  .vgrid, .steps, .plan-grid { grid-template-columns: 1fr; }
  .esim-hero { grid-template-columns: 1fr; }
  .tabs .tab.soon { display: none; }
}
