:root {
  color-scheme: light;
  --paper: #f7f6ef;
  --ink: #17211c;
  --muted: #657169;
  --line: #d8d8cc;
  --panel: #ffffff;
  --panel-soft: #ebece2;
  --green: #216869;
  --green-deep: #16494a;
  --amber: #b26a19;
  --blue: #385b8a;
  --rose: #a24c68;
  --shadow: 0 24px 70px rgba(28, 38, 32, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

.policy-body {
  background:
    radial-gradient(circle at top left, rgba(33, 104, 105, 0.12), transparent 34%),
    linear-gradient(180deg, #f5f2e9 0%, #f7f6ef 42%, #eef1e8 100%);
}

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

.site-header {
  align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 17px;
  font-weight: 760;
  gap: 10px;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(33, 104, 105, 0.18);
  height: 32px;
  width: 32px;
}

nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover {
  color: var(--ink);
}

.nav-action {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  padding: 10px 16px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  padding: clamp(26px, 4vw, 44px) clamp(20px, 6vw, 88px) 26px;
}

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

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 5.6vw, 78px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
  margin-bottom: 26px;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-action {
  align-items: center;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(33, 104, 105, 0.22);
  color: #fff;
  display: inline-flex;
  font-weight: 760;
  min-height: 48px;
  padding: 0 22px;
}

.trust-line {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.hero-visual {
  align-items: center;
  display: grid;
  min-height: 446px;
  place-items: center;
  position: relative;
}

.phone-shell {
  background: #111614;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 12px;
  position: absolute;
}

.phone-front {
  height: 498px;
  transform: rotate(1.5deg) translateX(24px);
  width: 264px;
  z-index: 2;
}

.phone-back {
  height: 388px;
  transform: rotate(-10deg) translate(-138px, 36px);
  width: 210px;
  z-index: 1;
}

.phone-screen {
  background: #f7f7f2;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
  padding: 16px;
}

.compact-screen {
  background: #101714;
  color: #f8f4ea;
}

.status-bar,
.mini-top,
.summary-grid,
.button-row,
.cycle-heading {
  align-items: center;
  display: flex;
}

.status-bar,
.mini-top {
  justify-content: space-between;
  margin-bottom: 22px;
}

.status-bar {
  color: #5f6962;
  font-size: 12px;
  font-weight: 760;
}

.app-summary {
  background: linear-gradient(135deg, #e8f3ef, #fff);
  border: 1px solid #dce5dd;
  border-radius: 24px;
  margin-bottom: 14px;
  padding: 18px;
}

.app-summary p,
.cycle-meta,
.cycle-card p,
.history-row span {
  color: var(--muted);
}

.app-summary h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.summary-grid {
  gap: 8px;
}

.summary-grid span {
  background: #fff;
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 760;
  padding: 7px 10px;
}

.cycle-card {
  background: #fff;
  border: 1px solid #dfe2dc;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(20, 31, 25, 0.08);
  margin-bottom: 12px;
  padding: 16px;
}

.cycle-card.small {
  display: grid;
  gap: 12px;
}

.cycle-heading {
  gap: 12px;
  margin-bottom: 14px;
}

.cycle-heading h3 {
  font-size: 17px;
  margin-bottom: 3px;
}

.cycle-heading p {
  font-size: 12px;
  margin-bottom: 0;
}

.item-icon {
  align-items: center;
  border-radius: 15px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 820;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.teal {
  background: var(--green);
}

.amber {
  background: var(--amber);
}

.blue {
  background: var(--blue);
}

.green {
  background: #34c759;
}

.cycle-number {
  color: var(--green-deep);
  display: block;
  font-size: 27px;
  margin-bottom: 10px;
}

.progress-track {
  background: #e9ece6;
  border-radius: 999px;
  height: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.progress-track span {
  background: var(--green);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.button-row {
  gap: 8px;
}

.button-row button {
  border: 0;
  border-radius: 999px;
  flex: 1;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  min-height: 38px;
}

.button-row button:first-child {
  background: var(--green);
  color: #fff;
}

.button-row button:last-child {
  background: #ebeee8;
  color: var(--ink);
}

.mini-top {
  color: rgba(248, 244, 234, 0.7);
  font-size: 12px;
}

.mini-top strong {
  color: #fff;
}

.history-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  padding: 12px;
}

.history-row strong {
  display: block;
  font-size: 14px;
}

.history-row span:not(.dot) {
  display: block;
  font-size: 12px;
}

.dot {
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.problem-band,
.process-section,
.items-section,
.privacy-section,
.final-cta {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 88px);
}

.problem-band {
  align-items: end;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  padding-top: clamp(30px, 4vw, 42px);
}

.problem-band h2,
.section-heading h2,
.privacy-section h2,
.final-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

.problem-band p:last-child,
.privacy-section p,
.final-cta p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 780px;
}

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

.process-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.process-grid span {
  color: var(--amber);
  display: block;
  font-size: 13px;
  font-weight: 820;
  margin-bottom: 34px;
}

.process-grid h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.items-section {
  background: #eaf0ea;
}

.item-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.item-strip span {
  background: #fff;
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: 999px;
  color: var(--green-deep);
  font-weight: 760;
  padding: 12px 16px;
}

.privacy-section {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
}

.phone-mini {
  background: #141b17;
  border-radius: 40px;
  box-shadow: var(--shadow);
  color: #fff;
  margin: auto;
  max-width: 340px;
  padding: 18px;
  width: 100%;
}

.phone-mini div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 22px;
}

.notification-dot {
  background: var(--amber);
  border-radius: 999px;
  display: block;
  height: 12px;
  margin-bottom: 18px;
  width: 12px;
}

.phone-mini p {
  color: #fff;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.1;
  margin-bottom: 8px;
}

.phone-mini strong {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.final-cta {
  background: var(--green-deep);
  color: #fff;
  text-align: center;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 780px;
}

.final-cta p {
  margin: 20px auto 28px;
  max-width: 620px;
}

.final-cta .primary-action {
  background: #fff;
  box-shadow: none;
  color: var(--green-deep);
}

.site-footer {
  align-items: center;
  background: #f1f1e8;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 88px) 28px;
}

.site-footer p {
  font-size: 14px;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 760;
}

.policy-main {
  padding: 26px clamp(20px, 6vw, 88px) 80px;
}

.policy-hero {
  max-width: 860px;
  padding: 28px 0 22px;
}

.policy-card {
  background: color-mix(in srgb, #fff 88%, rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(20, 31, 25, 0.08);
  display: grid;
  gap: 26px;
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(26px, 4vw, 42px);
}

.policy-section {
  border-bottom: 1px solid rgba(23, 33, 28, 0.08);
  padding-bottom: 24px;
}

.policy-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 12px;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.policy-section ul {
  margin: 0;
  padding-left: 22px;
}

.policy-section li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  nav a:not(.nav-action) {
    display: none;
  }

  .hero,
  .problem-band,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 18px;
    padding-bottom: 14px;
    padding-top: 18px;
  }

  .hero-visual {
    min-height: 300px;
    overflow: hidden;
  }

  .phone-front {
    height: 426px;
    transform: rotate(0deg) translateX(0);
    width: 226px;
  }

  .phone-back {
    display: none;
  }

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

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

@media (max-width: 560px) {
  .brand span {
    max-width: 126px;
  }

  h1 {
    font-size: clamp(35px, 10.4vw, 46px);
    line-height: 1;
  }

  .hero-visual {
    min-height: 288px;
    overflow: hidden;
  }

  .phone-front {
    height: 420px;
    width: 222px;
  }

  .cycle-number {
    font-size: 26px;
  }

  .button-row {
    flex-direction: column;
  }

  .policy-main {
    padding-bottom: 56px;
  }

  .policy-card {
    border-radius: 24px;
    gap: 22px;
    padding: 22px 18px;
  }

  .policy-section p,
  .policy-section li {
    font-size: 16px;
  }
}
