:root {
  color-scheme: light;
  --forest: #164b3c;
  --forest-dark: #0d3329;
  --forest-soft: #2d6656;
  --cream: #f8f6ed;
  --paper: #fffef9;
  --sage: #e5eee7;
  --lime: #d9ed8e;
  --ink: #15201b;
  --muted: #59665f;
  --line: #d8dfd8;
  --shadow: 0 24px 70px rgba(19, 57, 46, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 2%, rgba(217, 237, 142, 0.27), transparent 27rem),
    linear-gradient(180deg, #fbfaf4 0%, var(--cream) 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--forest); }
a:hover { color: var(--forest-dark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: .75rem 1rem;
  border-radius: .75rem;
  background: var(--paper);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--forest-dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 2px solid rgba(22, 75, 60, .18);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(19, 57, 46, .09);
}

.brand-mark svg { width: 1.45rem; height: 1.45rem; }

nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .3rem; }

nav a {
  padding: .48rem .72rem;
  border-radius: 999px;
  color: var(--forest-dark);
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover, nav a[aria-current="page"] { background: rgba(22, 75, 60, .08); }

main { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.2rem, 8vw, 7rem) 0 clamp(4rem, 9vw, 7.5rem);
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, .55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.2rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.editorial-video {
  display: block;
  width: min(100%, 25rem);
  margin: 0 auto;
  border: 1px solid rgba(22, 75, 60, .15);
  border-radius: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.press-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.press-facts { align-items: start; }

.story-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-copy {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: .45rem solid var(--lime);
  border-radius: 0 1.35rem 1.35rem 0;
  background: rgba(255, 254, 249, .88);
  box-shadow: 0 12px 32px rgba(19, 57, 46, .06);
}

.story-copy p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.story-copy p + p { margin-top: 1rem; }

.method-note {
  max-width: 50rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.asset-card {
  display: grid;
  gap: .45rem;
  color: var(--forest-dark);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
}

.asset-card img {
  display: block;
  width: 100%;
  aspect-ratio: 886 / 1920;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(19, 57, 46, .08);
}

.asset-card:first-child img { aspect-ratio: 1; }
.asset-card span { color: var(--muted); font-size: .78rem; font-weight: 550; }

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--forest-soft);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--forest-dark); line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 14ch; margin: 0; font-size: clamp(2.7rem, 7vw, 5.6rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { margin: 0 0 .45rem; font-size: 1.18rem; }

.lede { max-width: 39rem; margin: 1.3rem 0 0; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.27rem); }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: .75rem 1.15rem;
  border: 1px solid var(--forest);
  border-radius: .95rem;
  background: var(--forest);
  color: white;
  font-weight: 760;
  text-decoration: none;
}

.button:hover { background: var(--forest-dark); color: white; }
.button.secondary { background: transparent; color: var(--forest); }
.button.secondary:hover { background: rgba(22, 75, 60, .07); color: var(--forest-dark); }

.fine-print { margin-top: .8rem; color: var(--muted); font-size: .88rem; }

.phone {
  max-width: 24rem;
  margin: 0 auto;
  padding: .75rem;
  border: 1px solid rgba(22, 75, 60, .15);
  border-radius: 2.8rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  transform: rotate(1.7deg);
}

.phone-screen {
  overflow: hidden;
  min-height: 34rem;
  padding: 1.25rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, #fbfaf3, #f1f4e9);
}

.phone-top { display: flex; justify-content: space-between; margin-bottom: 1rem; color: var(--forest); font-weight: 800; }

.list-hero {
  padding: 1.35rem;
  border-radius: 1.65rem;
  background: var(--forest);
  color: white;
}

.list-hero small { color: var(--lime); font-weight: 850; letter-spacing: .12em; }
.list-hero strong { display: block; margin: .45rem 0 1rem; font-size: 2.3rem; line-height: 1; }
.list-hero span { font-weight: 700; }

.quick-add, .mock-card {
  margin-top: .85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--paper);
}

.quick-add { color: #849089; font-weight: 700; }
.mock-card { display: flex; align-items: center; gap: .8rem; }
.check { width: 1.65rem; height: 1.65rem; flex: none; border: 3px solid #94a098; border-radius: 50%; }
.mock-card strong { display: block; color: var(--ink); }
.mock-card small { color: var(--muted); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-heading { max-width: 43rem; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }

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

.card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 254, 249, .88);
  box-shadow: 0 12px 32px rgba(19, 57, 46, .06);
}

.card p { margin: 0; color: var(--muted); }
.icon { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; margin-bottom: 1rem; border-radius: .85rem; background: var(--sage); color: var(--forest); font-size: 1.25rem; }

.premium {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 2rem;
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow);
}

.premium h2, .premium h3 { color: white; }
.premium .eyebrow { color: var(--lime); }
.premium p, .premium li { color: rgba(255,255,255,.82); }
.premium ul { margin: 0; padding-left: 1.25rem; }
.premium li + li { margin-top: .55rem; }

.page-hero { max-width: 48rem; padding: clamp(3rem, 8vw, 6rem) 0 2.5rem; }
.page-hero h1 { max-width: 17ch; font-size: clamp(2.5rem, 6vw, 4.5rem); }

.content {
  max-width: 49rem;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 254, 249, .92);
  box-shadow: 0 18px 50px rgba(19, 57, 46, .07);
}

.content h2 { margin-top: 2.6rem; font-size: 1.65rem; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin-top: 1.8rem; }
.content p, .content li { color: #39463f; }
.content li + li { margin-top: .42rem; }
.content .notice { padding: 1rem 1.1rem; border-left: 4px solid var(--forest); border-radius: .4rem; background: var(--sage); }

.contact-card { padding: 1.35rem; border-radius: 1.1rem; background: var(--sage); }
.contact-card p { margin: .25rem 0; }

footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  nav { max-width: 12rem; }
  .hero, .press-hero, .premium, .story-section { grid-template-columns: 1fr; }
  .hero, .press-hero { padding-top: 2rem; }
  .grid, .press-grid { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone { width: min(100%, 22rem); transform: none; }
}

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