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

:root {
  --teal: #1ab3ad;
  --teal-dark: #105257;
  --teal-soft: #e8f6f4;
  --orange: #e95d24;
  --orange-soft: #feebe6;
  --white: #fffffe;
  --warm: #f7f5f1;
  --ink: #17172b;
  --body: #62645f;
  --muted: #8b8d88;
  --line: #e5e5df;
  --font: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(16, 82, 87, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--white); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header {
  width: min(100% - 48px, 1180px);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-size: 24px; font-weight: 700; letter-spacing: -.8px; }
.brand-mark { width: 35px; height: 35px; flex: none; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 32px; color: var(--teal-dark); font-size: 14px; font-weight: 600; }
.site-nav a { transition: color .2s, background .2s; }
.site-nav a:not(.nav-cta):hover { color: var(--teal); }
.nav-cta { padding: 12px 19px; color: var(--white); background: var(--teal-dark); border-radius: 12px; }
.nav-cta:hover { background: var(--teal); }
.menu-toggle { display: none; padding: 8px; background: transparent; border: 0; }

.hero {
  width: min(100% - 48px, 1180px);
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0 100px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}
.eyebrow { margin: 0 0 20px; color: var(--teal-dark); font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.hero h1, .section-intro h2, .organiser-copy h2, .final-cta h2 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(56px, 6.4vw, 88px);
  line-height: .98;
  letter-spacing: -5px;
}
.hero-intro { max-width: 520px; margin: 28px 0 32px; color: var(--body); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 14px; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border-radius: 13px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--teal-dark); }
.button-primary:hover { background: var(--teal); }
.button-link { color: var(--teal-dark); }
.hero-meta { margin-top: 30px; display: flex; gap: 26px; color: var(--muted); font-size: 11px; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; }

.hero-visual { display: flex; justify-content: center; }
.hero-panel {
  width: min(100%, 560px);
  min-height: 610px;
  padding: 55px 55px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: var(--teal-soft);
  border-radius: 36px;
  overflow: hidden;
}
.hero-panel::before { content: ""; width: 230px; height: 230px; position: absolute; top: -90px; right: -80px; background: var(--orange-soft); border-radius: 50%; }
.phone-frame { width: 280px; padding: 7px; overflow: hidden; background: var(--ink); border: 1px solid var(--ink); border-radius: 38px; box-shadow: var(--shadow); }
.phone-frame img { width: 100%; aspect-ratio: 1290 / 2796; border-radius: 30px; object-fit: cover; }
.hero-phone { margin-bottom: -105px; position: relative; z-index: 1; }
.hero-panel-copy {
  width: 190px;
  padding: 15px;
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 38px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(16,82,87,.12);
}
.status-dot { width: 10px; height: 10px; margin-top: 4px; flex: none; background: var(--orange); border-radius: 50%; }
.hero-panel-copy p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.hero-panel-copy strong { display: block; margin-bottom: 2px; color: var(--teal-dark); font-size: 12px; }

.benefits {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefits article { min-height: 230px; padding: 42px 38px; border-right: 1px solid var(--line); }
.benefits article:last-child { border-right: 0; }
.benefit-icon { width: 42px; height: 42px; margin-bottom: 28px; display: grid; place-items: center; color: var(--teal-dark); background: var(--teal-soft); border-radius: 12px; font-size: 20px; }
.benefit-icon.orange { color: var(--orange); background: var(--orange-soft); }
.benefits h2 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.4px; }
.benefits p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.65; }

.section { width: min(100% - 48px, 1120px); margin: 0 auto; padding: 135px 0; }
.section-intro { max-width: 750px; margin-bottom: 110px; }
.section-intro h2 { font-size: clamp(48px, 5vw, 70px); letter-spacing: -4px; }
.section-intro > p:last-child { max-width: 590px; margin: 28px 0 0; color: var(--body); font-size: 17px; line-height: 1.7; }
.product-row { min-height: 650px; margin-bottom: 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.product-row:last-child { margin-bottom: 0; }
.product-row.reverse .product-copy { order: 2; }
.product-row.reverse .product-image { order: 1; }
.product-copy { position: relative; }
.step-number { position: absolute; top: 2px; right: 0; color: var(--teal); font-size: 12px; font-weight: 700; }
.product-copy .eyebrow { margin-bottom: 16px; }
.product-copy h3 { max-width: 480px; margin: 0 0 22px; color: var(--ink); font-size: clamp(36px, 4vw, 52px); line-height: 1.05; letter-spacing: -2.5px; }
.product-copy > p:not(.eyebrow) { max-width: 490px; margin: 0; color: var(--body); font-size: 16px; line-height: 1.7; }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 11px 0 11px 28px; position: relative; color: var(--teal-dark); border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); }
.product-image { min-height: 650px; padding: 55px 45px 0; display: flex; justify-content: center; align-items: flex-end; border-radius: 32px; overflow: hidden; }
.product-image.mint { background: var(--teal-soft); }
.product-image.peach { background: var(--orange-soft); }
.product-image .phone-frame { margin-bottom: -120px; }

.organiser-section { padding: 120px 32px 0; color: var(--white); background: var(--teal-dark); overflow: hidden; }
.organiser-inner { width: min(100%, 1120px); min-height: 660px; margin: 0 auto; display: grid; grid-template-columns: 1fr .8fr; gap: 100px; align-items: center; }
.organiser-copy .eyebrow { color: #8fe0db; }
.organiser-copy h2 { color: var(--white); font-size: clamp(48px, 5vw, 70px); letter-spacing: -4px; }
.organiser-copy > p:not(.eyebrow) { max-width: 540px; margin: 28px 0; color: rgba(255,255,254,.68); font-size: 17px; line-height: 1.7; }
.organiser-points { margin: 0 0 36px; display: flex; flex-wrap: wrap; gap: 9px; }
.organiser-points span { padding: 9px 12px; color: #c8f1ee; border: 1px solid rgba(255,255,254,.2); border-radius: 99px; font-size: 11px; font-weight: 600; }
.button-light { color: var(--teal-dark); background: var(--white); }
.dashboard-card { width: 360px; height: 580px; margin-top: 80px; justify-self: end; overflow: hidden; background: var(--warm); border: 8px solid var(--ink); border-bottom: 0; border-radius: 40px 40px 0 0; box-shadow: 0 30px 65px rgba(0,0,0,.25); }
.dashboard-card img { width: 100%; height: auto; }

.final-cta { padding: 135px 32px; text-align: center; background: var(--warm); }
.cta-logo { width: 54px; height: 54px; margin: 0 auto 24px; }
.final-cta h2 { font-size: clamp(50px, 6vw, 80px); letter-spacing: -4.5px; }
.final-cta > p:not(.eyebrow) { margin: 24px 0 32px; color: var(--body); font-size: 17px; }

.site-footer { min-height: 135px; padding: 35px max(24px, calc((100% - 1120px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; color: var(--white); background: #0c3e42; }
.footer-brand { color: var(--white); }
.footer-links { display: flex; gap: 24px; color: rgba(255,255,254,.65); font-size: 11px; }
.footer-links a:hover { color: var(--white); }
.site-footer > p { margin: 0; color: rgba(255,255,254,.42); font-size: 10px; text-align: right; }

/* Legal and support pages */
.legal-body { background: var(--warm); }
.legal-header { border-bottom: 1px solid var(--line); background: rgba(255,255,254,.94); }
.legal-main { width: min(100% - 48px, 760px); margin: 0 auto; padding: 90px 0 120px; }
.legal-main .eyebrow { margin-bottom: 16px; }
.legal-main h1 { margin: 0 0 20px; color: var(--teal-dark); font-size: clamp(44px, 7vw, 68px); line-height: 1; letter-spacing: -3px; }
.legal-main .updated { margin: 0 0 55px; color: var(--muted); font-size: 12px; }
.legal-main h2 { margin: 42px 0 12px; color: var(--teal-dark); font-size: 22px; }
.legal-main h3 { margin: 28px 0 10px; font-size: 16px; }
.legal-main p, .legal-main li { color: var(--body); font-size: 15px; line-height: 1.75; }
.legal-main a { color: var(--teal-dark); text-decoration: underline; text-decoration-color: var(--teal); text-underline-offset: 3px; }
.legal-main ul, .legal-main ol { padding-left: 22px; }
.legal-note { padding: 18px 20px; background: var(--orange-soft); border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; }
.back-link { color: var(--teal-dark); font-size: 13px; font-weight: 700; }
.legal-footer { padding: 35px 24px; text-align: center; color: rgba(255,255,254,.55); background: var(--teal-dark); font-size: 11px; }

.privacy-page .legal-header { position: relative; z-index: 2; backdrop-filter: blur(14px); }
.privacy-shell { width: min(100% - 48px, 1180px); margin: 0 auto; padding: 72px 0 120px; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 70px; align-items: start; }
.privacy-nav { position: sticky; top: 28px; padding-top: 18px; }
.privacy-nav nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.privacy-nav nav a { padding: 11px 0; display: grid; grid-template-columns: 28px 1fr; gap: 8px; color: var(--body); border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.35; }
.privacy-nav nav a span { color: var(--teal); font-size: 9px; font-weight: 700; }
.privacy-help { margin-top: 28px; padding: 18px; display: flex; flex-direction: column; gap: 5px; color: var(--white); background: var(--teal-dark); border-radius: 14px; }
.privacy-help span { color: rgba(255,255,254,.55); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.privacy-help a { font-size: 12px; font-weight: 600; }
.privacy-document.legal-main { width: 100%; margin: 0; padding: clamp(38px, 6vw, 72px); background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.privacy-document [data-custom-class="title"] h1 { margin: 0 0 15px; color: var(--teal-dark) !important; font-family: var(--font) !important; font-size: clamp(43px, 6vw, 68px) !important; line-height: .98; letter-spacing: -3.5px; }
.privacy-document [data-custom-class="subtitle"] { display: inline-flex; margin-bottom: 34px; padding: 7px 12px; color: #a3421b !important; background: var(--orange-soft); border-radius: 99px; font-family: var(--font) !important; font-size: 11px !important; }
.privacy-document [data-custom-class="body"] > div:nth-child(3),
.privacy-document [data-custom-class="body"] > div:nth-child(4),
.privacy-document [data-custom-class="body"] > div:nth-child(5) { display: none; }
.privacy-document [data-custom-class="heading_1"] h2 { margin: 58px 0 18px; color: var(--teal-dark) !important; font-family: var(--font) !important; font-size: clamp(22px, 3vw, 28px) !important; line-height: 1.2; letter-spacing: -.8px; }
.privacy-document [data-custom-class="heading_2"] h3 { margin: 32px 0 12px; color: var(--teal-dark) !important; font-family: var(--font) !important; font-size: 18px !important; }
.privacy-document [data-custom-class="body_text"],
.privacy-document [data-custom-class="body_text"] * { color: var(--body) !important; font-family: var(--font) !important; font-size: 15px !important; line-height: 1.75; }
.privacy-document [data-custom-class="body_text"] strong { color: var(--ink) !important; }
.privacy-document [data-custom-class="link"],
.privacy-document [data-custom-class="link"] * { color: var(--teal-dark) !important; font-family: var(--font) !important; font-size: inherit !important; font-weight: 600; text-decoration: underline; text-decoration-color: var(--teal); word-break: break-word; }
.privacy-document li::marker { color: var(--teal); }
.privacy-document [id] { scroll-margin-top: 24px; }
.privacy-document bdt:empty { display: none; }
.terms-document section { scroll-margin-top: 24px; }
.terms-document p { margin: 0 0 18px; }
.terms-document ul { margin: 0 0 24px; padding-left: 24px; }
.terms-document li { margin-bottom: 9px; }
.terms-document .terms-intro [data-custom-class="heading_1"] h2 { margin-top: 44px; }
.terms-page .privacy-nav { max-height: calc(100vh - 56px); overflow-y: auto; scrollbar-width: thin; }
.terms-page .privacy-nav nav a { padding: 8px 0; }
.terms-page .privacy-help { margin-bottom: 18px; }
.policy-placeholder { padding: 2px 6px; color: #a3421b !important; background: var(--orange-soft); border-radius: 4px; font-weight: 700; }
.policy-attribution { margin-top: 60px; padding-top: 22px; color: var(--muted); border-top: 1px solid var(--line); font-size: 11px; }
.back-to-top { width: 44px; height: 44px; position: fixed; right: 24px; bottom: 24px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 13px; box-shadow: var(--shadow); font-size: 20px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 55px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-meta { justify-content: center; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefits article:last-child { border-bottom: 0; }
  .product-row, .product-row.reverse { grid-template-columns: 1fr; gap: 55px; }
  .product-row.reverse .product-copy, .product-row.reverse .product-image { order: initial; }
  .product-copy { max-width: 600px; }
  .organiser-inner { grid-template-columns: 1fr 1fr; gap: 50px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .site-footer > p { text-align: center; }
  .privacy-shell { grid-template-columns: 210px minmax(0, 1fr); gap: 35px; }
}

@media (max-width: 700px) {
  .site-header { width: min(100% - 32px, 1180px); height: 72px; }
  .brand { font-size: 22px; }
  .brand-mark { width: 32px; height: 32px; }
  .menu-toggle { width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
  .menu-toggle > span:not(.sr-only) { width: 24px; height: 2px; background: var(--teal-dark); }
  .site-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; padding: 24px; flex-direction: column; align-items: stretch; gap: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { width: min(100% - 32px, 1180px); min-height: 0; padding: 62px 0 85px; gap: 50px; }
  .hero h1 { font-size: clamp(50px, 15vw, 68px); letter-spacing: -3.5px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; max-width: 330px; }
  .hero-meta { gap: 14px; flex-wrap: wrap; }
  .hero-panel { min-height: 540px; padding: 42px 20px 0; border-radius: 26px; }
  .hero-phone { width: 250px; margin-bottom: -75px; }
  .hero-panel-copy { right: 12px; bottom: 25px; }
  .benefits { width: min(100% - 32px, 1180px); }
  .benefits article { padding: 32px 24px; }
  .section { width: min(100% - 32px, 1120px); padding: 95px 0; }
  .section-intro { margin-bottom: 75px; }
  .section-intro h2, .organiser-copy h2 { font-size: 45px; letter-spacing: -3px; }
  .product-row { min-height: 0; margin-bottom: 95px; }
  .product-copy h3 { font-size: 37px; letter-spacing: -2px; }
  .product-image { min-height: 540px; padding: 42px 25px 0; border-radius: 24px; }
  .product-image .phone-frame { width: 250px; margin-bottom: -80px; }
  .organiser-section { padding: 90px 20px 0; }
  .organiser-inner { grid-template-columns: 1fr; gap: 45px; }
  .dashboard-card { width: min(100%, 330px); height: 530px; margin-top: 0; justify-self: center; }
  .final-cta { padding: 95px 20px; }
  .final-cta h2 { font-size: 48px; letter-spacing: -3px; }
  .footer-links { flex-wrap: wrap; }
  .legal-main { width: min(100% - 36px, 760px); padding: 65px 0 90px; }
  .privacy-shell { width: min(100% - 28px, 760px); padding: 38px 0 80px; display: block; }
  .privacy-nav { position: static; padding: 0; }
  .privacy-nav > .eyebrow, .privacy-nav nav { display: none; }
  .privacy-help { margin: 0 0 18px; }
  .privacy-document.legal-main { padding: 32px 22px 48px; border-radius: 18px; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .site-header { width: 100%; height: 54px; }
  .menu-toggle { display: none !important; }
  .site-nav { display: flex !important; }
  .button { border: 1px solid currentColor; }
  .hero { width: 100%; min-height: 0; padding: 30px 0 45px; gap: 35px; break-inside: auto; }
  .hero h1 { font-size: 54px; }
  .hero-intro { font-size: 15px; }
  .hero-panel { min-height: 440px; padding-top: 35px; }
  .hero-phone { width: 210px; margin-bottom: -60px; }
  .benefits { width: 100%; break-inside: avoid; }
  .benefits article { min-height: 0; padding: 24px 20px; }
  .section { width: 100%; padding: 55px 0; }
  .section-intro { margin-bottom: 45px; }
  .section-intro h2 { font-size: 48px; }
  .product-row { min-height: 0; margin-bottom: 55px; gap: 45px; break-inside: avoid; }
  .product-copy h3 { font-size: 36px; }
  .product-image { min-height: 480px; padding-top: 35px; }
  .product-image .phone-frame { width: 220px; margin-bottom: -70px; }
  .organiser-section { padding: 55px 24px 0; break-inside: avoid; }
  .organiser-inner { min-height: 520px; gap: 45px; }
  .organiser-copy h2 { font-size: 48px; }
  .dashboard-card { width: 270px; height: 440px; margin-top: 45px; }
  .final-cta { padding: 65px 24px; break-inside: avoid; }
  .final-cta h2 { font-size: 54px; }
  .site-footer { min-height: 90px; break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
