:root {
  color-scheme: light;
  --ink: #241b21;
  --muted: #6f6067;
  --paper: #fffafb;
  --mist: #fff0f2;
  --line: #efd7dc;
  --rose: #d84262;
  --rose-deep: #9f253e;
  --plum: #3e2a32;
  --mint: #56c6b4;
  --gold: #f0b956;
  --shadow: 0 24px 70px rgba(118, 38, 59, 0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, li { overflow-wrap: anywhere; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 251, 0.9);
  border-bottom: 1px solid rgba(239, 215, 220, 0.94);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.brand img { width: 40px; height: 40px; border-radius: 8px; }
nav { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 28px); font-size: 0.94rem; font-weight: 800; }
nav a { color: var(--muted); text-decoration: none; white-space: nowrap; }
nav a:hover, nav a[aria-current="page"] { color: var(--rose-deep); }
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  padding: clamp(50px, 8vw, 100px) clamp(18px, 5vw, 72px) 54px;
  background:
    radial-gradient(circle at 82% 16%, rgba(216,66,98,0.24), transparent 34%),
    linear-gradient(135deg, #fffafb 0%, #fff0f2 50%, #f2fbf7 100%);
}
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 12px; color: var(--mint); font-size: 0.78rem; font-weight: 950; letter-spacing: 0; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(3.2rem, 7vw, 6.35rem); line-height: 0.96; letter-spacing: 0; }
.lede { max-width: 650px; margin: 24px 0 0; color: #4d3d45; font-size: clamp(1.05rem, 1.5vw, 1.26rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 8px; padding: 12px 18px; text-decoration: none; font-weight: 900; border: 1px solid transparent; }
.button.primary { color: white; background: var(--rose); box-shadow: 0 12px 26px rgba(216, 66, 98, 0.24); }
.button.primary:hover { background: var(--rose-deep); }
.button.secondary { color: var(--rose-deep); background: white; border-color: var(--line); }
.app-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 620px; margin: 34px 0 0; }
.app-meta div { padding: 14px 16px; background: rgba(255,255,255,0.88); border: 1px solid var(--line); border-radius: 8px; }
dt { color: var(--muted); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
dd { margin: 2px 0 0; font-weight: 950; }
.hero-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.icon-plate { width: min(72vw, 340px); padding: 18px; border-radius: 48px; background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,232,237,0.82)); box-shadow: var(--shadow); }
.icon-plate img { border-radius: 34px; width: 100%; }
.phone-shot { position: absolute; right: 6%; bottom: 0; width: min(46vw, 240px); aspect-ratio: 9 / 16; object-fit: cover; border: 10px solid var(--plum); border-radius: 30px; box-shadow: 0 30px 70px rgba(85, 34, 48, 0.24); }
.section { padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px); }
.feature-section { background: #fff; }
.section-heading { max-width: 820px; margin-bottom: 30px; }
.section-heading h2, .trust-band h2, .policy-summary h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.06; letter-spacing: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature-grid article { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, #fff, #fff7f8); }
.feature-grid h3 { margin: 0 0 10px; font-size: 1.18rem; }
.feature-grid p { margin: 0; color: var(--muted); }
.screenshots { background: var(--mist); }
.screen-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2.4vw, 26px); align-items: start; }
.screen-row img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.trust-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; background: #f4fbf8; border-top: 1px solid #d5ece4; border-bottom: 1px solid #d5ece4; }
.trust-band p { max-width: 760px; color: #4f625d; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(18px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
footer p { margin: 0; }
footer div { display: flex; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--rose-deep); font-weight: 800; text-decoration: none; }
.policy-shell { display: grid; grid-template-columns: minmax(260px, 360px) minmax(0, 900px); gap: clamp(24px, 4vw, 54px); align-items: start; padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px); }
.policy-summary { position: sticky; top: 88px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 16px 44px rgba(118, 38, 59, 0.1); }
.policy-summary img { width: 72px; height: 72px; border-radius: 14px; margin-bottom: 18px; }
.policy-summary p { color: var(--muted); }
.policy-content { padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.policy-content h1 { margin: 0 0 18px; font-size: clamp(2.15rem, 5vw, 4rem); line-height: 1; }
.policy-content h2 { margin: 38px 0 12px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--rose-deep); font-size: clamp(1.35rem, 2.5vw, 1.9rem); line-height: 1.18; }
.policy-content h3 { margin: 26px 0 8px; color: #4b2c36; font-size: 1.05rem; }
.policy-content p { margin: 0 0 14px; color: #523f46; }
.policy-content .effective { color: var(--mint); font-weight: 900; }
@media (max-width: 1040px) { .hero { grid-template-columns: 1fr; min-height: auto; } .hero-art { min-height: 500px; max-width: 680px; } .feature-grid, .screen-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } .policy-shell { grid-template-columns: 1fr; } .policy-summary { position: static; } }
@media (max-width: 760px) { .site-header { align-items: flex-start; flex-direction: column; gap: 12px; } nav { width: 100%; overflow-x: auto; padding-bottom: 2px; } h1 { font-size: clamp(2.8rem, 16vw, 4.5rem); } .app-meta, .feature-grid, .screen-row, .trust-band { grid-template-columns: 1fr; } .hero { padding-top: 34px; } .phone-shot { width: min(62vw, 220px); right: 2%; } footer { flex-direction: column; } }
@media (max-width: 430px) { .button { width: 100%; } .hero-art { min-height: 390px; } .icon-plate { width: min(78vw, 300px); } .policy-content { padding: 20px; } }
