:root {
  --ink: #17352e;
  --muted: #5f766f;
  --brand: #0f735d;
  --brand-dark: #0b5d4b;
  --mint: #dff5ec;
  --pale: #f5fbf8;
  --line: #dce9e4;
  --white: #fff;
  --warm: #fbf7ef;
  --shadow: 0 28px 80px rgba(35, 83, 69, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  display: block;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 78px;
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.site-header nav a {
  text-decoration: none;
  color: #425e56;
  font-size: 0.94rem;
  font-weight: 600;
}
.site-header nav a:hover,
.site-header nav a:focus {
  color: var(--brand-dark);
}
.site-header .nav-cta {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}
.section-shell {
  max-width: 1200px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 74px;
  padding-top: 74px;
  padding-bottom: 95px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 18px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0a546;
  margin-right: 9px;
  box-shadow: 0 0 0 5px #f9efdd;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.25rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
  max-width: 680px;
}
.hero-lede {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 750;
}
.button.primary {
  background: var(--brand);
  color: white;
}
.button.primary:hover {
  background: var(--brand-dark);
}
.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}
.microcopy {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 20px;
}
.product-frame {
  background: linear-gradient(145deg, #effaf6, #f8f7ef);
  border: 1px solid #d8ebe3;
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.frame-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}
.demo-chip {
  font-size: 0.68rem;
  font-weight: 750;
  color: #6c7773;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 10px;
}
.today-card,
.receipt-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.card-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.card-heading h2 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 0;
}
.trend {
  background: var(--mint);
  color: var(--brand-dark);
  font-weight: 800;
  border-radius: 100px;
  padding: 4px 9px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.today-card p:last-of-type {
  color: var(--muted);
  font-size: 0.88rem;
}
.chart {
  height: 78px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 15px;
}
.chart i {
  display: block;
  flex: 1;
  background: linear-gradient(#34a88b, #9bd8c6);
  border-radius: 5px 5px 2px 2px;
}
.receipt-card {
  margin-top: 12px;
}
.receipt-card > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.receipt-icon {
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--brand-dark);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-weight: 900;
}
.receipt-card dl {
  margin: 15px 0 0;
  display: grid;
  gap: 9px;
}
.receipt-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #edf3f0;
  padding-top: 8px;
  font-size: 0.77rem;
}
.receipt-card dt {
  color: var(--muted);
}
.receipt-card dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(30px, calc((100vw - 1140px) / 2));
  background: var(--pale);
}
.trust-strip div {
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}
.trust-strip div:first-child {
  border-left: 1px solid var(--line);
}
.trust-strip strong,
.trust-strip span {
  display: block;
}
.trust-strip strong {
  font-size: 0.88rem;
}
.trust-strip span {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 3px;
}
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-intro {
  max-width: 720px;
  margin-bottom: 55px;
}
.section-intro.compact {
  margin-bottom: 40px;
}
.section h2,
.soft-section h2,
.closing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 20px;
}
.section-intro > p:last-child,
.privacy-layout > div > p,
.language-panel > p,
.closing p {
  color: var(--muted);
  font-size: 1.03rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-grid article {
  min-height: 255px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  background: white;
}
.feature-number {
  font-family: Georgia, serif;
  color: #55766c;
  font-size: 1.25rem;
}
.feature-grid h3 {
  font-size: 1.08rem;
  margin: 52px 0 10px;
}
.feature-grid p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.soft-section {
  background: var(--pale);
  padding: 115px 0;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.text-link {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
  margin-top: 17px;
}
.boundary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.boundary-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.boundary-list li > span {
  font-family: Georgia, serif;
  color: #55766c;
}
.boundary-list strong {
  font-size: 0.96rem;
}
.boundary-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.language-panel {
  background: var(--warm);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.language-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}
.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.status-card {
  border: 1px solid var(--line);
  border-radius: 23px;
  padding: 30px;
}
.status-card > span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  font-weight: 800;
  border-radius: 100px;
  padding: 6px 10px;
}
.status-card.available > span {
  color: var(--brand-dark);
  background: var(--mint);
}
.status-card.pending > span {
  color: #8a5b15;
  background: #fbedd6;
}
.status-card h3 {
  font-size: 1.45rem;
  margin: 24px 0 17px;
}
.status-card ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}
.status-card li {
  padding: 4px 0;
}
.questions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 400;
}
details[open] summary:after {
  content: "–";
}
details p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 13px 30px 3px 0;
}
.closing {
  background: var(--ink);
  color: white;
  border-radius: 30px;
  padding: 55px 58px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}
.closing h2 {
  max-width: 700px;
}
.closing p {
  color: #bfd0ca;
  max-width: 650px;
}
.button.light {
  background: white;
  color: var(--ink);
  white-space: nowrap;
}
footer {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.footer-brand p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.84rem;
}
footer nav {
  display: flex;
  gap: 24px;
  align-items: start;
}
footer nav a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}
.footer-note {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 0.72rem;
  margin: 5px 0 0;
}
.legal-main {
  max-width: 800px;
  margin: 75px auto 120px;
  padding: 0 30px;
}
.legal-main h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.legal-main h2 {
  font-size: 1.25rem;
  margin-top: 42px;
}
.legal-main p,
.legal-main li {
  color: var(--muted);
}
.legal-callout {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  margin: 30px 0;
}
.back-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .product-frame {
    max-width: 650px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip div:first-child {
    border-left: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .privacy-layout,
  .questions {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .language-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .closing {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .site-header {
    padding: 0 20px;
  }
  .nav-toggle {
    display: block;
  }
  .site-header nav {
    position: absolute;
    z-index: 20;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 11px;
  }
  .site-header .nav-cta {
    border: 0;
    border-radius: 8px;
    background: var(--pale);
  }
  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 70px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .product-frame {
    padding: 14px;
    border-radius: 22px;
  }
  .frame-top {
    align-items: start;
  }
  .demo-chip {
    font-size: 0.6rem;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .trust-strip div,
  .trust-strip div:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .feature-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    min-height: 210px;
  }
  .soft-section {
    padding: 85px 0;
  }
  .language-panel {
    padding: 30px 24px;
  }
  .closing {
    margin: 0 20px 80px;
    padding: 38px 28px;
    border-radius: 22px;
  }
  .section-shell.closing {
    width: auto;
  }
  .card-heading {
    display: block;
  }
  .trend {
    display: inline-block;
    margin-top: 9px;
  }
  footer {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  footer nav {
    flex-wrap: wrap;
  }
  .footer-note {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
