@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --bg: #f5fbfc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #08212a;
  --muted: #526d75;
  --line: rgba(9, 113, 128, 0.16);
  --teal: #087985;
  --teal-dark: #075763;
  --blue: #1358c8;
  --cyan: #39c4d8;
  --mint: #6be0b7;
  --lime: #b9e85d;
  --navy: #071923;
  --shadow: 0 24px 70px rgba(8, 33, 42, 0.14);
  --shadow-soft: 0 16px 42px rgba(8, 33, 42, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(120deg, rgba(57, 196, 216, 0.16) 0 18%, transparent 18% 100%),
    linear-gradient(240deg, rgba(185, 232, 93, 0.16) 0 14%, transparent 14% 100%),
    linear-gradient(180deg, #f8feff 0%, #eef8fb 48%, #ffffff 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 121, 133, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(8, 121, 133, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(9, 113, 128, 0.12);
  background: rgba(248, 254, 255, 0.84);
  backdrop-filter: blur(22px);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
  color: #43636d;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(8, 121, 133, 0.1);
  color: var(--teal-dark);
}

.nav-links .cta-link,
.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(8, 121, 133, 0.22);
}

.nav-links .cta-link:hover,
.button.primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero {
  padding: 64px 0 48px;
}

.glossy-hero {
  position: relative;
  overflow: hidden;
}

.glossy-hero::before {
  position: absolute;
  inset: 24px 5vw auto;
  height: 72%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(226, 248, 251, 0.48)),
    linear-gradient(90deg, rgba(8, 121, 133, 0.1), rgba(19, 88, 200, 0.08));
  box-shadow: var(--shadow-soft);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2.55rem, 6vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 720px;
  color: #355963;
  font-size: 1.16rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.secondary {
  border-color: rgba(8, 121, 133, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(8, 33, 42, 0.06);
}

.button.secondary:hover {
  border-color: rgba(8, 121, 133, 0.38);
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(8, 121, 133, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: #365d66;
  font-size: 0.84rem;
  font-weight: 800;
}

.phone-stage,
.app-showcase,
.dashboard-panel,
.image-panel,
.contact-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(229, 249, 251, 0.7));
  box-shadow: var(--shadow);
}

.phone-stage {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 22px;
}

.app-showcase {
  min-height: 570px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 28px;
  overflow: hidden;
}

.phone-frame {
  overflow: hidden;
  border: 8px solid #08212a;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(8, 33, 42, 0.22);
}

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

.primary-phone {
  width: min(78%, 300px);
  aspect-ratio: 575 / 1280;
  transform: translateX(-54px) rotate(-2deg);
}

.secondary-phone {
  position: absolute;
  right: 30px;
  bottom: 34px;
  width: min(45%, 184px);
  aspect-ratio: 575 / 1280;
  transform: rotate(3deg);
}

.phone-shell {
  width: min(100%, 310px);
  border: 10px solid #08212a;
  border-radius: 34px;
  background: linear-gradient(180deg, #f9ffff, #eaf9f4);
  padding: 18px;
  box-shadow: 0 28px 70px rgba(8, 33, 42, 0.22);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.phone-top span {
  color: var(--muted);
  font-weight: 800;
}

.phone-top strong {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  color: #063f43;
  font-size: 1.3rem;
}

.health-meter {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.health-meter img {
  width: 100%;
  height: 76px;
  object-fit: cover;
}

.insight-card,
.ai-card,
.glass-card,
.policy-card,
.safety-banner,
.contact-panel a {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(239, 251, 252, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.insight-card {
  margin-top: 14px;
  padding: 14px;
}

.insight-card span,
.ai-card span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card p {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.app-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.app-tiles div,
.mini-grid div {
  border: 1px solid rgba(8, 121, 133, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px;
}

.app-tiles strong,
.mini-grid strong {
  display: block;
  color: var(--ink);
}

.app-tiles span,
.mini-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.floating-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 14px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.chip-one {
  top: 58px;
  right: 24px;
}

.chip-two {
  bottom: 70px;
  left: 18px;
}

.dashboard-panel {
  padding: 28px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-header span,
.dash-row span {
  color: var(--muted);
  font-weight: 700;
}

.dash-header strong,
.dash-row strong {
  color: var(--teal-dark);
}

.dash-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0;
  border: 1px solid rgba(8, 121, 133, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
}

.dash-chart {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 88, 200, 0.08), rgba(107, 224, 183, 0.18));
  padding: 18px;
}

.dash-chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.dash-chart span:nth-child(1) { height: 42%; }
.dash-chart span:nth-child(2) { height: 62%; }
.dash-chart span:nth-child(3) { height: 50%; }
.dash-chart span:nth-child(4) { height: 78%; }
.dash-chart span:nth-child(5) { height: 66%; }

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.image-panel.contain {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
}

.image-panel.contain img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 620px;
  object-fit: contain;
  padding: 20px;
  background: #ffffff;
}

.image-panel.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.image-panel.phone img {
  width: auto;
  height: auto;
  min-height: 0;
  max-height: 620px;
  object-fit: contain;
  border: 8px solid #08212a;
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(8, 33, 42, 0.18);
}

.contact-panel {
  padding: 26px;
}

.contact-panel a {
  display: block;
  margin-top: 12px;
  padding: 16px;
  text-decoration: none;
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 62px 0;
}

.section-heading {
  padding-bottom: 24px;
}

.section-tight {
  padding: 0 0 54px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.glass-card {
  padding: 24px;
}

.glass-card p {
  margin-bottom: 0;
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.glossy-band {
  background: linear-gradient(135deg, #06232f, #087985 58%, #1358c8);
  color: #ffffff;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.glossy-band h2,
.glossy-band h3 {
  color: #ffffff;
}

.glossy-band p {
  color: rgba(255, 255, 255, 0.78);
}

.ai-stack {
  display: grid;
  gap: 14px;
}

.ai-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.ai-card p {
  margin-bottom: 0;
}

.media-story,
.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
  gap: 36px;
  align-items: center;
}

.media-story.reverse {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 0.82fr);
}

.story-copy {
  max-width: 640px;
}

.rich-list,
.policy-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.device-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.device-stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ffffff;
}

.device-stage.phone-visual {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.device-stage.phone-visual img {
  width: auto;
  max-width: min(100%, 360px);
  height: auto;
  max-height: 620px;
  aspect-ratio: auto;
  border: 8px solid #08212a;
  border-radius: 30px;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(8, 33, 42, 0.16);
}

.device-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.device-card strong,
.device-card span {
  display: block;
}

.device-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.app-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(225, 248, 251, 0.64));
}

.app-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.timeline-item > span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: var(--navy);
  font-weight: 900;
}

.policy-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(220, 248, 251, 0.72));
}

.policy-page {
  max-width: 920px;
}

.policy-card {
  margin-bottom: 14px;
  padding: 24px;
}

.policy-card p {
  margin-bottom: 0;
}

.policy-card .policy-list {
  margin-top: 0;
}

.policy-meta {
  color: var(--teal-dark);
  font-weight: 900;
}

.safety-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 222, 0.78));
}

.wide-copy {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #eef9fb);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.2fr);
  gap: 32px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0;
}

.footer-mail {
  color: var(--teal-dark);
  font-weight: 900;
}

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

.footer-links-grid h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
}

.footer-links-grid a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  text-decoration: none;
}

.footer-links-grid a:hover {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero-grid,
  .section-header,
  .band-grid,
  .media-story,
  .media-story.reverse,
  .app-grid,
  .footer-main,
  .grid.three,
  .grid.four,
  .safety-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .phone-stage {
    min-height: auto;
  }

  .app-showcase {
    min-height: 540px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 24px, 1160px);
  }

  .brand-mark {
    width: 112px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .hero-proof,
  .floating-chip {
    display: none;
  }

  .phone-shell {
    border-width: 7px;
    border-radius: 26px;
  }

  .app-showcase {
    min-height: 520px;
    padding: 18px;
  }

  .primary-phone {
    width: min(72%, 255px);
    transform: translateX(-34px) rotate(-2deg);
  }

  .secondary-phone {
    right: 18px;
    bottom: 26px;
    width: min(45%, 160px);
  }

  .mini-grid,
  .app-tiles,
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .device-card {
    position: static;
    max-width: none;
    margin: 12px;
  }
}
