:root {
  color-scheme: light;
  --ink: #132838;
  --ink-strong: #071620;
  --muted: #586b7b;
  --soft: #7b8b98;
  --paper: #f7f8f3;
  --paper-warm: #fff8ea;
  --panel: #ffffff;
  --panel-soft: #f4fbfa;
  --line: #dce7e1;
  --line-strong: #bed1cb;
  --teal: #08b8ba;
  --teal-strong: #057f84;
  --teal-soft: #e2f8f7;
  --blue: #1f7bd1;
  --blue-soft: #e8f2ff;
  --green: #39a86f;
  --green-soft: #e8f7ee;
  --gold: #d99a26;
  --gold-soft: #fff3d7;
  --coral: #de684f;
  --coral-soft: #ffebe4;
  --violet: #7766d8;
  --violet-soft: #efecff;
  --shadow-soft: 0 18px 48px rgba(19, 40, 56, 0.12);
  --shadow-panel: 0 10px 30px rgba(19, 40, 56, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
strong,
dt {
  color: var(--ink-strong);
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.45rem, 6.8vw, 5.4rem);
  font-weight: 580;
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 3.5vw, 2.85rem);
  font-weight: 560;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  font-weight: 560;
  line-height: 1.25;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(190, 208, 203, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.site-footer nav,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  min-width: max-content;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 590;
  text-decoration: none;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 560;
}

.brand.small {
  font-size: 1rem;
}

.site-header nav,
.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header a,
.site-footer a {
  text-decoration: none;
}

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 560;
}

.site-footer nav a.product-attribution {
  color: var(--ink);
  font-weight: 540;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--ink-strong);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(8, 184, 186, 0.34);
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal-strong) !important;
}

.nav-cta small,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 243, 0.99) 0%, rgba(247, 248, 243, 0.96) 34%, rgba(247, 248, 243, 0.78) 62%, rgba(247, 248, 243, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(247, 248, 243, 0.92));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 0.92fr);
  gap: 52px;
  align-items: center;
  width: min(1300px, calc(100% - 72px));
  min-height: 730px;
  margin: 0 auto;
  padding: 64px 0 84px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-strong);
  font-size: 0.96rem;
  font-weight: 620;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 24px;
  color: #263a49;
  font-size: clamp(1.14rem, 2vw, 1.34rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 590;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(19, 40, 56, 0.06);
}

.button.primary {
  border-color: #087277;
  background: var(--teal);
  color: #001316;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.hero-metrics div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(190, 208, 203, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(19, 40, 56, 0.07);
}

.hero-metrics dt {
  margin-bottom: 6px;
  font-size: 1.04rem;
  font-weight: 590;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.38;
}

.product-shot {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid rgba(190, 208, 203, 0.84);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-shot {
  aspect-ratio: 0.77;
  max-height: 620px;
}

.mobile-hero-phone {
  display: none;
}

.wide-shot {
  aspect-ratio: 1.44;
}

.portrait-shot {
  aspect-ratio: 0.77;
  max-height: 760px;
  justify-self: center;
}

.landscape-shot {
  aspect-ratio: 1.45;
  align-self: center;
}

.activity-clock-shot {
  aspect-ratio: 1.44;
}

.card-shot {
  aspect-ratio: 1.2;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
}

.proof-strip article,
.feature-grid article,
.control-grid article,
.capability-list article,
.support-card,
.document-card {
  border: 1px solid rgba(190, 208, 203, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-panel);
}

.proof-strip article {
  min-height: 128px;
  padding: 20px;
}

.mobile-feature-flow {
  display: none;
}

.feature-popout-card {
  position: relative;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.feature-popout-card:hover,
.feature-popout-card:focus-visible {
  border-color: rgba(8, 184, 186, 0.45);
  background-color: #ffffff;
  box-shadow: 0 16px 42px rgba(19, 40, 56, 0.12);
  transform: translateY(-2px);
}

.feature-popout-card::after {
  content: "More";
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(8, 184, 186, 0.2);
  border-radius: 999px;
  background: rgba(226, 248, 247, 0.78);
  color: var(--teal-strong);
  font-size: 0.72rem;
  font-weight: 620;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.feature-popout-card:hover::after,
.feature-popout-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.proof-strip strong,
.feature-grid strong,
.control-grid strong,
.capability-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 580;
}

.proof-strip span,
.feature-grid span,
.control-grid span,
.capability-list span,
.mini-feature-list span {
  color: var(--muted);
  line-height: 1.48;
}

.section-band {
  padding: 96px 0;
}

.section-band.muted {
  background: #eef8f6;
}

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

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

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
}

.section-heading.centered {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 580px;
  margin-bottom: 24px;
}

.product-story {
  display: grid;
  gap: 34px;
}

.screenshot-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.screenshot-feature.reverse {
  grid-template-columns: minmax(520px, 0.96fr) minmax(320px, 0.64fr);
}

.screenshot-feature.reverse .section-heading {
  order: 2;
}

.screenshot-feature.reverse .product-shot {
  order: 1;
}

.mini-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-feature-list span,
.mini-feature-list button {
  padding: 10px 12px;
  border: 1px solid rgba(8, 184, 186, 0.24);
  border-radius: var(--radius);
  background: rgba(226, 248, 247, 0.78);
  color: var(--teal-strong);
  font-size: 0.92rem;
  font-weight: 560;
}

.mini-feature-list button {
  cursor: pointer;
  box-shadow: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.mini-feature-list button:hover,
.mini-feature-list button:focus-visible {
  border-color: rgba(8, 184, 186, 0.42);
  background: #ffffff;
  transform: translateY(-1px);
}

.mini-feature-list.centered-list {
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 22px;
}

.feature-grid article,
.control-grid article,
.capability-list article {
  padding: 20px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.screenshot-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(190, 208, 203, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-panel);
}

.screenshot-card p {
  margin-bottom: 0;
}

.privacy-band {
  background:
    linear-gradient(135deg, rgba(7, 22, 32, 0.96), rgba(12, 50, 55, 0.94)),
    #0a1c27;
}

.privacy-band h2,
.privacy-band h3,
.privacy-band strong {
  color: #f7fbff;
}

.privacy-band p,
.privacy-band span {
  color: #c6d6dd;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.control-grid article {
  border-color: rgba(198, 214, 221, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.control-grid .feature-popout-card:hover,
.control-grid .feature-popout-card:focus-visible {
  border-color: rgba(198, 214, 221, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.control-grid .feature-popout-card::after {
  background: rgba(255, 255, 255, 0.1);
  color: #d9f8f6;
}

.access-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 0.82fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.access-copy {
  max-width: 640px;
}

.access-copy p:not(.eyebrow) {
  font-size: 1.08rem;
}

.pricing-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(190, 208, 203, 0.84);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-panel);
}

.plan-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.plan-card.featured {
  border-color: rgba(8, 184, 186, 0.42);
  background: linear-gradient(180deg, var(--teal-soft), #ffffff);
}

.plan-card span,
.store-placeholder span {
  display: block;
  color: var(--muted);
  font-weight: 560;
}

.plan-card strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 2.2rem;
  font-weight: 560;
}

.plan-card small,
.store-placeholder small {
  color: var(--soft);
  font-size: 0.94rem;
}

.store-placeholder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(8, 184, 186, 0.42);
  border-radius: var(--radius);
  background: var(--teal);
  color: #001316;
  text-decoration: none;
}

.store-placeholder span,
.store-placeholder small {
  color: rgba(0, 19, 22, 0.72);
}

.store-placeholder strong {
  font-size: 1.4rem;
  font-weight: 560;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 64px;
  padding: 38px;
  border: 1px solid rgba(190, 208, 203, 0.84);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow-panel);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.site-footer {
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  background: #fffdf7;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(190px, 0.9fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr);
  gap: 28px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-group {
  display: grid;
  gap: 10px;
}

.footer-group > strong {
  color: var(--ink-strong);
  font-size: 0.82rem;
  font-weight: 580;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-group nav {
  justify-content: flex-start;
  gap: 10px 14px;
}

.footer-utility {
  padding: 14px;
  border: 1px solid rgba(190, 208, 203, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.feature-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 14%, rgba(226, 248, 247, 0.32), transparent 34%),
    rgba(7, 22, 32, 0.46);
  backdrop-filter: blur(14px);
}

.feature-dialog-backdrop[hidden] {
  display: none;
}

.feature-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(700px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px 32px 26px;
  border: 1px solid rgba(190, 208, 203, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.96)),
    var(--panel);
  box-shadow: 0 32px 80px rgba(7, 22, 32, 0.28);
  text-align: left;
}

.feature-dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.64fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 12px;
}

.feature-dialog-copy {
  min-width: 0;
}

.feature-dialog h2 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: clamp(1.78rem, 3vw, 2.34rem);
  font-weight: 540;
  line-height: 1.08;
}

.feature-dialog p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 12px;
  font-size: 1.03rem;
  line-height: 1.5;
}

.feature-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-action-chip {
  padding: 9px 12px;
  border: 1px solid rgba(8, 184, 186, 0.24);
  border-radius: 999px;
  background: rgba(226, 248, 247, 0.76);
  color: var(--teal-strong);
  font-size: 0.92rem;
  font-weight: 560;
}

.feature-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(190, 208, 203, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 560;
  box-shadow: 0 8px 22px rgba(19, 40, 56, 0.08);
}

.feature-dialog-side {
  display: block;
}

.feature-preview,
.feature-benefit-card,
.feature-dialog-footer {
  border: 1px solid rgba(190, 208, 203, 0.74);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(19, 40, 56, 0.06);
}

.feature-preview {
  min-height: 0;
  padding: 12px;
  overflow: hidden;
}

.preview-timeline {
  position: relative;
  display: grid;
  gap: 8px;
  padding-left: 28px;
}

.preview-timeline div {
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--panel-soft);
}

.preview-timeline strong,
.preview-timeline small {
  display: block;
}

.preview-timeline small {
  margin-top: 2px;
  color: var(--muted);
}

.time-dot {
  position: absolute;
  top: 16px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(8, 184, 186, 0.14);
}

.time-line {
  position: absolute;
  top: 34px;
  bottom: 16px;
  left: 8px;
  width: 2px;
  background: rgba(8, 184, 186, 0.22);
}

.preview-clock {
  position: relative;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 8px;
  border: 8px solid rgba(31, 123, 209, 0.18);
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(190, 208, 203, 0.65);
}

.preview-clock .arc {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%);
}

.arc-school {
  background: rgba(31, 123, 209, 0.2);
  transform: rotate(24deg);
}

.arc-meal {
  background: rgba(222, 104, 79, 0.22);
  transform: rotate(148deg);
}

.arc-quiet {
  background: rgba(119, 102, 216, 0.18);
  transform: rotate(252deg);
}

.clock-face {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 540;
}

.preview-schedule,
.preview-grid,
.preview-wall-grid {
  display: grid;
  gap: 6px;
}

.feature-preview-clock .preview-schedule {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-schedule span,
.preview-grid span,
.preview-wall-grid span {
  padding: 7px 9px;
  border-radius: 11px;
  background: rgba(226, 248, 247, 0.72);
  color: var(--ink);
  font-size: 0.86rem;
}

.preview-schedule strong {
  margin-right: 6px;
  color: var(--teal-strong);
}

.preview-card {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.preview-card strong {
  font-size: 1.1rem;
  font-weight: 570;
}

.preview-card span {
  color: var(--muted);
}

.soft-purple {
  background: var(--violet-soft);
}

.soft-blue {
  background: var(--blue-soft);
}

.soft-green {
  background: var(--green-soft);
}

.preview-grid,
.preview-wall-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-progress {
  height: 12px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(190, 208, 203, 0.34);
}

.preview-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--violet));
}

.preview-progress-fill {
  width: 68%;
}

.preview-toggles {
  display: grid;
  gap: 10px;
}

.preview-toggles span {
  display: block;
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at calc(100% - 22px) 50%, var(--teal) 0 9px, transparent 10px),
    rgba(226, 248, 247, 0.72);
}

.feature-benefit-card {
  margin-top: 12px;
  padding: 12px;
}

.feature-benefit-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  font-weight: 570;
}

.feature-benefit-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-benefit-card li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.32;
}

.feature-dialog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-dialog-list li {
  position: relative;
  min-height: 84px;
  padding: 13px;
  border: 1px solid rgba(190, 208, 203, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 460;
  text-align: left;
}

.feature-dialog-list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(8, 184, 186, 0.12);
}

.feature-dialog-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
  font-weight: 570;
}

.feature-dialog-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.34;
}

.feature-dialog-footer {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 11px 14px;
  background:
    linear-gradient(135deg, rgba(226, 248, 247, 0.84), rgba(255, 248, 234, 0.72)),
    #ffffff;
}

.feature-dialog-footer strong {
  font-weight: 580;
}

.feature-dialog-footer span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

body.has-feature-dialog {
  overflow: hidden;
}

.document {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.document-hero {
  margin-bottom: 36px;
}

.document-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.document-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.12rem;
}

.document h2 {
  margin-top: 34px;
  font-size: 1.75rem;
}

.document-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

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

.document-card,
.support-card {
  padding: 22px;
}

.document-card h2,
.support-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.document-card p,
.support-card p {
  margin-bottom: 0;
}

.policy-list {
  padding-left: 1.25rem;
}

.policy-list li + li {
  margin-top: 10px;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 24px;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero-layout,
  .screenshot-feature,
  .screenshot-feature.reverse,
  .split,
  .access-band {
    grid-template-columns: 1fr;
  }

  .screenshot-feature.reverse .section-heading,
  .screenshot-feature.reverse .product-shot {
    order: initial;
  }

  .hero-layout {
    width: min(900px, calc(100% - 40px));
  }

  .hero-shot {
    max-height: none;
    aspect-ratio: 1.1;
  }

  .proof-strip,
  .feature-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .landscape-shot,
  .wide-shot,
  .card-shot {
    aspect-ratio: 1.15;
  }

  .document-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 80;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    min-height: 106px;
    padding: 22px 26px 16px;
    border-bottom-color: rgba(190, 208, 203, 0.42);
    background: #ffffff;
  }

  .brand {
    gap: 10px;
    font-size: 1.06rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    font-size: 0.76rem;
    font-weight: 500;
  }

  .site-header nav {
    margin-left: auto;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    display: grid;
    gap: 1px;
    place-items: center;
    width: 114px;
    min-height: 48px;
    padding: 9px 14px;
    border-color: rgba(8, 184, 186, 0.22);
    border-radius: 21px;
    background: rgba(226, 248, 247, 0.78);
    text-align: center;
  }

  .nav-cta span {
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-cta small {
    display: block;
    color: var(--teal-strong);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-menu {
    position: relative;
    display: block;
    flex: 0 0 auto;
  }

  .mobile-menu-button {
    appearance: none;
    border: 0;
    position: relative;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: rgba(247, 251, 250, 0.88);
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(19, 40, 56, 0.08);
  }

  .mobile-menu-button span,
  .mobile-menu-button::before,
  .mobile-menu-button::after {
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: #52677a;
    content: "";
  }

  .mobile-menu-button {
    gap: 5px;
  }

  .mobile-menu.is-open .mobile-menu-button {
    background: rgba(226, 248, 247, 0.9);
    box-shadow: 0 10px 28px rgba(8, 184, 186, 0.14);
  }

  .site-header .mobile-menu .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 40;
    display: none;
    flex-wrap: initial;
    justify-content: stretch;
    width: min(326px, calc(100vw - 36px));
    margin-left: 0;
    overflow: hidden;
    border: 1px solid rgba(190, 208, 203, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 52px rgba(19, 40, 56, 0.18);
    backdrop-filter: blur(18px);
  }

  .site-header .mobile-menu.is-open .mobile-menu-panel {
    display: grid;
  }

  .site-header .mobile-menu .mobile-menu-panel a {
    display: grid;
    gap: 2px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(190, 208, 203, 0.5);
    color: var(--ink);
  }

  .site-header .mobile-menu .mobile-menu-panel a:last-child {
    border-bottom: 0;
  }

  .site-header .mobile-menu .mobile-menu-panel a:hover,
  .site-header .mobile-menu .mobile-menu-panel a:focus-visible {
    background: rgba(226, 248, 247, 0.68);
    outline: none;
  }

  .site-header .mobile-menu .mobile-menu-panel strong {
    color: var(--ink-strong);
    font-size: 0.98rem;
    font-weight: 620;
    line-height: 1.1;
  }

  .site-header .mobile-menu .mobile-menu-panel span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.32;
  }

  h1 {
    font-size: 3.1rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.02rem;
    line-height: 1.16;
  }

  .hero {
    min-height: auto;
    border-bottom: 0;
    overflow: hidden;
    background: #fffefa;
  }

  .hero-art {
    display: none;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 83% 52%, rgba(226, 248, 247, 0.96), transparent 24%),
      radial-gradient(circle at 94% 73%, rgba(226, 248, 247, 0.54), transparent 18%),
      linear-gradient(180deg, #ffffff 0%, #fffefa 46%, #f8fbf5 100%);
  }

  .hero-layout {
    position: relative;
    display: block;
    min-height: 455px;
    width: min(680px, calc(100% - 52px));
    padding: 64px 0 24px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 226px;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    max-width: 224px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.24rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .hero-lede {
    max-width: 178px;
    color: #40586b;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
    width: 168px;
  }

  .hero-actions a {
    width: auto;
    min-height: 42px;
    font-size: 0.9rem;
  }

  .hero-actions .primary {
    width: auto;
    min-width: 0;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 999px;
  }

  .hero-actions .secondary {
    gap: 6px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--teal-strong);
    font-size: 0.84rem;
    box-shadow: none;
    white-space: nowrap;
  }

  .hero-actions .secondary::before {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(8, 184, 186, 0.34);
    border-radius: 50%;
    color: var(--teal-strong);
    content: ">";
    font-size: 0.9rem;
    line-height: 1;
  }

  .hero-shot {
    display: none;
  }

  .mobile-hero-phone {
    position: absolute;
    z-index: 1;
    top: 64px;
    right: -6px;
    display: block;
    width: min(238px, 58vw);
    max-height: 372px;
    mix-blend-mode: multiply;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 7%, #000 86%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 7%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
  }

  @media (max-width: 374px) {
    .hero-layout {
      width: calc(100% - 44px);
    }

    .hero-copy {
      max-width: 214px;
    }

    .hero-copy h1 {
      max-width: 214px;
      font-size: 2.1rem;
    }

    .hero-lede {
      max-width: 166px;
      font-size: 0.96rem;
    }

    .mobile-hero-phone {
      top: 88px;
      right: -30px;
      width: min(198px, 55vw);
      max-height: 332px;
    }
  }

  .hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.13);
    transform-origin: top center;
  }

  .hero-metrics {
    display: none;
  }

  .control-grid,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero-metrics dt,
  .proof-strip strong,
  .feature-grid strong,
  .control-grid strong,
  .capability-list strong {
    font-weight: 540;
  }

  .proof-strip {
    display: none;
  }

  .mobile-feature-flow {
    position: relative;
    display: grid;
    gap: 0;
    width: min(680px, calc(100% - 52px));
    margin: 0 auto;
    padding: 18px 0 76px;
  }

  .mobile-feature-flow::before {
    content: "";
    position: absolute;
    top: 56px;
    bottom: 102px;
    left: 34px;
    width: 1px;
    background: linear-gradient(180deg, rgba(8, 184, 186, 0.2), rgba(119, 102, 216, 0.16), rgba(217, 154, 38, 0.22));
  }

  .mobile-feature-row {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    width: 100%;
    min-height: 114px;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(190, 208, 203, 0.56);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    text-align: left;
  }

  .mobile-feature-row:first-child {
    border-top: 0;
  }

  .mobile-feature-row::after {
    display: none;
  }

  .mobile-feature-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(8, 184, 186, 0.2);
    border-radius: 999px;
    background: rgba(226, 248, 247, 0.86);
    box-shadow: 0 8px 22px rgba(19, 40, 56, 0.06);
  }

  .mobile-feature-icon::before,
  .mobile-feature-icon::after {
    content: "";
    position: absolute;
    display: block;
  }

  .icon-time::before,
  .icon-clock::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--teal-strong);
    border-radius: 50%;
  }

  .icon-time::after,
  .icon-clock::after {
    width: 11px;
    height: 3px;
    border-radius: 999px;
    background: var(--teal-strong);
    transform: translate(4px, 0) rotate(-35deg);
    transform-origin: left center;
  }

  .icon-shield {
    background: var(--blue-soft);
    border-color: rgba(31, 123, 209, 0.18);
  }

  .icon-shield::before {
    width: 24px;
    height: 28px;
    border: 3px solid var(--blue);
    border-radius: 12px 12px 16px 16px;
    clip-path: polygon(50% 0, 100% 18%, 88% 76%, 50% 100%, 12% 76%, 0 18%);
  }

  .icon-wall {
    background: var(--violet-soft);
    border-color: rgba(119, 102, 216, 0.18);
  }

  .icon-wall::before {
    width: 28px;
    height: 20px;
    border: 3px solid var(--violet);
    border-radius: 5px;
  }

  .icon-wall::after {
    width: 18px;
    height: 3px;
    margin-top: 29px;
    border-radius: 999px;
    background: var(--violet);
  }

  .icon-meal {
    background: var(--coral-soft);
    border-color: rgba(222, 104, 79, 0.2);
  }

  .icon-meal::before {
    width: 25px;
    height: 25px;
    border: 3px solid var(--coral);
    border-radius: 50%;
  }

  .icon-meal::after {
    width: 3px;
    height: 30px;
    margin-left: 34px;
    border-radius: 999px;
    background: var(--coral);
  }

  .icon-star {
    background: var(--gold-soft);
    border-color: rgba(217, 154, 38, 0.24);
  }

  .icon-star::before {
    width: 30px;
    height: 30px;
    background: var(--gold);
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 80% 92%, 50% 70%, 20% 92%, 32% 56%, 2% 35%, 39% 35%);
  }

  .mobile-feature-copy {
    display: grid;
    gap: 5px;
  }

  .mobile-feature-copy strong {
    color: #173149;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.15;
  }

  .mobile-feature-copy span {
    color: #52677a;
    line-height: 1.44;
  }

  .mobile-feature-action {
    align-self: center;
    padding: 7px 10px;
    border: 1px solid rgba(8, 184, 186, 0.2);
    border-radius: 999px;
    background: rgba(226, 248, 247, 0.84);
    color: var(--teal-strong);
    font-size: 0.84rem;
    font-weight: 540;
  }

  .proof-strip article,
  .feature-grid article,
  .control-grid article,
  .capability-list article {
    min-height: auto;
    padding: 20px 4px;
    border-width: 1px 0 0;
    border-color: rgba(190, 208, 203, 0.78);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .proof-strip article:first-child,
  .feature-grid article:first-child,
  .control-grid article:first-child,
  .capability-list article:first-child {
    border-top: 0;
  }

  .feature-popout-card:hover,
  .feature-popout-card:focus-visible,
  .control-grid .feature-popout-card:hover,
  .control-grid .feature-popout-card:focus-visible {
    background: rgba(255, 255, 255, 0.42);
    box-shadow: none;
    transform: none;
  }

  .feature-popout-card::after,
  .feature-popout-card:hover::after,
  .feature-popout-card:focus-visible::after {
    display: none;
    content: none;
  }

  .privacy-band .feature-popout-card::after,
  .privacy-band .feature-popout-card:hover::after,
  .privacy-band .feature-popout-card:focus-visible::after {
    border-color: rgba(198, 214, 221, 0.24);
    background: rgba(255, 255, 255, 0.1);
  }

  .section-band,
  .access-band {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .feature-grid {
    gap: 0;
    margin-top: 26px;
  }

  .screenshot-grid {
    gap: 18px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .cta-actions {
    width: 100%;
  }

  .button,
  .cta-actions a {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .site-header,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .site-header nav a {
    font-size: 0.9rem;
  }

  .hero-layout,
  .section-inner,
  .proof-strip,
  .mobile-feature-flow,
  .access-band,
  .final-cta,
  .document {
    width: calc(100% - 52px);
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .hero-actions .button {
    width: auto;
  }

  .product-shot,
  .proof-strip article,
  .feature-grid article,
  .control-grid article,
  .screenshot-card,
  .pricing-card,
  .final-cta {
    border-radius: 8px;
  }

  .feature-dialog-backdrop {
    padding: 14px;
  }

  .feature-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 18px 22px;
    border-radius: 16px;
  }

  .feature-dialog-layout,
  .feature-dialog-list {
    grid-template-columns: 1fr;
  }

  .feature-dialog-layout {
    gap: 12px;
  }

  .feature-dialog h2 {
    padding-right: 68px;
    font-size: 2rem;
  }

  .feature-dialog p:not(.eyebrow) {
    margin-bottom: 10px;
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .feature-action-chip {
    padding: 7px 10px;
    font-size: 0.86rem;
  }

  .feature-benefit-card {
    margin-top: 10px;
    padding: 10px;
  }

  .feature-benefit-card strong {
    margin-bottom: 4px;
  }

  .feature-benefit-card li {
    font-size: 0.84rem;
  }

  .feature-dialog-list li {
    min-height: auto;
    padding: 13px;
  }

  .feature-dialog-side {
    grid-template-rows: auto;
  }

  .feature-preview {
    padding: 10px;
    min-height: 0;
  }

  .preview-clock {
    width: 72px;
    height: 72px;
    border-width: 6px;
  }

  .preview-clock .arc {
    inset: -6px;
  }

  .clock-face {
    width: 38px;
    height: 38px;
    font-size: 0.84rem;
  }

  .preview-schedule span,
  .preview-grid span,
  .preview-wall-grid span {
    padding: 6px 8px;
    font-size: 0.82rem;
  }
}
