:root {
  --navy: #173b72;
  --navy-deep: #10284d;
  --blue: #39b8f3;
  --blue-soft: #8bd8ff;
  --ice: #eef5ff;
  --mist: #dce9fb;
  --text: #16233a;
  --muted: #5b6a82;
  --white: #ffffff;
  --border: rgba(23, 59, 114, 0.12);
  --shadow: 0 22px 50px rgba(16, 40, 77, 0.12);
  --shadow-soft: 0 14px 35px rgba(17, 51, 97, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 184, 243, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 59, 114, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, var(--ice) 54%, #f8fbff 100%);
}

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

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

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(23, 59, 114, 0.08);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header .container {
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.header-links a:hover,
.footer-links a:hover,
.link-arrow:hover {
  color: var(--navy);
}

.hero {
  position: relative;
  padding: 54px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 40px auto auto 50%;
  width: min(760px, 78vw);
  height: 760px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(57, 184, 243, 0.2), rgba(57, 184, 243, 0) 66%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(57, 184, 243, 0.12);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 9vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  color: var(--navy-deep);
}

.hero p,
.section-copy p,
.page-intro,
.legal-copy p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--navy) 0%, #2458a5 100%);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(23, 59, 114, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-color: rgba(23, 59, 114, 0.12);
  box-shadow: var(--shadow-soft);
}

.support-note {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  padding: 20px;
}

.hero-card {
  position: relative;
  padding: 30px;
  border-radius: 36px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(236, 244, 255, 0.9)),
    linear-gradient(130deg, rgba(57, 184, 243, 0.08), rgba(23, 59, 114, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 184, 243, 0.18), rgba(57, 184, 243, 0));
}

.stage-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.stage-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy-deep);
}

.stage-copy p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.badge-cluster {
  display: grid;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(23, 59, 114, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-stack {
  display: grid;
  grid-template-columns: 0.92fr 0.68fr;
  gap: 18px;
  align-items: end;
}

.phone,
.mini-phone {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(180deg, #21314c 0%, #141f33 100%);
  padding: 12px;
  box-shadow: 0 28px 48px rgba(16, 40, 77, 0.2);
}

.phone {
  min-height: 620px;
}

.mini-phone {
  min-height: 420px;
  transform: translateY(28px);
}

.phone-screen,
.mini-screen {
  height: 100%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(241, 246, 255, 0.95), rgba(255, 255, 255, 0.97)),
    linear-gradient(140deg, rgba(57, 184, 243, 0.08), rgba(23, 59, 114, 0.06));
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 126px;
  height: 30px;
  border-radius: 999px;
  background: #0e1625;
  margin: 14px auto 18px;
}

.screen-inner {
  padding: 0 18px 18px;
}

.appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.appbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

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

.icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 59, 114, 0.08);
  background: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 59, 114, 0.08);
  color: #7a879c;
  font-size: 14px;
}

.tab-row {
  display: flex;
  gap: 10px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 59, 114, 0.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}

.tab.active {
  background: linear-gradient(135deg, var(--navy) 0%, #2458a5 100%);
  color: var(--white);
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 59, 114, 0.08);
}

.product-art {
  aspect-ratio: 1.15;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(57, 184, 243, 0.18), transparent 38%),
    linear-gradient(145deg, #ffffff, #e9f2ff);
  border: 1px solid rgba(23, 59, 114, 0.08);
  position: relative;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  border: 4px solid rgba(17, 28, 44, 0.82);
  border-radius: 50%;
  width: 38%;
  height: 28%;
  top: 44%;
}

.product-art::before {
  left: 12%;
}

.product-art::after {
  right: 12%;
}

.bridge {
  position: absolute;
  top: 55%;
  left: 45%;
  width: 10%;
  height: 4px;
  background: rgba(17, 28, 44, 0.82);
}

.temple-left,
.temple-right {
  position: absolute;
  top: 51%;
  width: 14%;
  height: 4px;
  background: rgba(17, 28, 44, 0.82);
}

.temple-left {
  left: 0;
  transform: rotate(-18deg);
}

.temple-right {
  right: 0;
  transform: rotate(18deg);
}

.product-meta {
  margin-top: 10px;
}

.product-meta strong {
  display: block;
  font-size: 13px;
  color: var(--navy-deep);
}

.product-meta span {
  color: #f16f56;
  font-size: 13px;
  font-weight: 800;
}

.mini-details {
  padding: 0 14px 14px;
}

.mini-rows {
  display: grid;
  gap: 10px;
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 59, 114, 0.08);
}

.mini-row strong {
  color: var(--navy-deep);
  font-size: 14px;
}

.mini-row span {
  color: var(--blue);
  font-weight: 800;
}

.brand-strip,
.stats-grid,
.experience-grid,
.trust-strip,
.legal-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.section {
  padding: 26px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2,
.cta-panel h2,
.legal-shell h1,
.contact-shell h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--navy-deep);
}

.section-kicker {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-pill,
.trust-card,
.contact-card,
.legal-nav a,
.stat-card,
.experience-card {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.brand-pill {
  padding: 18px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 28px;
  border-radius: 26px;
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.experience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-card {
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;
}

.experience-visual {
  min-height: 320px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.94), rgba(234, 243, 255, 0.88)),
    linear-gradient(180deg, #e8f4ff 0%, #dfeaf8 100%);
  border: 1px solid rgba(23, 59, 114, 0.08);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.experience-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 184, 243, 0.2), rgba(57, 184, 243, 0));
}

.experience-phone {
  max-width: 230px;
  margin: 16px auto 0;
  min-height: 280px;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, #202e48 0%, #0f1727 100%);
  box-shadow: 0 24px 44px rgba(16, 40, 77, 0.22);
}

.experience-screen {
  border-radius: 20px;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.98), rgba(236, 244, 255, 0.98));
  padding: 14px;
}

.experience-screen .phone-notch {
  width: 92px;
  height: 22px;
  margin-bottom: 14px;
}

.experience-screen h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 18px;
}

.experience-screen p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mini-box {
  min-height: 62px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 59, 114, 0.08);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.mini-list span {
  min-height: 44px;
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 59, 114, 0.08);
}

.experience-copy h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  color: var(--navy-deep);
}

.experience-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  padding: 24px;
  border-radius: 24px;
}

.trust-card strong {
  display: block;
  font-size: 18px;
  color: var(--navy-deep);
}

.trust-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  margin: 30px 0 64px;
  padding: 38px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(15, 32, 63, 0.96), rgba(26, 66, 125, 0.92)),
    linear-gradient(135deg, rgba(57, 184, 243, 0.16), rgba(255, 255, 255, 0));
  color: var(--white);
  box-shadow: 0 28px 55px rgba(16, 40, 77, 0.24);
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 184, 243, 0.34), rgba(57, 184, 243, 0));
}

.cta-panel p,
.cta-panel .support-note {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 0 0 40px;
}

.footer-panel {
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-meta {
  color: var(--muted);
  font-size: 14px;
}

.page-hero,
.legal-shell,
.contact-shell {
  padding: 56px 0 30px;
}

.page-hero-card,
.legal-card,
.contact-card {
  padding: 34px;
  border-radius: 30px;
}

.page-hero-card,
.legal-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
}

.legal-nav a {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
  color: var(--muted);
}

.legal-nav a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #2458a5 100%);
}

.legal-copy h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  color: var(--navy-deep);
}

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

.legal-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 26px;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--navy-deep);
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .brand-strip,
  .stats-grid,
  .experience-grid,
  .trust-strip,
  .legal-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-header .container,
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .container {
    padding: 16px 0;
  }

  .header-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 58px;
  }

  .hero p,
  .section-copy p,
  .page-intro,
  .legal-copy p,
  .contact-card p {
    font-size: 16px;
  }

  .phone-stack,
  .brand-strip,
  .stats-grid,
  .experience-grid,
  .trust-strip,
  .legal-grid,
  .contact-grid,
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .phone,
  .mini-phone {
    min-height: auto;
    transform: none;
  }

  .cta-panel,
  .hero-card,
  .page-hero-card,
  .legal-card,
  .contact-card,
  .footer-panel,
  .experience-card {
    padding: 24px;
  }
}
