:root {
  --ink: #16211b;
  --muted: #59645d;
  --soft: #f5f3ec;
  --paper: #fffdf7;
  --line: #ded8cc;
  --leaf: #2e7d5b;
  --leaf-dark: #1f5e43;
  --mint: #dff1e7;
  --sun: #f4c95d;
  --clay: #c96f4a;
  --sky: #d9e9f7;
  --shadow: 0 20px 60px rgba(22, 33, 27, 0.14);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: var(--leaf-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(222, 216, 204, 0.7);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 22px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(22, 33, 27, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--leaf-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--leaf-dark);
  background: var(--leaf-dark);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(31, 94, 67, 0.18);
}

.button.secondary {
  background: transparent;
  color: var(--leaf-dark);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(223, 241, 231, 0.9), rgba(255, 253, 247, 0.94) 48%, rgba(217, 233, 247, 0.75));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: 48px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 22px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid rgba(46, 125, 91, 0.25);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #354139;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.launch-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.phone-stage {
  position: relative;
  min-height: 590px;
}

.phone-shell {
  position: absolute;
  inset: 0 68px auto auto;
  width: min(76vw, 275px);
  aspect-ratio: 1179 / 2556;
  padding: 10px;
  border-radius: 34px;
  background: #101712;
  box-shadow: var(--shadow);
}

.phone-shell.second {
  top: 92px;
  right: 250px;
  transform: rotate(-4deg);
  opacity: 0.94;
}

.phone-shell img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.mascot {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 164px;
  filter: drop-shadow(0 18px 24px rgba(22, 33, 27, 0.18));
}

.content-section {
  padding: 76px 22px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.feature-card,
.info-card,
.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
}

.feature-card {
  padding: 24px;
}

.feature-card strong,
.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.feature-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.art-band {
  overflow: hidden;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pet-strip {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(16px, 4vw, 54px);
  padding: 34px 0 0;
}

.pet-strip img {
  width: min(30vw, 230px);
  filter: drop-shadow(0 18px 18px rgba(22, 33, 27, 0.1));
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.9);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.info-card {
  padding: 18px;
}

.page-hero {
  padding: 74px 22px 42px;
  background: linear-gradient(120deg, var(--mint), var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-hero-inner,
.legal-body,
.backend-body {
  max-width: 940px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 780px;
  color: #344039;
  font-size: 1.12rem;
  line-height: 1.65;
}

.legal-body,
.backend-body {
  padding: 52px 22px 80px;
}

.legal-body h2,
.backend-body h2 {
  margin: 36px 0 12px;
  font-size: 1.45rem;
}

.legal-body p,
.legal-body li,
.backend-body p,
.backend-body li {
  color: var(--muted);
  line-height: 1.68;
}

.legal-body ul,
.backend-body ul {
  padding-left: 22px;
}

.callout {
  margin: 28px 0;
  padding: 20px;
  border-left: 4px solid var(--leaf);
  background: var(--soft);
}

.status-panel {
  margin-top: 28px;
  padding: 24px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 0 6px rgba(244, 201, 93, 0.2);
}

.status-dot.ok {
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(46, 125, 91, 0.18);
}

.status-dot.down {
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(201, 111, 74, 0.18);
}

code {
  padding: 0.16em 0.34em;
  border-radius: 5px;
  background: rgba(22, 33, 27, 0.08);
  color: #26332b;
  font-size: 0.92em;
}

pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #17211b;
  color: #f8f1df;
  line-height: 1.5;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #17211b;
  color: #f8f1df;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 22px;
}

.site-footer a {
  color: #f8f1df;
}

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

@media (max-width: 900px) {
  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 520px;
    max-width: 520px;
  }

  .phone-shell {
    right: 30px;
  }

  .phone-shell.second {
    right: 190px;
  }

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

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: auto;
  }

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

  .phone-stage {
    min-height: 430px;
  }

  .phone-shell {
    right: 8px;
    width: min(60vw, 245px);
    border-radius: 28px;
  }

  .phone-shell.second {
    top: 70px;
    right: min(42vw, 160px);
  }

  .mascot {
    width: 118px;
    bottom: 18px;
  }

  .content-section {
    padding: 56px 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
