:root {
  --bg: #0a0e14;
  --bg-soft: #111723;
  --surface: rgba(18, 24, 34, 0.84);
  --surface-strong: rgba(24, 31, 43, 0.94);
  --surface-light: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(181, 225, 255, 0.28);
  --text: #f5f7fb;
  --muted: #aab4c5;
  --accent: #a8d5ff;
  --accent-strong: #dff1ff;
  --accent-deep: #65c3bc;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --max-width: 1220px;
  --section-gap: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(101, 195, 188, 0.14), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(168, 213, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #070a10 0%, #0a0e14 34%, #0f1520 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
strong {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--accent);
  color: #08111d;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.section-surface,
.site-header,
.device-shot,
.concept-phone,
.contact-panel,
.pricing-card {
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 11, 17, 0.84);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(168, 213, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.brand-text,
.site-nav a,
.button,
.eyebrow,
.plan-label,
.status-pill,
.section-kicker,
.mini-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

main {
  display: grid;
  gap: 24px;
}

.section-surface,
.product-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--surface), rgba(15, 20, 29, 0.9));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 18px;
}

.hero-copy-block,
.hero-stage,
.story-intro,
.app-chooser,
.portfolio-overview,
.pricing-section,
.trust-strip,
.about-section,
.contact-section,
.product-section {
  padding: 34px;
}

.eyebrow,
.mini-label,
.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero h1,
.story-intro h2,
.product-section h2,
.pricing-section h2,
.trust-strip h2,
.about-section h2,
.contact-section h2 {
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 9vw, 7rem);
}

.hero-lead,
.product-summary {
  font-size: 1.13rem;
  line-height: 1.65;
  color: #edf2f9;
}

.hero-support,
.story-intro p,
.product-why,
.status-note,
.pricing-section p,
.about-section p,
.contact-section p,
.legal-note,
.trust-list li,
.plan-list,
.site-footer {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy-block {
  position: relative;
  overflow: hidden;
}

.hero-copy-block::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 213, 255, 0.18), transparent 66%);
  filter: blur(10px);
}

.hero-lead,
.hero-support,
.section-heading,
.product-summary,
.product-why,
.status-note {
  margin-top: 16px;
}

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

.hero-actions,
.product-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #08111d;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button-disabled {
  opacity: 0.76;
  cursor: not-allowed;
}

.button-full {
  width: 100%;
}

.hero-stage {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(101, 195, 188, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.hero-stage-glow {
  position: absolute;
  inset: auto auto 20px 8%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 213, 255, 0.22), transparent 72%);
  filter: blur(18px);
}

.hero-mini-card {
  position: absolute;
  display: grid;
  gap: 8px;
  width: min(280px, 76%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(12, 16, 23, 0.88);
  box-shadow: var(--shadow);
}

.hero-mini-card strong {
  font-family: "Newsreader", serif;
  font-size: 1.7rem;
}

.hero-mini-card span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.mini-card-lastdose {
  top: 22px;
  left: 20px;
  transform: rotate(-3deg);
}

.mini-card-localfavor {
  right: 22px;
  top: 94px;
  transform: rotate(5deg);
}

.mini-card-notyet {
  left: 26%;
  bottom: 20px;
  transform: rotate(-1deg);
}

.story-intro h2,
.app-chooser h2,
.pricing-section h2,
.trust-strip h2,
.about-section h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-top: 12px;
}

.product-section {
  display: grid;
  gap: 24px;
}

.app-chooser-grid {
  display: grid;
  gap: 18px;
  margin-top: var(--section-gap);
}

.chooser-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.chooser-card-strong {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(168, 213, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.chooser-card h3 {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.chooser-summary,
.product-purpose {
  color: #edf2f9;
  line-height: 1.68;
}

.portfolio-overview {
  display: grid;
  gap: 0;
}

.overview-grid,
.info-grid {
  display: grid;
  gap: 18px;
  margin-top: var(--section-gap);
}

.overview-card,
.info-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.028);
}

.overview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.overview-card h3,
.info-card h3 {
  font-family: "Newsreader", serif;
  font-size: 1.9rem;
  line-height: 1.04;
}

.overview-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.72;
}

.overview-card strong,
.info-card strong {
  color: var(--text);
}

.info-card-strong {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(168, 213, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.028);
}

.chooser-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chooser-points li {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.chooser-link {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chooser-link-muted {
  color: var(--muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(168, 213, 255, 0.12);
  border: 1px solid var(--line-strong);
  color: var(--accent-strong);
}

.status-pill-strong {
  background: var(--accent);
  color: #08111d;
}

.status-pill-soft {
  background: rgba(101, 195, 188, 0.14);
}

.product-section h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.product-purpose {
  margin-top: 16px;
  max-width: 62ch;
}

.benefit-list,
.plan-list,
.trust-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.benefit-list li,
.plan-list li,
.trust-list li {
  position: relative;
  padding-left: 18px;
}

.benefit-list li::before,
.plan-list li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-visual-lastdose {
  position: relative;
  min-height: 560px;
}

.device-shot {
  position: absolute;
  width: min(260px, 45vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 36px;
  background: rgba(7, 10, 16, 0.92);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.device-shot img {
  width: 100%;
  height: auto;
}

.shot-primary {
  left: 2%;
  top: 10px;
  width: min(235px, 40vw);
}

.detail-card {
  position: absolute;
  right: 4%;
  bottom: 44px;
  display: grid;
  gap: 10px;
  width: min(260px, 46vw);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  background: rgba(11, 16, 23, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.detail-card strong {
  font-family: "Newsreader", serif;
  font-size: 1.7rem;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-callout {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(168, 213, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.feature-callout:hover,
.feature-callout:focus-visible {
  transform: translateY(-1px);
}

.feature-callout-label,
.feature-callout-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-callout-label {
  color: var(--accent);
}

.feature-callout strong {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1.02;
}

.feature-callout p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-callout-link {
  color: var(--accent-strong);
}

.concept-phone {
  width: min(100%, 420px);
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(12, 16, 23, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.concept-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.concept-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
}

.concept-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin-top: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.concept-card strong,
.concept-center-card strong {
  font-family: "Newsreader", serif;
  font-size: 1.75rem;
}

.concept-card span,
.concept-center-card p {
  color: var(--muted);
  line-height: 1.6;
}

.route-line {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px 0 4px;
}

.route-line span:nth-child(1),
.route-line span:nth-child(3) {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
}

.route-line span:nth-child(2) {
  width: 3px;
  height: 92px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(101, 195, 188, 0.3));
}

.calm-concept {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 24px;
}

.concept-breath-ring {
  position: absolute;
  inset: 14% 18% auto;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(168, 213, 255, 0.16);
  box-shadow:
    0 0 0 22px rgba(168, 213, 255, 0.04),
    0 0 0 56px rgba(168, 213, 255, 0.02);
}

.concept-center-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 250px;
  padding: 24px;
  margin: 0 auto;
  text-align: center;
  border-radius: 28px;
  background: rgba(10, 14, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.concept-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.concept-chip-row span,
.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: var(--section-gap);
}

.pricing-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-light);
}

.pricing-card-highlight {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(168, 213, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--surface-light);
}

.plan-label {
  font-size: 0.72rem;
  color: var(--accent);
}

.pricing-card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-strip,
.about-section,
.contact-section {
  display: grid;
  gap: 20px;
}

.contact-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}

.legal-note {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (min-width: 860px) {
  .page-shell {
    width: min(calc(100% - 48px), var(--max-width));
    padding-top: 26px;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-section {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
  }

  .pricing-grid,
  .app-chooser-grid,
  .overview-grid,
  .info-grid,
  .trust-strip,
  .about-section,
  .contact-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 859px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero-stage {
    min-height: 420px;
  }

  .hero-mini-card {
    width: min(280px, 80%);
  }

  .mini-card-lastdose {
    left: 18px;
    top: 18px;
  }

  .mini-card-localfavor {
    top: 148px;
    right: 14px;
  }

  .mini-card-notyet {
    left: 22px;
    bottom: 18px;
  }

  .product-visual-lastdose {
    min-height: 760px;
  }

  .shot-primary {
    left: 16px;
  }

  .detail-card {
    right: 16px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .hero-copy-block,
  .hero-stage,
  .story-intro,
  .app-chooser,
  .portfolio-overview,
  .pricing-section,
  .trust-strip,
  .about-section,
  .contact-section,
  .product-section {
    padding: 22px;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-mini-card {
    width: calc(100% - 34px);
  }

  .product-visual-lastdose {
    min-height: 720px;
  }

  .device-shot {
    width: min(220px, 58vw);
    border-radius: 28px;
  }

  .shot-primary {
    left: 0;
  }

  .detail-card {
    right: 0;
    width: min(190px, 48vw);
    padding: 18px;
  }

  .detail-card strong {
    font-size: 1.4rem;
  }

  .concept-phone {
    min-height: 460px;
    padding: 22px;
  }

  .overview-card,
  .info-card,
  .chooser-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-mini-card,
  .device-shot,
  .concept-breath-ring,
  .button,
  .site-nav a {
    transition:
      transform 220ms ease,
      opacity 220ms ease,
      background 220ms ease,
      color 220ms ease,
      border-color 220ms ease;
  }

  .hero-mini-card:hover,
  .device-shot:hover {
    transform: translateY(-3px);
  }

  .concept-breath-ring {
    animation: breathe 5.5s ease-in-out infinite;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
