:root {
  color-scheme: light;
  --felt: #126f36;
  --felt-dark: #0b4f28;
  --felt-deep: #083a21;
  --ink: #17201b;
  --muted: #5c6b62;
  --paper: #fbfbf8;
  --panel: #f0f0ec;
  --line: #d6d6cf;
  --gold: #f2c94c;
  --red: #c62828;
}

* {
  box-sizing: border-box;
}

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.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 79, 40, 0.92);
  color: white;
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, var(--felt-deep) 0%, #13703a 58%, #315f32 100%);
  background-size: 28px 28px, 28px 28px, auto;
  color: white;
}

.hero-inner {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
  padding: 64px 0 72px;
}

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

.app-icon {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: 88px;
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 750;
}

.hero-points svg,
.feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: white;
  color: var(--felt-dark);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.store-note {
  display: block;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.device-showcase {
  position: relative;
  width: min(100%, 500px);
  min-height: 700px;
  justify-self: end;
}

.phone-frame {
  position: absolute;
  border-radius: 34px;
  padding: 12px 12px 14px;
  background: #f7f7f0;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
}

.phone-frame-main {
  left: 0;
  top: 0;
  z-index: 2;
  width: 304px;
}

.phone-frame-side {
  right: 0;
  top: 76px;
  z-index: 1;
  width: 214px;
  opacity: 0.98;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  margin: 3px auto 12px;
  border-radius: 999px;
  background: #2d3b32;
  opacity: 0.36;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 540 / 1212;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  object-fit: cover;
}

.section {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.eyebrow.dark {
  color: var(--felt);
}

.section h2 {
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1.05;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, white, var(--panel));
  box-shadow: 0 18px 46px rgba(23, 32, 27, 0.06);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #e4f1e9;
  color: var(--felt-dark);
  box-shadow: inset 0 0 0 1px rgba(18, 111, 54, 0.12);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 70px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: 58px;
}

.legal-page h2 {
  margin: 34px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page .updated {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ebebe6;
}

.footer-inner {
  width: min(1080px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 840px) {
  .nav {
    min-height: 58px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 46px 0 54px;
    gap: 40px;
  }

  h1 {
    font-size: 64px;
  }

  .lead {
    font-size: 20px;
  }

  .device-showcase {
    justify-self: start;
  }

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

  .section h2 {
    font-size: 36px;
  }

  .legal-page h1 {
    font-size: 44px;
  }
}

@media (max-width: 520px) {
  .nav-links a:first-child {
    display: none;
  }

  .app-icon {
    width: 82px;
    height: 82px;
    border-radius: 20px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 18px;
  }

  .device-showcase {
    min-height: 725px;
  }

  .phone-frame-main {
    left: 50%;
    width: min(100%, 318px);
    transform: translateX(-50%);
  }

  .phone-frame-side {
    display: none;
  }

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

  .section h2 {
    font-size: 32px;
  }

  .legal-page h1 {
    font-size: 38px;
  }
}
