:root {
  --blue: #1595f5;
  --blue-deep: #0867e8;
  --blue-soft: #e8f4fe;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --line: #dbe4f0;
  --surface: #ffffff;
  --bg: #f4f8fc;
  --bg-2: #eef4fb;
  --ok: #0f9f6e;
  --danger: #d64545;
  --radius: 18px;
  --max: 1120px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --shadow: 0 18px 50px rgba(8, 103, 232, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(21, 149, 245, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(8, 103, 232, 0.12), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 40%, #f9fbfe 100%);
  line-height: 1.55;
  min-height: 100vh;
}

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

a {
  color: var(--blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue);
}

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

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 255, 0.78);
  border-bottom: 1px solid rgba(219, 228, 240, 0.7);
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

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

.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(8, 103, 232, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(8, 103, 232, 0.3);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(21, 149, 245, 0.2), transparent 60%),
    linear-gradient(160deg, rgba(8, 103, 232, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: var(--ink);
  background: linear-gradient(120deg, var(--ink) 30%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-2);
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(8, 103, 232, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

/* Phone mock */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone {
  width: min(290px, 78vw);
  aspect-ratio: 9 / 19.2;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(160deg, #1a2433, #0b1220);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  position: relative;
  z-index: 2;
  animation: float-in 0.9s ease both;
}

.phone-screen {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc, #eef3f9);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 0.72rem;
}

.phone-notch {
  width: 38%;
  height: 18px;
  margin: 8px auto 0;
  background: #0b1220;
  border-radius: 0 0 12px 12px;
}

.phone-pad {
  padding: 0.85rem 0.95rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ph-label {
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.ph-balance {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.ph-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.ph-pill {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
}

.ph-pill strong {
  display: block;
  font-size: 0.8rem;
}

.ph-pill span {
  color: var(--muted);
  font-size: 0.62rem;
}

.ph-up {
  color: var(--ok);
}

.ph-down {
  color: var(--danger);
}

.ph-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem 0.55rem;
}

.ph-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.15rem;
  border-bottom: 1px solid #eef2f7;
}

.ph-item:last-child {
  border-bottom: 0;
}

.ph-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 149, 245, 0.35), transparent 68%);
  filter: blur(8px);
  z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}

.hero-badge-mark {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: float-in 1.1s 0.15s ease both;
}

.hero-badge-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.section-head p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.privacy-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.strip-item {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.strip-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.strip-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.feature {
  grid-column: span 4;
  padding: 1.5rem 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.65));
  border: 1px solid var(--line);
  min-height: 160px;
}

.feature.wide {
  grid-column: span 6;
}

.feature .mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

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

.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.screen-panel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.35s ease;
}

.screen-panel:hover {
  transform: translateY(-4px);
}

.screen-top {
  padding: 1.1rem 1.1rem 0.2rem;
}

.screen-top h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.screen-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-ui {
  margin: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f9fc, #eef3f9);
  border: 1px solid #e4ebf4;
  padding: 0.9rem;
  min-height: 210px;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #e2eaf4;
  overflow: hidden;
  margin: 0.45rem 0 0.8rem;
}

.bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  border-radius: inherit;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  padding: 1.3rem 1.15rem;
  border-top: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.55);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  color: var(--blue-deep);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  margin: 1rem 0 4rem;
  border-radius: 28px;
  padding: 2.5rem;
  background:
    radial-gradient(600px 200px at 10% 0%, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, #0b63d8, #1595f5 55%, #3aa8ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--display);
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  max-width: 34rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: none;
}

/* Legal / support pages */
.page-hero {
  padding: 3.2rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: var(--ink-2);
  max-width: 40rem;
}

.legal {
  padding: 0 0 4rem;
}

.legal article {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.legal h2 {
  font-size: 1.2rem;
  margin: 1.6rem 0 0.55rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  color: var(--ink-2);
}

.legal ul {
  padding-left: 1.2rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  padding-bottom: 4rem;
}

.panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
}

.panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: var(--bg-2);
}

.contact-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
  background: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--blue-deep);
}

.footer-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1.2rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-visual {
    min-height: 460px;
    order: -1;
  }

  .privacy-strip,
  .screens,
  .steps {
    grid-template-columns: 1fr;
  }

  .features .feature,
  .features .feature.wide {
    grid-column: span 12;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 1.25rem;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.85rem;
    min-width: 200px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}

/* Privacy language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 103, 232, 0.08);
}

.lang-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-switch__btn:hover {
  color: var(--blue-deep);
}

.lang-switch__btn.is-active {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

