@font-face {
  font-family: "Montserrat";
  src: url("/site/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/site/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/site/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/site/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #14241d;
  --muted: #53645b;
  --paper: #fffaf0;
  --paper-strong: #ffffff;
  --forest: #123f2a;
  --forest-2: #0d2f22;
  --leaf: #237246;
  --gold: #d99a31;
  --coral: #c85d42;
  --sky: #dceef2;
  --line: rgba(20, 36, 29, 0.16);
  --shadow: 0 24px 70px rgba(15, 35, 27, 0.18);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f7f3e8;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

p,
li,
dd {
  color: var(--muted);
  line-height: 1.68;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.06;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.65rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 8px;
  background: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 63, 42, 0.92);
  padding: 12px max(20px, calc((100% - var(--container)) / 2));
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.site-mark,
.nav-links,
.footer-inner nav,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
}

.site-mark {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.site-mark img {
  border-radius: 8px;
}

.nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.footer-inner a {
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.footer-inner a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 11px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 42, 30, 0.92), rgba(18, 63, 42, 0.8) 48%, rgba(15, 35, 41, 0.64)),
    url("/site/assets/woodgrain-background.png") center / cover,
    var(--forest);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(247, 243, 232, 0), #f7f3e8 82%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 50px;
}

.hero-logo {
  width: 270px;
  height: auto;
  margin-bottom: 18px;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero dt,
.hero dd {
  color: #ffffff;
}

.hero h1 {
  max-width: 780px;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.eyebrow,
.card-kicker {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.band-forest .eyebrow,
.final-cta .eyebrow {
  color: #ffd98b;
}

.hero-actions,
.final-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  border: 1px solid rgba(124, 224, 139, 0.42);
  border-radius: 999px;
  background: rgba(25, 125, 68, 0.24);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.server-status-state {
  color: #bff4c9;
}

.server-status-separator {
  color: rgba(255, 255, 255, 0.54);
}

.server-status-pill strong {
  color: #ffffff;
  font-size: 0.94rem;
}

.server-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7ce08b;
  box-shadow: 0 0 0 4px rgba(124, 224, 139, 0.18);
}

.server-status-pill[data-status="busy"] .server-status-dot {
  background: #ffd166;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.18);
}

.server-status-pill[data-status="busy"] {
  border-color: rgba(255, 209, 102, 0.52);
  background: rgba(141, 93, 12, 0.28);
}

.server-status-pill[data-status="busy"] .server-status-state {
  color: #ffe4a3;
}

.server-status-pill[data-status="strained"] .server-status-dot {
  background: #ff8a78;
  box-shadow: 0 0 0 4px rgba(255, 138, 120, 0.18);
}

.server-status-pill[data-status="strained"] {
  border-color: rgba(255, 138, 120, 0.56);
  background: rgba(142, 40, 32, 0.3);
}

.server-status-pill[data-status="strained"] .server-status-state {
  color: #ffc0b6;
}

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

.button-primary {
  background: var(--gold);
  color: #1b241d;
}

.button-primary:hover {
  background: #efb14a;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.section .button-secondary {
  border-color: rgba(20, 36, 29, 0.22);
  background: #ffffff;
  color: var(--forest);
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: max(18px, calc((100% - var(--container)) / 2));
  bottom: 54px;
  width: 42%;
  min-width: 430px;
  max-width: 610px;
  height: 70%;
  pointer-events: none;
}

.hero-phone {
  position: absolute;
  width: 47%;
  min-width: 210px;
  max-width: 300px;
  border: 6px solid rgba(10, 18, 20, 0.9);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.44);
}

.hero-phone-main {
  z-index: 2;
  right: 16%;
  top: 0;
}

.hero-phone-side {
  z-index: 1;
  right: 0;
  bottom: 4px;
  transform: rotate(4deg);
}

.section {
  padding: 86px 0;
  background: #f7f3e8;
}

.section-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 1.05rem;
}

.band-light {
  background: var(--paper);
}

.band-sky {
  background: linear-gradient(180deg, var(--sky), #f7f3e8);
}

.band-forest,
.final-cta {
  background: var(--forest);
}

.band-forest h2,
.band-forest h3,
.band-forest p,
.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.band-forest .section-heading p,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.quick-answer {
  border-bottom: 1px solid var(--line);
  background: #f7f3e8;
  padding: 38px 0;
}

.quick-answer-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}

.quick-answer h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.quick-answer-grid > p {
  margin-bottom: 0;
  color: #314238;
  font-size: 1.12rem;
}

.quick-facts {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 0;
}

.quick-facts div {
  border-left: 3px solid var(--gold);
  padding: 6px 16px 4px;
}

.quick-facts dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 800;
}

.quick-facts dd {
  margin: 0;
  font-size: 0.92rem;
}

.step-grid,
.mode-grid,
.style-grid,
.tracker-grid {
  display: grid;
  gap: 18px;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li,
.feature-card,
.style-card,
.tracker-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 38px rgba(15, 35, 27, 0.08);
}

.step-grid li {
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 800;
}

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

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.feature-card ul,
.check-list,
.privacy-points {
  margin: 18px 0 0;
  padding-left: 20px;
}

.feature-card li,
.check-list li,
.privacy-points li {
  margin-bottom: 8px;
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.style-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 26px;
  background: rgba(255, 250, 240, 0.98);
}

.style-card img {
  width: 108px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.style-card h3,
.style-card p {
  color: var(--ink);
}

.split-layout,
.privacy-layout,
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}

.phone-gallery img {
  width: 100%;
  border: 5px solid #111817;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.phone-gallery img:nth-child(2) {
  transform: translateY(-28px);
}

.tracker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tracker-grid article {
  flex: 0 1 calc((100% - 54px) / 4);
  padding: 20px;
  text-align: center;
}

.tracker-grid article:nth-last-child(3) {
  grid-column: auto;
}

.tracker-grid img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  display: block;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 38px rgba(15, 35, 27, 0.08);
  text-decoration: none;
}

.guide-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e7f1e9;
  padding: 8px 10px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-card:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-layout {
  align-items: start;
}

.privacy-points {
  border-left: 4px solid var(--leaf);
  margin: 0;
  padding: 4px 0 4px 26px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  padding: 72px 0;
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-actions {
  justify-content: flex-end;
}

.site-footer {
  background: var(--forest-2);
  color: #ffffff;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding-top: 64px;
  }

  .hero-art {
    opacity: 0.58;
    right: 20px;
  }

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

  .tracker-grid article {
    flex-basis: calc((100% - 18px) / 2);
  }

  .split-layout,
  .privacy-layout,
  .final-cta-inner,
  .quick-answer-grid {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 10px 14px;
  }

  .site-mark span {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
  }

  .hero {
    min-height: calc(100svh - 118px);
  }

  .hero-inner {
    width: min(100% - 28px, var(--container));
    padding: 38px 0 44px;
  }

  .hero-logo {
    width: 220px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-art {
    position: absolute;
    right: -110px;
    top: 72px;
    bottom: auto;
    width: 390px;
    min-width: 0;
    height: 520px;
    margin: 0;
    opacity: 0.24;
  }

  .hero-phone {
    width: 52%;
    min-width: 0;
  }

  .hero-phone-main {
    left: auto;
    right: 40%;
    top: 0;
  }

  .hero-phone-side {
    right: 0;
    bottom: auto;
    top: 100px;
  }

  .quick-facts,
  .step-grid,
  .mode-grid,
  .style-grid,
  .guide-grid,
  .phone-gallery {
    grid-template-columns: 1fr;
  }

  .tracker-grid article {
    flex-basis: 100%;
  }

  .quick-facts {
    gap: 14px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .server-status-pill {
    margin-top: 14px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-inner {
    width: min(100% - 28px, var(--container));
  }

  .phone-gallery {
    max-width: 290px;
    margin: 0 auto;
  }

  .phone-gallery img:nth-child(2) {
    transform: none;
  }

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

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
