@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);
}

.button.tertiary {
  border-color: rgba(8, 121, 133, 0.14);
  background: rgba(255, 255, 255, 0.56);
  color: #315965;
}

.button.tertiary:hover {
  border-color: rgba(8, 121, 133, 0.34);
  background: rgba(255, 255, 255, 0.86);
  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,
.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 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.image-panel img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(8, 33, 42, 0.16);
}

.image-panel.phone {
  padding: 0;
}

.image-panel.phone img {
  width: auto;
  max-width: min(100%, 390px);
  max-height: 620px;
  object-fit: contain;
}

.image-panel.hero-phone img {
  max-height: 640px;
}

.image-panel.wide img,
.image-panel.contain img {
  max-height: 620px;
}

.image-panel.cover img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.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;
}

.clarity-strip {
  padding-top: 44px;
}

.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;
}

.journey-list {
  display: grid;
  gap: 12px;
}

.journey-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 14px;
}

.journey-list article > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.journey-list h3 {
  color: #ffffff;
  margin-bottom: 4px;
}

.journey-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.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: visible;
}

.device-stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(8, 33, 42, 0.14);
}

.device-stage.phone-visual {
  display: flex;
  justify-content: center;
  padding: 0;
}

.device-stage.phone-visual img {
  width: auto;
  max-width: min(100%, 360px);
  height: auto;
  max-height: 620px;
  aspect-ratio: auto;
  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: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  justify-self: center;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.home-redesign {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8feff 0%, #ffffff 42%, #eef9f6 100%);
}

.home-hero-v2 {
  position: relative;
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.home-hero-bg,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) blur(1.5px);
  transform: scale(1.02);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 25, 34, 0.96) 0%, rgba(5, 35, 48, 0.84) 46%, rgba(5, 35, 48, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 25, 34, 0.76) 0%, rgba(5, 25, 34, 0.1) 58%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.38fr);
  gap: 38px;
  align-items: end;
  padding: 64px 0 24px;
}

.home-hero-copy {
  max-width: 850px;
}

.home-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-v2 h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.home-hero-v2 p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.58;
}

.home-hero-principle {
  margin-top: 10px;
  border-left: 4px solid var(--lime);
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  backdrop-filter: blur(14px);
}

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

.home-redesign .button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.home-hero-stats {
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(100%, 300px);
}

.home-hero-stats span {
  border-left: 4px solid var(--lime);
  background: rgba(255, 255, 255, 0.13);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.home-command {
  padding: 84px 0 72px;
}

.home-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.home-command-copy h2,
.home-section-title h2,
.home-device-v2 h2,
.home-final-panel h2 {
  font-size: 3rem;
  line-height: 1.03;
}

.home-command-copy p {
  max-width: 680px;
  font-size: 1.05rem;
}

.home-command-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.home-command-points div {
  border-left: 4px solid var(--teal);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px 18px;
  box-shadow: 0 14px 38px rgba(8, 33, 42, 0.06);
}

.home-command-points strong,
.home-command-points span {
  display: block;
}

.home-command-points span {
  margin-top: 4px;
  color: var(--muted);
}

.home-phone-collage {
  position: relative;
  min-height: 720px;
}

.home-phone-collage img {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(8, 33, 42, 0.22);
}

.home-phone-collage .phone-main {
  right: 0;
  top: 0;
  max-height: 700px;
  z-index: 2;
}

.home-phone-collage .phone-side {
  left: 0;
  bottom: 0;
  max-height: 520px;
  opacity: 0.92;
}

.home-visual-band {
  padding: 46px 0 90px;
}

.home-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
}

.home-visual-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(360px, auto) auto;
  background: #ffffff;
  box-shadow: 0 24px 74px rgba(8, 33, 42, 0.12);
}

.home-visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.home-visual-grid article:first-child img {
  object-fit: contain;
  background: linear-gradient(135deg, #f3fffb, #eef7ff);
}

.home-visual-grid article > div {
  padding: 28px;
}

.home-consent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.home-consent-list div {
  border: 1px solid rgba(8, 121, 133, 0.12);
  background: rgba(239, 251, 252, 0.72);
  padding: 14px;
}

.home-consent-list strong,
.home-consent-list span {
  display: block;
}

.home-consent-list strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.home-consent-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.home-visual-grid .home-consent-list span {
  letter-spacing: 0;
  text-transform: none;
}

.home-visual-grid span,
.home-journey-track article > span,
.home-path-list strong {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-journey-v2 {
  padding: 86px 0;
  background: #071923;
  color: #ffffff;
}

.home-journey-v2 h2,
.home-journey-v2 h3 {
  color: #ffffff;
}

.home-journey-v2 p {
  color: rgba(255, 255, 255, 0.74);
}

.home-section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.home-journey-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-journey-track article {
  min-height: 260px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px 18px 10px 0;
}

.home-journey-track article > span {
  color: var(--mint);
}

.home-device-v2 {
  padding: 90px 0;
  background:
    linear-gradient(120deg, #0d3140, #087985 56%, #c7e76e);
  color: #ffffff;
}

.home-device-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
}

.home-device-v2 h2 {
  color: #ffffff;
}

.home-device-v2 p {
  color: rgba(255, 255, 255, 0.82);
}

.home-device-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 62px rgba(3, 18, 24, 0.3));
}

.home-partners-v2 {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff, #eef9fb);
}

.home-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.home-path-list {
  display: grid;
  gap: 12px;
}

.home-path-list a {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(8, 121, 133, 0.13);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(8, 33, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.home-path-list a:hover {
  border-color: rgba(8, 121, 133, 0.34);
  transform: translateY(-2px);
}

.home-path-list strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-path-list span {
  color: var(--muted);
}

.home-final-v2 {
  padding: 72px 0 88px;
}

.home-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
}

.home-final-panel p {
  max-width: 760px;
}

.audience-paths {
  padding-top: 36px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(222, 248, 251, 0.64)),
    linear-gradient(45deg, rgba(8, 121, 133, 0.18), rgba(19, 88, 200, 0.1));
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.audience-card::before {
  position: absolute;
  inset: 24px 24px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 224, 183, 0.42), transparent 68%);
  content: "";
}

.audience-card.partner {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.72)),
    linear-gradient(45deg, rgba(19, 88, 200, 0.14), rgba(185, 232, 93, 0.16));
}

.audience-card > * {
  position: relative;
}

.audience-card span,
.home-highlight-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(8, 121, 133, 0.1);
  padding: 7px 10px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 620px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.08;
}

.audience-card p {
  max-width: 620px;
}

.home-moments {
  padding-top: 56px;
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.home-highlight-card {
  overflow: hidden;
  border: 1px solid rgba(8, 121, 133, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.home-highlight-card:nth-child(1),
.home-highlight-card:nth-child(3),
.home-highlight-card:nth-child(4) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.home-highlight-card > div:last-child {
  padding: 24px;
}

.home-highlight-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 249, 251, 0.82), rgba(255, 255, 255, 0.72)),
    linear-gradient(90deg, rgba(107, 224, 183, 0.2), rgba(19, 88, 200, 0.08));
}

.home-highlight-media img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
}

.home-highlight-card:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(4)) .home-highlight-media img {
  max-height: 320px;
}

.home-highlight-card h3 {
  margin-bottom: 8px;
}

.home-highlight-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.button.primary.light-button,
.button.tertiary.light-button {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: none;
}

.button.primary.light-button:hover,
.button.tertiary.light-button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.visual-showcase {
  padding-top: 70px;
}

.visual-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.visual-card {
  display: grid;
  grid-template-rows: minmax(240px, auto) auto;
  gap: 14px;
  border: 1px solid rgba(8, 121, 133, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(236, 250, 251, 0.48)),
    rgba(255, 255, 255, 0.54);
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.visual-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(8, 33, 42, 0.1);
}

.visual-card > div {
  padding: 0 8px 8px;
}

.visual-card.landscape {
  grid-column: span 2;
}

.visual-card.landscape img {
  width: 100%;
  max-height: 360px;
}

.visual-card h3 {
  margin-bottom: 8px;
}

.visual-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.stage-card,
.inquiry-card,
.cta-band,
.trust-banner {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 251, 252, 0.74)),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stage-card {
  padding: 22px;
}

.stage-card span,
.inquiry-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(8, 121, 133, 0.1);
  padding: 7px 10px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.stage-card p,
.inquiry-card p {
  margin-bottom: 0;
}

.inquiry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.inquiry-card {
  display: block;
  padding: 24px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.inquiry-card:hover {
  border-color: rgba(8, 121, 133, 0.32);
  transform: translateY(-2px);
}

.inquiry-card span {
  margin: 14px 0 0;
}

.partner-heading {
  margin-bottom: 26px;
}

.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));
}

.trust-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list span {
  border: 1px solid rgba(8, 121, 133, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 12px;
  color: var(--teal-dark);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-band .actions {
  flex: 0 0 auto;
  margin-top: 0;
}

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

.glass-panel {
  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);
  padding: 28px;
}

.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,
  .home-hero-inner,
  .home-command-grid,
  .home-visual-grid,
  .home-device-grid,
  .home-partner-grid,
  .home-final-panel,
  .audience-grid,
  .grid.three,
  .grid.four,
  .safety-banner,
  .trust-banner,
  .stage-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

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

  .home-hero-v2 {
    min-height: auto;
  }

  .home-hero-inner {
    padding: 72px 0 38px;
  }

  .home-hero-v2 h1 {
    font-size: 3.45rem;
  }

  .home-hero-stats {
    justify-self: start;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-phone-collage {
    min-height: 640px;
  }

  .home-phone-collage .phone-main {
    right: 4%;
  }

  .home-phone-collage .phone-side {
    left: 4%;
  }

  .home-journey-track {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .home-journey-track article {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 22px 0;
  }

  .home-final-panel .home-actions {
    margin-top: 0;
  }

  .cta-band .actions {
    width: 100%;
  }

  .visual-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-highlight-card:nth-child(1),
  .home-highlight-card:nth-child(3),
  .home-highlight-card:nth-child(4) {
    grid-column: span 2;
  }

  .visual-card.landscape {
    grid-column: span 2;
  }

  .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);
  }

  .home-hero-v2 h1 {
    font-size: 1.9rem;
    line-height: 1.02;
  }

  .home-hero-v2 p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-hero-principle {
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .home-redesign .button {
    min-height: 44px;
    padding: 0 15px;
  }

  .home-hero-inner {
    padding: 26px 0 22px;
  }

  .home-kicker {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .home-hero-stats {
    display: none;
  }

  .home-command,
  .home-visual-band,
  .home-journey-v2,
  .home-device-v2,
  .home-partners-v2,
  .home-final-v2 {
    padding: 52px 0;
  }

  .home-command-copy h2,
  .home-section-title h2,
  .home-device-v2 h2,
  .home-final-panel h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .home-phone-collage {
    min-height: 520px;
  }

  .home-phone-collage .phone-main {
    max-height: 500px;
    right: 0;
  }

  .home-phone-collage .phone-side {
    max-height: 360px;
    left: 0;
  }

  .home-visual-grid article {
    grid-template-rows: auto auto;
  }

  .home-visual-grid img {
    min-height: 260px;
  }

  .home-consent-list {
    grid-template-columns: 1fr;
  }

  .home-device-grid {
    gap: 26px;
  }

  .home-path-list a {
    padding: 18px;
  }

  .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;
  }

  .journey-list article {
    grid-template-columns: 1fr;
  }

  .visual-cards {
    grid-template-columns: 1fr;
  }

  .home-highlight-grid {
    grid-template-columns: 1fr;
  }

  .home-highlight-card,
  .home-highlight-card:nth-child(1),
  .home-highlight-card:nth-child(3),
  .home-highlight-card:nth-child(4) {
    grid-column: auto;
    display: block;
  }

  .home-highlight-media {
    min-height: 210px;
  }

  .home-highlight-media img,
  .home-highlight-card:not(:nth-child(1)):not(:nth-child(3)):not(:nth-child(4)) .home-highlight-media img {
    max-height: 360px;
  }

  .visual-card,
  .visual-card.landscape {
    grid-column: auto;
  }

  .visual-card {
    grid-template-rows: auto auto;
  }

  .visual-card img,
  .visual-card.landscape img,
  .image-panel.phone img,
  .image-panel.hero-phone img {
    max-height: 520px;
  }

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