:root {
  --cream: #f4efe6;
  --cream-2: #ebe4d8;
  --paper: #fbf8f2;
  --sage: #a9b98d;
  --sage-2: #dfe7d7;
  --green: #355343;
  --green-dark: #203b30;
  --ink: #242420;
  --muted: #6e6a63;
  --line: #ddd4c7;
  --white: #fffdf8;
  --shadow: 0 20px 50px rgba(46, 55, 44, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 110px 0; }
.section-soft { background: var(--paper); }
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.4rem, 4vw, 4.6rem); }
h3 { font-size: 1.45rem; }
p { margin: 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid rgba(221, 212, 199, .8);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: 50% 14%;
  border-radius: 50%;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong {
  font-family: "Fraunces", serif;
  color: var(--green);
  font-size: 1.4rem;
}
.brand-copy small {
  color: var(--muted);
  font-size: .72rem;
  margin-top: 5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .93rem;
}
.site-nav > a:not(.button):hover { color: var(--green); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  margin: 5px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); }
.button-small { min-height: 44px; padding-inline: 18px; }
.button-secondary {
  color: var(--green);
  background: transparent;
}
.button-secondary:hover { color: var(--white); }
.full-width { width: 100%; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 75% 30%, rgba(169,185,141,.18), transparent 34%),
    linear-gradient(180deg, var(--cream), #f6f1e9);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
}
.hero-copy h1 {
  color: var(--green);
  max-width: 760px;
}
.hero-lede {
  max-width: 660px;
  margin-top: 26px;
  font-size: 1.17rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: var(--green);
  font-size: .88rem;
  font-weight: 700;
}
.trust-row li::before {
  content: "✓";
  margin-right: 8px;
}
.hero-visual { position: relative; }
.device-frame {
  border-radius: 24px;
  padding: 12px;
  background: #171815;
  box-shadow: var(--shadow);
}
.device-frame img {
  border-radius: 14px;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
}
.floating-note {
  position: absolute;
  left: -28px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.floating-note div { display: grid; }
.floating-note small { color: var(--muted); }
.note-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-2);
  color: var(--green);
  font-weight: 800;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-heading h2 { color: var(--green); }
.section-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.feature-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--sage);
  font-weight: 700;
}
.feature-card h3 { color: var(--green); }
.feature-card p { margin-top: 14px; color: var(--muted); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
}
.showcase-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.showcase-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top center;
}
.showcase-card figcaption {
  padding: 16px 20px;
  color: var(--muted);
  font-size: .9rem;
}
.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}
.sticky-copy {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}
.benefit-list { display: grid; gap: 18px; }
.benefit-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}
.benefit-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-2);
  color: var(--green);
  font-size: 1.35rem;
}
.benefit-item h3 { color: var(--green); }
.benefit-item p { margin-top: 8px; color: var(--muted); }
.management-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
}
.management-copy h2 { color: var(--white); }
.management-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255,255,255,.72);
}
.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.check-list li {
  margin: 10px 0;
  color: rgba(255,255,255,.86);
}
.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--sage);
}
.management-panel {
  background: var(--paper);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0,0,0,.3);
}
.fake-dashboard {
  display: grid;
  grid-template-columns: 175px 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background: white;
}
.dash-sidebar {
  padding: 26px 18px;
  background: #263d33;
  color: rgba(255,255,255,.72);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-sidebar strong {
  color: white;
  margin-bottom: 18px;
}
.dash-sidebar span {
  padding: 8px 10px;
  border-radius: 8px;
}
.dash-sidebar .active {
  background: rgba(255,255,255,.12);
  color: white;
}
.dash-content { padding: 26px; }
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.dash-top small { color: var(--muted); }
.dash-top h3 { color: var(--green); margin-top: 4px; }
.dash-top button {
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  color: white;
  background: var(--green);
}
.dash-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #ece8e1;
}
.avatar {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-2);
  color: var(--green);
  font-weight: 700;
}
.dash-row div { display: grid; }
.dash-row small { color: var(--muted); }
.status {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f1df;
  color: #3f6b35;
  font-size: .75rem;
}
.status.private { background: #f4ead5; color: #7a5f2f; }
.status.draft { background: #eeeeee; color: #666; }
.streaming-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 58px;
}
.streaming-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.streaming-copy h2 { color: var(--green); }
.streaming-copy > p:not(.eyebrow):not(.clarification) {
  margin-top: 22px;
  color: var(--muted);
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 30px;
}
.mini-grid div { display: grid; gap: 4px; }
.mini-grid strong { color: var(--green); }
.mini-grid span { color: var(--muted); font-size: .9rem; }
.clarification {
  margin-top: 28px;
  padding: 16px;
  border-left: 3px solid var(--sage);
  background: var(--white);
  color: var(--muted);
  font-size: .86rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.price-card.featured {
  background: var(--green);
  color: var(--white);
}
.price-label {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 12px;
}
.price span, .price small { color: var(--muted); }
.featured .price span, .featured .price small { color: rgba(255,255,255,.68); }
.price strong {
  font-family: "Fraunces", serif;
  font-size: 4rem;
  line-height: 1;
}
.price-note { color: rgba(255,255,255,.75); }
.price-card ul {
  padding-left: 20px;
  margin: 28px 0;
}
.price-card li { margin: 9px 0; }
.featured .button {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.section-about { background: var(--cream-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about-copy h2 { color: var(--green); }
.about-copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}
.about-values { display: grid; gap: 18px; }
.about-values div {
  padding: 24px;
  border: 1px solid rgba(53,83,67,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.45);
  display: grid;
  gap: 5px;
}
.about-values strong { color: var(--green); }
.about-values span { color: var(--muted); }
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-copy h2 { color: var(--green); }
.contact-copy > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
}
.contact-note {
  padding-top: 16px;
  font-size: .92rem;
}
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--green);
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(169,185,141,.18);
}
.form-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--green);
  font-size: .9rem;
}
.site-footer {
  background: #1f2f28;
  color: rgba(255,255,255,.78);
  padding: 30px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.footer-inner > div:first-child { display: grid; }
.footer-inner strong { color: white; }
.footer-links { display: flex; gap: 18px; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    inset: 82px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-grid,
  .split-layout,
  .management-grid,
  .streaming-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual { margin-top: 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-copy { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 78px 0; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 72px; }
  .site-nav { inset-top: 72px; }
  .brand-copy small { display: none; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .floating-note { position: static; margin-top: 14px; }
  .feature-grid,
  .showcase-grid,
  .pricing-grid,
  .mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .fake-dashboard {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    display: none;
  }
  .dash-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .dash-top button { width: 100%; }
  .dash-row {
    grid-template-columns: 42px 1fr;
  }
  .status { grid-column: 2; justify-self: start; }
}
