:root {
  --teal: #2e7775;
  --teal-deep: #1f5f5e;
  --teal-soft: #73b7b7;
  --accent: #d7884d;
  --ink: #1f3e3f;
  --text: #29494a;
  --muted: #5f7474;
  --quiet: #879898;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --cool-surface: #edf5f3;
  --line: rgba(46, 119, 117, 0.18);
  --shadow: 0 18px 50px rgba(31, 62, 63, 0.1);
  --radius: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  padding-bottom: 68px;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: #edf3f1;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("../images/background.png");
  background-image: image-set(
    url("../images/background.webp") type("image/webp"),
    url("../images/background.png") type("image/png")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--teal);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(46, 119, 117, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand-image {
  width: 150px;
  height: 63px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a,
.drawer-links a,
.footer-links a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--teal-deep);
  background: rgba(115, 183, 183, 0.16);
  outline: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  background: rgba(31, 62, 63, 0.3);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(86vw, 340px);
  height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: -24px 0 54px rgba(31, 62, 63, 0.18);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.drawer-header {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-title {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.drawer-links {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.drawer-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 650;
}

.drawer-links a:hover,
.drawer-links a:focus-visible,
.drawer-links a[aria-current="page"] {
  color: var(--teal-deep);
  background: rgba(115, 183, 183, 0.16);
  outline: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .drawer {
  transform: translateX(0);
}

body.menu-open .drawer-overlay {
  display: block;
}

.page-main {
  isolation: isolate;
}

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

.hero {
  padding: 38px 0 16px;
}

.hero-inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: 0;
}

h1,
.display {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 600;
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
}

h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}

p {
  margin: 0;
}

.lead {
  max-width: 730px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.store-badge {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius);
  outline-offset: 4px;
}

.store-badge img {
  width: auto;
  height: 44px;
}

.hero-media {
  width: min(100%, 387px);
  justify-self: center;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: var(--teal-deep);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.section {
  padding: 58px 0;
}

.intro-section {
  padding-top: 18px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-header p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.section-link {
  justify-content: center;
  margin-top: 16px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.card-grid,
.feature-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-section {
  padding-top: 16px;
  padding-bottom: 76px;
}

.faq-list {
  display: grid;
  gap: 34px;
  max-width: 900px;
  text-align: left;
}

.faq-group {
  padding-top: 28px;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.faq-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-group h2 {
  font-size: 26px;
}

.faq-item {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(46, 119, 117, 0.14);
}

.faq-item h3 {
  font-size: 18px;
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
}

.faq-item ul {
  margin: 8px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.faq-item li + li {
  margin-top: 6px;
}

.faq-item a {
  color: var(--teal-deep);
  font-weight: 700;
}

.card,
.feature-card,
.note-panel,
.legal-notice,
.contact-panel {
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid rgba(46, 119, 117, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 62, 63, 0.08);
}

.card p,
.feature-card p,
.note-panel p,
.contact-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 18px;
  background: rgba(237, 245, 243, 0.72);
  border: 1px solid rgba(46, 119, 117, 0.14);
  border-radius: var(--radius);
}

.contact-details p {
  margin: 0;
  color: var(--ink);
}

.contact-details span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-details a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.check {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.statement-band {
  padding: 30px;
  color: var(--ink);
  background: rgba(237, 245, 243, 0.78);
  border: 1px solid rgba(46, 119, 117, 0.16);
  border-radius: var(--radius);
}

.statement-band p {
  max-width: 850px;
  margin-top: 14px;
  color: var(--muted);
}

.status-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 119, 117, 0.12);
  border-radius: var(--radius);
}

.status-label {
  font-weight: 750;
}

.status-value {
  color: var(--muted);
  font-size: 14px;
}

.download-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 119, 117, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.download-panel p {
  color: var(--muted);
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  padding: 7px 0;
  border-top: 1px solid rgba(46, 119, 117, 0.13);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.footer-shell {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
}

.footer-entity {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.footer-links a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 400;
}

.footer-simple {
  gap: 10px;
}

.page-hero {
  padding: 52px 0 28px;
}

.page-kicker {
  margin-bottom: 10px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.page-lead {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.content-layout {
  display: grid;
  gap: 18px;
  padding: 28px 0 62px;
}

.how-layout {
  display: grid;
  gap: 34px;
  padding: 16px 0 76px;
  text-align: left;
}

.step-kicker {
  display: block;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.step-list {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.step-list::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 19px;
  width: 1px;
  content: "";
  background: rgba(46, 119, 117, 0.24);
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(46, 119, 117, 0.16);
}

.step-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-number {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.step-card h2,
.how-panel h2,
.how-cta h2,
.result-panel h2 {
  margin-top: 4px;
  font-size: 26px;
}

.step-card p,
.how-panel p,
.how-cta p,
.result-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.step-card strong,
.how-panel strong,
.result-panel strong {
  color: var(--ink);
}

.step-card ul,
.how-panel ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.step-card li + li,
.how-panel li + li {
  margin-top: 8px;
}

.method-panel {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.method-panel ul {
  padding-top: 2px;
}

.result-panel {
  display: grid;
  gap: 22px;
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.result-copy {
  max-width: 650px;
}

.result-rows {
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.result-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(46, 119, 117, 0.18);
}

.result-row span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
}

.result-row strong {
  font-size: 15px;
  font-weight: 700;
}

.how-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.how-cta .text-link {
  min-height: 44px;
  padding: 0;
  align-self: center;
  justify-self: start;
  text-align: left;
}

.why-layout {
  max-width: none;
}

.why-section,
.why-stat {
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
}

.why-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.why-section h2,
.why-stat h2 {
  margin-top: 4px;
  font-size: 26px;
}

.why-section p,
.why-stat p {
  margin-top: 12px;
  color: var(--muted);
}

.why-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.why-section ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.why-section li + li {
  margin-top: 8px;
}

.why-section strong,
.why-stat strong {
  color: var(--ink);
}

.account-option-title {
  margin-top: 24px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.account-option-title + p {
  margin-top: 8px;
}

.stat-callout {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(46, 119, 117, 0.18);
  border-bottom: 1px solid rgba(46, 119, 117, 0.18);
}

.stat-callout strong {
  color: var(--teal-deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.stat-callout span {
  max-width: 520px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.why-challenge {
  background: rgba(237, 245, 243, 0.44);
  padding: 28px;
  border: 1px solid rgba(46, 119, 117, 0.18);
  border-radius: var(--radius);
}

.prose {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 119, 117, 0.16);
  border-radius: var(--radius);
}

.prose h2 {
  margin-top: 34px;
  font-size: 26px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 24px;
}

.prose p,
.prose ul,
.prose ol {
  margin-top: 12px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--muted);
}

.prose li + li {
  margin-top: 8px;
}

.legal-notice {
  color: var(--ink);
  background: rgba(237, 245, 243, 0.86);
}

@media (min-width: 680px) {
  .card-grid,
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .download-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .download-actions {
    justify-content: flex-end;
    margin-top: 0;
  }

}

@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    padding: 52px 0 12px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.85fr);
    column-gap: 42px;
    row-gap: 26px;
  }

  h1,
  .display {
    font-size: 48px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: min(39.6vw, 450px);
    justify-self: end;
  }

  .status-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

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

@media (max-width: 420px) {
  .nav-shell,
  .container,
  .footer-shell {
    width: min(calc(100% - 24px), var(--content));
  }

  .footer-shell {
    justify-content: center;
    text-align: center;
  }

  .brand-image {
    width: 124px;
    height: 52px;
  }

  h1,
  .display {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .lead,
  .page-lead {
    font-size: 16px;
  }

  .hero-actions,
  .download-actions {
    align-items: center;
    justify-content: center;
  }

  .store-badge img {
    height: 41px;
  }

  .card,
  .feature-card,
  .note-panel,
  .download-panel,
  .prose,
  .contact-panel {
    padding: 18px;
  }
}

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