:root {
  color-scheme: light;
  --bg: #fff8f5;
  --bg-2: #fde4e8;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: #ffffff;
  --ink: #382725;
  --muted: #9a7b75;
  --accent: #f45f7b;
  --accent-soft: #ffd7df;
  --lavender: #bba3ef;
  --sage: #8fbea0;
  --gold: #efbf58;
  --border: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 60px rgba(225, 117, 137, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 207, 218, 0.8), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(208, 191, 255, 0.35), transparent 24rem),
    linear-gradient(135deg, var(--bg) 0%, #fffaf3 45%, var(--bg-2) 100%);
}

a {
  color: inherit;
  text-decoration-color: rgba(244, 95, 123, 0.45);
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer,
main {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #ffdce4);
  box-shadow: 0 12px 28px rgba(244, 95, 123, 0.22);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: #6f5752;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 32px;
  padding: 48px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 238, 242, 0.64));
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
}

h1 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lead {
  max-width: 680px;
  font-size: 20px;
}

.hero-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
}

.kimo-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 214, 223, 0.85), transparent 12rem),
    linear-gradient(145deg, #fff, #ffeff3);
  text-align: center;
}

.kimo-face {
  width: 142px;
  aspect-ratio: 1;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(94, 59, 54, 0.16);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(244, 95, 123, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid var(--border);
}

.section {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(150, 83, 96, 0.1);
}

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

.tile {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.notice {
  border-left: 5px solid var(--sage);
}

.fine-print,
.site-footer p {
  font-size: 14px;
}

.policy h2,
.policy h3 {
  margin-top: 28px;
}

.policy ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  padding: 34px 0 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
  margin-top: 20px;
  padding: 50px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 95, 123, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 18%, rgba(187, 163, 239, 0.24), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 231, 237, 0.72));
  box-shadow: var(--shadow);
}

.roadmap-hero h1 {
  margin-top: 18px;
}

.roadmap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.phone-preview {
  position: relative;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 236, 240, 0.76)),
    radial-gradient(circle at 50% 38%, rgba(244, 95, 123, 0.18), transparent 12rem);
  box-shadow: 0 30px 70px rgba(90, 51, 59, 0.14);
}

.phone-preview::before {
  content: "";
  display: block;
  width: 108px;
  height: 28px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: #2f2524;
}

.phone-top {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.phone-top img,
.kimo-mini-card img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
}

.phone-top strong,
.phone-top span {
  display: block;
}

.phone-top span,
.kimo-mini-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.paw-orbit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.paw-orbit span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  color: #7a5c56;
  font-weight: 900;
}

.paw-orbit span:first-child {
  grid-column: span 2;
  background: linear-gradient(145deg, #f45f7b, #f6a8ba);
  color: #fff;
  box-shadow: 0 16px 38px rgba(244, 95, 123, 0.24);
}

.kimo-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
}

.principle-band,
.circle-section,
.trust-panel {
  margin-top: 34px;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(150, 83, 96, 0.1);
}

.principle-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: start;
}

.principle-grid,
.circle-cards,
.harness-list {
  display: grid;
  gap: 14px;
}

.principle-grid article,
.circle-cards article,
.harness-list div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 250, 248, 0.68);
}

.principle-grid strong,
.circle-cards strong,
.harness-list strong,
.harness-list span {
  display: block;
}

.principle-grid span,
.circle-cards span,
.harness-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading-row p {
  max-width: 390px;
  margin: 0;
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 16%, var(--feature-glow), transparent 6rem),
    rgba(255, 255, 255, 0.64);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 50px;
  height: 40px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--feature-bg);
  color: var(--feature-ink);
  font-size: 13px;
  font-weight: 900;
}

.accent-coral { --feature-bg: #ffd7df; --feature-ink: #f45f7b; --feature-glow: rgba(244, 95, 123, 0.18); }
.accent-sage { --feature-bg: #dbf1e2; --feature-ink: #5f9f75; --feature-glow: rgba(143, 190, 160, 0.22); }
.accent-lavender { --feature-bg: #eee7ff; --feature-ink: #9075d5; --feature-glow: rgba(187, 163, 239, 0.22); }
.accent-blue { --feature-bg: #e4f3ff; --feature-ink: #6fa9d7; --feature-glow: rgba(111, 169, 215, 0.2); }
.accent-gold { --feature-bg: #fff0c9; --feature-ink: #c9962d; --feature-glow: rgba(239, 191, 88, 0.24); }
.accent-peach { --feature-bg: #ffe0d4; --feature-ink: #d67762; --feature-glow: rgba(214, 119, 98, 0.2); }

.circle-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(187, 163, 239, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 238, 242, 0.7));
}

.sharing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.share-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.share-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.can-share {
  background: linear-gradient(145deg, rgba(255, 245, 248, 0.88), rgba(255, 255, 255, 0.68));
}

.never-share {
  background: linear-gradient(145deg, rgba(238, 247, 241, 0.88), rgba(255, 255, 255, 0.68));
}

.roadmap-timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-timeline li {
  display: grid;
  grid-template-columns: auto 0.38fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.roadmap-timeline p {
  margin: 0;
}

.status-chip {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  margin-bottom: 10px;
  background:
    radial-gradient(circle at 80% 0%, rgba(143, 190, 160, 0.2), transparent 16rem),
    rgba(255, 255, 255, 0.78);
}

@media (max-width: 800px) {
  .site-header,
  .hero {
    align-items: flex-start;
  }

  .site-header,
  nav,
  .cta-row {
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 28px;
  }

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

  .roadmap-hero,
  .principle-band,
  .circle-section,
  .trust-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 28px;
  }

  .roadmap-hero > *,
  .principle-band > *,
  .circle-section > *,
  .trust-panel > * {
    min-width: 0;
  }

  .roadmap-hero h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .roadmap-hero .lead {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .roadmap-actions .button {
    flex: 1 1 100%;
  }

  .phone-preview {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 20px;
    border-radius: 34px;
  }

  .phone-preview::before {
    width: 92px;
    height: 24px;
  }

  .paw-orbit {
    grid-template-columns: 1fr;
  }

  .paw-orbit span:first-child {
    grid-column: auto;
  }

  .section-heading-row {
    display: block;
  }

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

  .roadmap-timeline li {
    grid-template-columns: 1fr;
  }
}
