:root {
  --ink: #13231b;
  --ink-soft: #46534b;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --sage: #6f9675;
  --sage-dark: #285846;
  --sage-deep: #0b271d;
  --mint: #d9e7d3;
  --coral: #d97966;
  --line: rgba(19, 35, 27, 0.14);
  --shadow: 0 28px 80px rgba(14, 37, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(20, 60, 43, 0.18);
}

nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

nav a,
.footer-links a,
.text-link {
  transition: color 160ms ease;
}

nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--sage-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  width: min(1180px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  padding: 52px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 7.6vw, 7.2rem);
}

h1 em {
  color: var(--sage);
  font-weight: inherit;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--sage-deep);
  box-shadow: 0 12px 30px rgba(11, 39, 29, 0.2);
}

.button-primary:hover {
  background: #123d2d;
  box-shadow: 0 16px 34px rgba(11, 39, 29, 0.26);
}

.availability {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--sage-dark);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 650px;
}

.hero-visual::before {
  position: absolute;
  inset: 5% 2% 0 4%;
  border-radius: 52% 48% 49% 51% / 44% 42% 58% 56%;
  background:
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.78), transparent 23%),
    linear-gradient(155deg, #dbe7d1 0%, #9ab79b 56%, #658d73 100%);
  content: "";
  filter: drop-shadow(0 35px 45px rgba(35, 77, 57, 0.18));
  transform: rotate(-5deg);
}

.app-shot {
  position: relative;
  z-index: 3;
  width: min(360px, 72%);
  max-height: 650px;
  border: 7px solid rgba(255, 255, 255, 0.85);
  border-radius: 42px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top;
  transform: rotate(4deg);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
}

.glow-one {
  top: 8%;
  right: 4%;
  width: 150px;
  height: 150px;
  background: rgba(255, 248, 221, 0.62);
}

.glow-two {
  bottom: 10%;
  left: 0;
  width: 170px;
  height: 170px;
  background: rgba(88, 139, 103, 0.35);
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 36px rgba(19, 48, 35, 0.16);
  backdrop-filter: blur(14px);
  font-size: 0.84rem;
}

.floating-card-top {
  top: 21%;
  left: -1%;
}

.floating-card-bottom {
  right: -2%;
  bottom: 15%;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.floating-card-bottom span {
  color: var(--ink-soft);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(111, 150, 117, 0.16);
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 60px);
  min-height: 90px;
  padding: 20px 24px;
  color: #d9e5dd;
  background: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-style: italic;
}

.proof-strip p {
  margin: 0;
}

.proof-strip span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #87a990;
}

.features {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  column-gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.privacy-callout h2,
.closing h2,
.legal-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.9rem, 5.5vw, 5.1rem);
}

.section-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 290px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.76);
}

.feature-card-wide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.8fr);
  gap: 30px;
  grid-column: 1 / -1;
  min-height: 330px;
  overflow: hidden;
  color: white;
  background: var(--sage-deep);
}

.feature-card-wide .feature-icon {
  grid-column: 1 / -1;
  color: #9bb4a3;
}

.feature-card-accent {
  background: #dce8d7;
}

.feature-icon {
  margin-bottom: 64px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.feature-card-wide .feature-icon {
  margin-bottom: 5px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.feature-card-wide p {
  color: #b8cbbf;
}

.mini-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: end;
}

.mini-ui > div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 2px 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-ui small {
  grid-column: 2;
  color: #9bb4a3;
}

.mini-dot {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
}

.mini-dot.sage {
  background: #87b18f;
}

.mini-dot.coral {
  background: var(--coral);
}

.privacy-callout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 20px auto 130px;
  padding: clamp(34px, 6vw, 78px);
  border-radius: 36px;
  background: #e7ecdf;
}

.privacy-mark {
  display: grid;
  min-height: 300px;
  place-items: center;
  border-radius: 48% 52% 47% 53% / 56% 43% 57% 44%;
  background: linear-gradient(145deg, #b9cfaf, #789d7d);
}

.privacy-mark img {
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(26, 67, 48, 0.24);
  transform: rotate(-7deg);
}

.privacy-callout h2 {
  margin-bottom: 24px;
}

.privacy-callout > div:last-child > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  color: var(--sage-dark);
  font-weight: 780;
}

.closing {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 130px 24px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(90, 138, 107, 0.55), transparent 35%),
    #07110d;
}

.closing img {
  margin-bottom: 34px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.closing .eyebrow {
  color: #90ad98;
}

.closing h2 {
  margin-bottom: 42px;
}

.button-light {
  color: var(--sage-deep);
  background: var(--paper);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px 50px;
  padding: 52px max(24px, calc((100% - 1180px) / 2));
  color: #aebcb3;
  background: #07110d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: white;
}

footer > p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-links {
  grid-row: 1;
  grid-column: 2;
  color: #ccd6cf;
}

.copyright {
  grid-column: 2;
  text-align: right;
}

.legal-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 168, 134, 0.23), transparent 32%),
    var(--cream);
}

.legal-main {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 130px;
}

.legal-hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 22px;
}

.legal-hero p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-content {
  padding-top: 42px;
}

.legal-content section {
  margin-bottom: 44px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--sage);
  border-radius: 4px 14px 14px 4px;
  background: #e5ecdf;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.8);
}

summary {
  cursor: pointer;
  font-weight: 740;
}

details p {
  margin: 12px 0 0;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .hero-visual {
    min-height: 610px;
  }

  .section-heading,
  .privacy-callout {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .privacy-mark {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  nav {
    gap: 16px;
  }

  nav a:first-child {
    display: none;
  }

  .hero,
  .features,
  .privacy-callout,
  .legal-main {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 530px;
  }

  .app-shot {
    width: 76%;
    max-height: 530px;
    border-radius: 34px;
  }

  .floating-card-top {
    left: -4%;
  }

  .floating-card-bottom {
    right: -4%;
  }

  .proof-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 26px 32px;
  }

  .proof-strip span {
    display: none;
  }

  .features {
    padding: 94px 0;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 250px;
  }

  .feature-icon {
    margin-bottom: 44px;
  }

  .privacy-callout {
    margin-bottom: 90px;
  }

  .closing {
    padding: 100px 24px;
  }

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

  .copyright {
    text-align: left;
  }

  .legal-main {
    padding-top: 60px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
