:root {
  --navy: #062a67;
  --navy-2: #0a3979;
  --teal: #08aeb2;
  --teal-dark: #078f95;
  --teal-soft: #e5f7f5;
  --coral: #ff675f;
  --coral-soft: #fff0ed;
  --mint: #edf9f7;
  --mint-2: #dff3f0;
  --white: #ffffff;
  --text: #536481;
  --muted: #73809a;
  --line: #d9ebe9;
  --shadow-sm: 0 8px 24px rgba(6, 42, 103, 0.08);
  --shadow-md: 0 18px 50px rgba(6, 42, 103, 0.12);
  --radius-sm: 6px;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(8, 174, 178, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 900;
}

h1 span,
.hero-compact h1 span {
  color: var(--teal);
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
}

p {
  color: var(--text);
}

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

.container.narrow {
  max-width: 820px;
}

.section {
  padding: 104px 0;
}

.centered {
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 58px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 80px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 235, 233, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  padding: 26px 0 23px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 9px 18px rgba(8, 174, 178, 0.18);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-outline {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--white);
}

.button-outline:hover {
  background: var(--mint);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button-row-center {
  flex-direction: column;
  gap: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: var(--white);
}

.hero-home {
  padding: 60px 0 0;
}

.hero-story {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 280px minmax(360px, 1fr) 280px;
  align-items: center;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy-center {
  align-self: start;
  padding-top: 44px;
  text-align: center;
}

.hero-copy-center h1 {
  font-size: 60px;
}

.hero-copy-center p {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 20px;
}

.phone-stage {
  position: relative;
  z-index: 2;
}

.phone-shell {
  overflow: hidden;
  border: 4px solid var(--navy);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.phone-shell img {
  width: 100%;
}

.phone-teal {
  border-color: var(--teal);
}

.phone-coral {
  border-color: var(--coral);
}

.phone-tilt-left {
  transform: rotate(-4deg);
}

.phone-tilt-right {
  transform: rotate(4deg);
}

.phone-small {
  width: 250px;
}

.phone-stage-left {
  align-self: start;
}

.phone-stage-right {
  align-self: start;
}

.journey-path {
  position: absolute;
  z-index: 1;
  bottom: -240px;
  left: 50%;
  width: 640px;
  transform: translateX(-50%);
}

.hero-orbit {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 20px solid;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-orbit-teal {
  top: 130px;
  left: -110px;
  border-color: var(--teal);
}

.hero-orbit-coral {
  right: -110px;
  bottom: 70px;
  border-color: var(--coral);
}

.rhythm-intro {
  background: var(--mint);
}

.steps {
  display: grid;
  gap: 24px;
}

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

.step {
  position: relative;
  text-align: center;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 42px;
  left: calc(50% + 48px);
  width: calc(100% - 72px);
  border-top: 2px dotted #a8dcd8;
  content: "";
}

.step .icon-disc,
.icon-disc {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.icon-disc img {
  width: 58px;
}

.icon-disc svg {
  width: 35px;
  height: 35px;
}

.step-buddy .icon-disc,
.step-buddy strong {
  color: var(--coral);
}

.step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.step p {
  margin: 0;
  font-size: 14px;
}

.product-focus {
  overflow: hidden;
}

.split-product {
  grid-template-columns: 0.9fr 1.1fr;
}

.content-block {
  max-width: 540px;
}

.content-block > p {
  margin-bottom: 28px;
  font-size: 18px;
}

.product-screen {
  justify-self: center;
  width: min(100%, 380px);
  filter: drop-shadow(0 20px 35px rgba(6, 42, 103, 0.12));
}

.single-screen {
  max-height: 680px;
  overflow: hidden;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  width: 20px;
  color: var(--teal);
}

.check-list.compact {
  gap: 9px;
  font-size: 14px;
}

.privacy-band {
  padding: 82px 0;
  background: var(--mint);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 70px;
}

.privacy-art {
  width: 240px;
}

.privacy-columns {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
}

.privacy-columns h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.privacy-columns h3 svg {
  width: 22px;
  color: var(--teal);
}

.privacy-columns ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--text);
}

.hidden-list h3,
.hidden-list h3 svg {
  color: var(--coral);
}

.premium-teaser {
  padding-bottom: 82px;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-rail article {
  padding: 34px 42px;
}

.feature-rail article + article {
  border-left: 1px solid var(--line);
}

.feature-rail svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--teal);
}

.feature-rail p {
  margin-bottom: 0;
}

.centered-action {
  margin-top: 38px;
  text-align: center;
}

.final-cta {
  padding: 42px 0;
  background: var(--mint);
}

.cta-layout {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta-layout img {
  width: 72px;
}

.cta-layout h2 {
  margin-bottom: 5px;
  font-size: 28px;
}

.cta-layout p {
  margin-bottom: 0;
}

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand p {
  max-width: 280px;
  margin: 14px 0 0;
  font-size: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* How it works */
.hero-compact {
  min-height: 540px;
  padding: 24px 0 0;
  background: var(--white);
}

.how-hero-grid {
  display: grid;
  min-height: 515px;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  align-items: end;
  gap: 36px;
}

.how-hero-phone {
  width: 230px;
  margin-bottom: -8px;
}

.hero-compact-inner {
  align-self: start;
  padding-top: 38px;
}

.hero-compact-inner h1 {
  font-size: 62px;
}

.hero-compact-inner h1 span {
  color: var(--coral);
}

.hero-compact-inner p {
  font-size: 20px;
}

.journey-path-static {
  position: static;
  width: 650px;
  margin: -145px auto -175px;
  clip-path: inset(30% 0);
  transform: none;
}

.journey-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.journey-section:nth-child(odd) {
  background: #fbfefd;
}

.journey-section-coral {
  background: #fffcfb;
}

.journey-grid {
  display: grid;
  grid-template-columns: 90px 1fr 360px;
  align-items: center;
  gap: 54px;
}

.journey-grid.reverse {
  grid-template-columns: 90px 360px 1fr;
}

.journey-grid.reverse .content-block {
  grid-column: 3;
}

.journey-grid.reverse .journey-screen {
  grid-column: 2;
  grid-row: 1;
}

.journey-marker {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  color: var(--teal);
}

.journey-marker::after {
  width: 0;
  flex: 1;
  border-left: 2px dashed currentColor;
  content: "";
}

.journey-marker b {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  font-size: 28px;
}

.journey-marker span {
  padding: 3px 8px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.journey-section-coral .journey-marker {
  color: var(--coral);
}

.journey-section-coral .journey-marker b {
  background: var(--coral-soft);
}

.journey-section-coral .journey-marker span {
  color: var(--coral);
  background: var(--coral-soft);
}

.journey-screen {
  width: 310px;
  max-height: 610px;
  overflow: hidden;
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.mini-features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mini-features svg {
  width: 20px;
}

.faq-section {
  background: #fbfefd;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button svg {
  width: 20px;
  color: var(--teal);
  transition: transform 180ms ease;
}

.faq-item.open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  padding-right: 56px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 20px;
}

/* Premium */
.premium-hero,
.safety-hero {
  min-height: 690px;
  padding: 72px 0;
}

.hero-premium-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--teal-dark);
  font-weight: 800;
}

.eyebrow svg {
  width: 20px;
}

.premium-hero .hero-copy > p,
.safety-hero .hero-copy > p {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: 20px;
}

.benefit-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.benefit-inline span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.benefit-inline svg {
  width: 21px;
  color: var(--teal);
}

.phone-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.premium-phone-pair .phone-shell:first-child {
  transform: translateY(30px) rotate(-2deg);
}

.premium-phone-pair .phone-shell:last-child {
  transform: translateY(-10px) rotate(3deg);
}

.compare-section {
  background: var(--mint);
}

.comparison-table {
  max-width: 940px;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.comparison-row + .comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row > * {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
}

.comparison-row > * + * {
  border-left: 1px solid var(--line);
}

.comparison-row > :last-child {
  color: var(--teal-dark);
  background: rgba(229, 247, 245, 0.65);
  font-weight: 800;
}

.comparison-row svg {
  width: 20px;
}

.comparison-head {
  font-weight: 900;
}

.dual-features {
  background: #fbfefd;
}

.dual-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.dual-feature-grid article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 12px 58px;
}

.dual-feature-grid article + article {
  border-left: 1px solid var(--line);
}

.dual-feature-grid img {
  width: 80px;
}

.large-icon {
  display: inline-flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint);
}

.large-icon svg {
  width: 38px;
  height: 38px;
}

.pricing-section {
  background: var(--white);
}

.plan-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.plan-option {
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: start;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.plan-option.selected {
  border: 2px solid var(--teal);
  background: var(--mint);
}

.plan-option span {
  font-weight: 800;
}

.plan-option strong {
  font-size: 36px;
  line-height: 1.2;
}

.plan-option small {
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row svg {
  width: 17px;
  color: var(--teal);
}

/* Safety */
.safety-hero-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.safety-product {
  position: relative;
  min-height: 570px;
}

.safety-shield {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 50%;
  width: 180px;
  transform: translateX(-50%);
}

.privacy-phone-pair {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
}

.privacy-phone-pair .phone-shell:first-child {
  transform: rotate(-3deg);
}

.privacy-phone-pair .phone-shell:last-child {
  transform: rotate(3deg);
}

.visibility-section {
  background: var(--white);
}

.hidden-section {
  background: #fffafa;
}

.visibility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.visibility-grid article {
  text-align: center;
}

.visibility-grid article > svg {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint);
}

.visibility-grid h3 {
  font-size: 17px;
}

.visibility-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.hidden-grid article > svg {
  color: var(--coral);
  background: var(--coral-soft);
}

.hidden-grid h3 {
  color: var(--coral);
}

.no-social-section {
  padding: 84px 0;
  background: var(--white);
}

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

.controls-section {
  background: var(--mint);
}

.control-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.control-list article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.control-list article > svg {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  padding: 12px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
}

.control-list h3 {
  font-size: 17px;
}

.control-list p {
  margin: 0;
  font-size: 14px;
}

.sensitive-band {
  padding: 64px 0;
  background: #fbfefd;
}

.sensitive-band .split {
  grid-template-columns: 88px 1.3fr 1fr;
  gap: 30px;
}

.sensitive-band h2 {
  font-size: 30px;
}

/* Privacy policy */
.privacy-policy-hero {
  overflow: hidden;
  min-height: 690px;
  padding: 72px 0 0;
  background: var(--white);
}

.privacy-policy-hero h1 span {
  color: var(--teal);
}

.privacy-policy-hero-grid {
  display: grid;
  min-height: 618px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.privacy-policy-hero .hero-copy {
  align-self: start;
  padding-top: 38px;
}

.privacy-policy-hero .hero-copy > p {
  max-width: 560px;
  font-size: 19px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.policy-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.policy-meta svg {
  width: 17px;
  color: var(--teal);
}

.privacy-policy-visual {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: flex-end;
  justify-content: center;
}

.privacy-policy-phone {
  z-index: 1;
  width: 320px;
  transform: rotate(2deg);
}

.privacy-policy-shield {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 145px;
  width: 190px;
  filter: drop-shadow(0 16px 28px rgba(6, 42, 103, 0.12));
}

.privacy-principles {
  padding: 86px 0;
  background: var(--mint);
}

.policy-section {
  background: var(--white);
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 84px;
}

.policy-toc {
  position: sticky;
  top: 118px;
  align-self: start;
  padding-top: 8px;
}

.policy-toc strong {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
}

.policy-toc nav {
  display: grid;
}

.policy-toc a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.policy-toc a:hover {
  color: var(--teal-dark);
}

.policy-content > section {
  padding: 0 0 76px;
  scroll-margin-top: 110px;
}

.policy-content > section + section {
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-bottom: 16px;
  font-size: 36px;
}

.policy-content > section > p {
  max-width: 680px;
  font-size: 17px;
}

.policy-number {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.policy-data-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.policy-data-list article,
.policy-actions article {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.policy-data-list article > svg,
.policy-actions article > svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 11px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--mint);
}

.policy-data-list h3,
.policy-actions h3 {
  margin-bottom: 3px;
  font-size: 17px;
}

.policy-data-list p,
.policy-actions p {
  margin: 0;
  font-size: 14px;
}

.policy-visibility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  margin: 34px 0 26px;
}

.policy-visibility > div {
  padding-top: 24px;
  border-top: 3px solid var(--teal);
}

.policy-visibility > div:last-child {
  border-color: var(--coral);
}

.policy-visibility h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-visibility h3 svg {
  width: 21px;
  color: var(--teal);
}

.policy-visibility > div:last-child h3,
.policy-visibility > div:last-child h3 svg {
  color: var(--coral);
}

.policy-visibility ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.policy-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.policy-note svg {
  width: 32px;
  flex: 0 0 auto;
  color: var(--teal);
}

.policy-note p {
  margin: 0;
}

.policy-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 38px;
  margin-top: 30px;
}

/* Download */
.download-hero {
  min-height: 830px;
  padding: 70px 0 0;
}

.download-hero h1 {
  margin-bottom: 14px;
}

.download-hero > .container > p {
  font-size: 20px;
}

.download-product-stage {
  display: flex;
  max-width: 940px;
  height: 590px;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin: 30px auto 0;
}

.download-product-stage .phone-center {
  z-index: 2;
  width: 290px;
}

.download-product-stage .phone-side {
  width: 250px;
  transform: translateY(20px) rotate(-3deg);
}

.download-product-stage .phone-side:last-child {
  transform: translateY(20px) rotate(3deg);
}

.download-panel-section {
  padding-top: 64px;
  background: var(--mint);
}

.download-panel {
  display: grid;
  max-width: 930px;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 48px;
  margin: auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.qr-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

#qr-code {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

#qr-code img,
#qr-code canvas {
  width: 100% !important;
  height: 100% !important;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.store-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: #111;
}

.store-button svg {
  width: 27px;
}

.store-button span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.store-button small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.email-form {
  max-width: 720px;
  margin: 46px auto 0;
  text-align: center;
}

.email-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.email-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.email-form input {
  min-width: 0;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--navy);
  background: var(--white);
}

.email-form .button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 14px;
}

.motion-ready .section-heading,
.motion-ready .content-block,
.motion-ready .product-screen,
.motion-ready .visibility-grid,
.motion-ready .control-list,
.motion-ready .comparison-table {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.motion-ready .revealed {
  opacity: 1;
  transform: translateY(0);
}

.reassurance-section {
  padding: 72px 0;
}

.compatibility-section {
  padding-top: 0;
}

.compatibility-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.compatibility-row + .compatibility-row {
  margin-top: 18px;
}

.compatibility-row > svg {
  width: 44px;
  height: 44px;
  color: var(--teal);
}

.compatibility-row h2 {
  margin-bottom: 4px;
  font-size: 24px;
}

.compatibility-row p {
  margin-bottom: 0;
}

.compatibility-row > span {
  display: flex;
  gap: 18px;
}

.compatibility-row > span svg {
  width: 34px;
  height: 34px;
}

.invite-row img {
  width: 72px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-story {
    grid-template-columns: 230px minmax(300px, 1fr) 230px;
  }

  .hero-copy-center h1 {
    font-size: 48px;
  }

  .steps-five {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  .step::after {
    display: none;
  }

  .split {
    gap: 48px;
  }

  .journey-grid,
  .journey-grid.reverse {
    grid-template-columns: 70px 1fr 300px;
    gap: 30px;
  }

  .journey-grid.reverse .content-block,
  .journey-grid.reverse .journey-screen {
    grid-column: auto;
    grid-row: auto;
  }

  .visibility-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }

  .control-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-policy-hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 36px;
  }

  .privacy-policy-shield {
    right: -10px;
    width: 150px;
  }

  .policy-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  h1,
  .hero-compact-inner h1,
  .hero-copy-center h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 18px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .site-nav {
    min-height: 68px;
  }

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    z-index: 110;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 24px 24px 40px;
    background: var(--white);
    opacity: 0;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-link::after {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-home {
    padding-top: 42px;
  }

  .hero-story {
    display: flex;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    gap: 26px;
  }

  .hero-copy-center {
    order: 1;
    padding-top: 0;
  }

  .hero-copy-center p {
    font-size: 18px;
  }

  .phone-stage-left {
    order: 2;
    width: min(76vw, 330px);
  }

  .phone-stage-right {
    display: none;
  }

  .phone-tilt-left {
    transform: none;
  }

  .journey-path {
    position: static;
    order: 3;
    width: 112%;
    margin-top: -110px;
    margin-bottom: -110px;
    clip-path: inset(30% 0);
    transform: none;
  }

  .steps-five {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-five .step:nth-child(4),
  .steps-five .step:nth-child(5) {
    grid-column: span 1;
  }

  .step .icon-disc {
    width: 64px;
    height: 64px;
  }

  .step p {
    font-size: 13px;
  }

  .split,
  .split-product,
  .hero-premium-grid,
  .safety-hero-grid,
  .privacy-policy-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-focus .content-block {
    text-align: left;
  }

  .product-screen {
    width: min(78vw, 340px);
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-art {
    width: 180px;
    margin: auto;
  }

  .privacy-columns {
    gap: 30px;
  }

  .feature-rail,
  .feature-rail-three {
    grid-template-columns: 1fr;
  }

  .feature-rail article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-rail article {
    padding: 26px 8px;
  }

  .cta-layout {
    grid-template-columns: 60px 1fr;
  }

  .cta-layout img {
    width: 58px;
  }

  .cta-layout .button {
    grid-column: 1 / -1;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-compact {
    min-height: 470px;
    padding-top: 60px;
  }

  .how-hero-grid {
    display: block;
    min-height: 0;
  }

  .how-hero-phone {
    display: none;
  }

  .hero-compact-inner {
    padding-top: 0;
  }

  .journey-path-static {
    width: 112%;
    margin-left: -6%;
  }

  .journey-section {
    padding: 64px 0;
  }

  .journey-grid,
  .journey-grid.reverse {
    grid-template-columns: 58px 1fr;
    gap: 20px;
  }

  .journey-grid .content-block,
  .journey-grid.reverse .content-block {
    grid-column: 2;
  }

  .journey-grid .journey-screen,
  .journey-grid.reverse .journey-screen {
    grid-column: 2;
    width: min(100%, 320px);
  }

  .journey-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .mini-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .premium-hero,
  .safety-hero {
    padding: 58px 0;
  }

  .phone-pair {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 24px 12px 40px;
    scroll-snap-type: x mandatory;
  }

  .phone-pair .phone-shell {
    flex: 0 0 76vw;
    scroll-snap-align: center;
    transform: none !important;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 660px;
  }

  .comparison-row > * {
    padding: 12px 16px;
  }

  .dual-feature-grid {
    grid-template-columns: 1fr;
  }

  .dual-feature-grid article {
    padding: 34px 0;
  }

  .dual-feature-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .plan-selector {
    grid-template-columns: 1fr;
  }

  .trust-row {
    align-items: center;
    flex-direction: column;
  }

  .safety-product {
    display: flex;
    min-height: 0;
    align-items: center;
    flex-direction: column;
  }

  .safety-shield {
    position: static;
    width: 170px;
    transform: none;
  }

  .privacy-phone-pair {
    gap: 12px;
    margin-top: 30px;
  }

  .privacy-phone-pair .phone-shell {
    width: 46%;
    transform: none !important;
  }

  .visibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sensitive-band .split {
    grid-template-columns: 1fr;
  }

  .sensitive-band .large-icon {
    margin: auto;
  }

  .privacy-policy-hero {
    padding-top: 44px;
  }

  .privacy-policy-hero .hero-copy {
    padding-top: 0;
    text-align: center;
  }

  .privacy-policy-hero .hero-copy > p {
    margin-inline: auto;
  }

  .privacy-policy-hero .button-row {
    align-items: stretch;
  }

  .policy-meta {
    justify-content: center;
  }

  .privacy-policy-visual {
    min-height: 520px;
  }

  .privacy-policy-phone {
    width: min(76vw, 320px);
  }

  .privacy-policy-shield {
    right: calc(50% - 166px);
    bottom: 110px;
    width: 135px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .policy-toc {
    position: static;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .policy-toc nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
  }

  .policy-content h2 {
    font-size: 30px;
  }

  .policy-visibility,
  .policy-actions {
    grid-template-columns: 1fr;
  }

  .download-hero {
    padding-top: 54px;
  }

  .download-hero h1 {
    font-size: 44px;
  }

  .download-product-stage {
    height: auto;
    flex-direction: column;
    gap: 22px;
  }

  .download-product-stage .phone-center {
    width: min(76vw, 330px);
  }

  .download-product-stage .phone-side {
    display: none;
  }

  .download-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 30px 20px;
  }

  .download-copy {
    text-align: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .email-form > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .email-form input,
  .email-form .button {
    border-radius: var(--radius);
  }

  .compatibility-row {
    grid-template-columns: 48px 1fr;
    padding: 24px 20px;
  }

  .compatibility-row > span,
  .compatibility-row > img {
    grid-column: 2;
  }
}

@media (max-width: 430px) {
  h1,
  .hero-compact-inner h1,
  .hero-copy-center h1 {
    font-size: 38px;
  }

  .header-actions .button {
    display: none;
  }

  .steps-five {
    grid-template-columns: 1fr;
  }

  .step {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    column-gap: 16px;
    text-align: left;
  }

  .step .icon-disc {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .privacy-columns {
    grid-template-columns: 1fr;
  }

  .visibility-grid {
    grid-template-columns: 1fr;
  }

  .privacy-phone-pair {
    align-items: center;
    flex-direction: column;
  }

  .privacy-phone-pair .phone-shell {
    width: min(76vw, 310px);
  }

  .dual-feature-grid article {
    grid-template-columns: 64px 1fr;
  }

  .dual-feature-grid img,
  .large-icon {
    width: 60px;
    height: 60px;
  }

  #qr-code {
    width: 190px;
    height: 190px;
  }
}
