:root {
  --bg: #1a1816;
  --shell: #262321;
  --shell-border: rgba(255, 255, 255, 0.08);
  --teal-950: #062f32;
  --teal-900: #08383a;
  --teal-850: #0b4445;
  --teal-800: #0f4d4d;
  --teal-700: #0f766e;
  --teal-500: #1ca79b;
  --teal-300: #99f6e4;
  --cream-50: #fbf7f0;
  --cream-100: #f5f0e8;
  --cream-200: #ece3d5;
  --cream-300: #ddd1c0;
  --ink-900: #1c1917;
  --ink-700: #4f4a44;
  --ink-500: #7d746b;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 16px 32px rgba(7, 24, 25, 0.12);
  --radius-window: 22px;
  --radius-panel: 16px;
  --radius-card: 14px;
  --max-page: 1720px;
  --max-site: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #282422 0%, #171514 55%, #11100f 100%);
  color: var(--ink-900);
}

body.site-page {
  background: linear-gradient(180deg, #0d1110 0%, #111615 100%);
}

body.waitlist-page {
  background:
    radial-gradient(circle at top, rgba(15, 118, 110, 0.08) 0%, rgba(15, 118, 110, 0.03) 28%, transparent 58%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

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

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

.waitlist-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.waitlist-panel {
  width: min(560px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 42px 24px;
}

.waitlist-logo {
  width: 34px;
  height: 34px;
}

.waitlist-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.waitlist-brand-text {
  margin: 0;
  color: var(--teal-850);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.waitlist-panel h1 {
  margin: 0;
  max-width: 320px;
  color: var(--teal-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.showcase-grid {
  width: min(var(--max-page), calc(100% - 32px));
  margin: 22px auto 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.window {
  overflow: hidden;
  border-radius: var(--radius-window);
  background: var(--shell);
  border: 1px solid var(--shell-border);
  box-shadow: var(--shadow-lg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #2e2a28 0%, #262321 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.window-dot.red { background: #ff5f57; }
.window-dot.yellow { background: #febc2e; }
.window-dot.green { background: #28c840; }

.window-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 360px;
  padding: 8px 14px;
  border-radius: 11px 11px 0 0;
  background: #1f1c1b;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
}

.window-tab img {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.window-body {
  background: var(--cream-100);
}

.site-frame {
  min-height: 100%;
  background: var(--cream-100);
}

.site-header {
  background: linear-gradient(180deg, var(--teal-900) 0%, var(--teal-850) 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner,
.hero-inner,
.benefit-strip,
.legal-layout,
.support-main,
.site-footer-inner {
  width: min(var(--max-site), calc(100% - 40px));
  margin: 0 auto;
}

.site-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

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

.brand-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-family: Georgia, "Times New Roman", serif;
}

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

.site-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #063338 0%, #073b3d 48%, #08484b 100%);
}

.hero-inner-home {
  grid-template-columns: minmax(320px, 360px) minmax(560px, 1fr);
  gap: 40px;
  align-items: start;
  padding: 44px 0 28px;
}

.hero-copy-home {
  padding-top: 22px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(520px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 44px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding-top: 18px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5vw, 5.1rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--cream-50);
}

.hero-copy .accent {
  color: #b6d96d;
}

.hero-copy p {
  margin: 0;
  max-width: 330px;
  color: rgba(247, 243, 238, 0.88);
  font-size: 17px;
  line-height: 1.6;
}

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.store-row-home {
  margin-top: 28px;
}

.page-shell {
  width: min(var(--max-page), calc(100% - 32px));
  margin: 22px auto 40px;
  overflow: hidden;
  border-radius: var(--radius-window);
  background: var(--shell);
  border: 1px solid var(--shell-border);
  box-shadow: var(--shadow-lg);
}

.page-content {
  background: var(--cream-100);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(7, 10, 11, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.store-badge-home {
  min-width: 152px;
}

.store-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.store-badge-copy {
  display: grid;
  gap: 1px;
}

.store-badge-copy small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.store-badge-copy strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-visual {
  position: relative;
  min-height: 474px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 4px;
}

.hero-visual-home {
  min-height: 470px;
  align-items: flex-start;
}

.phone-stack {
  position: relative;
  width: 540px;
  height: 470px;
  flex: 0 0 540px;
}

.phone-stack-home {
  width: 520px;
  height: 462px;
  margin-top: 0;
}

.phone-shell {
  width: 228px;
  border-radius: 38px;
  background: linear-gradient(180deg, #111312 0%, #060707 100%);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px;
  position: absolute;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 21px;
  border-radius: 999px;
  background: #050606;
  z-index: 4;
}

.phone-front {
  left: 72px;
  top: 28px;
  z-index: 2;
}

.phone-back {
  left: 244px;
  top: 6px;
  z-index: 1;
}

.phone-stack-home .phone-front {
  left: 96px;
  top: 18px;
}

.phone-stack-home .phone-back {
  left: 278px;
  top: 0;
}

.phone-screen {
  overflow: hidden;
  min-height: 470px;
  border-radius: 30px;
  background: #091617;
  color: var(--cream-50);
  position: relative;
}

.phone-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 243, 238, 0.24);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 8px;
  font-size: 11px;
  font-weight: 700;
}

.phone-body {
  padding: 0 14px 18px;
}

.phone-overview {
  margin-top: 8px;
  margin-bottom: 14px;
}

.phone-overview h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 600;
}

.phone-overview p {
  margin: 8px 0 0;
  color: rgba(247, 243, 238, 0.72);
  font-size: 12px;
}

.ring-card,
.activity-card,
.chart-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ring-card {
  padding: 18px 14px;
  margin-bottom: 12px;
}

.ring-wrap {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 8px solid rgba(201, 214, 113, 0.26);
  position: relative;
}

.ring-wrap::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 8px solid transparent;
  border-top-color: #c9d671;
  border-right-color: #c9d671;
  transform: rotate(38deg);
}

.ring-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.ring-number strong {
  display: block;
  font-size: 28px;
}

.ring-number span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: rgba(247, 243, 238, 0.68);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.metrics-row strong {
  display: block;
  font-size: 16px;
  color: #c9d671;
}

.metrics-row span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: rgba(247, 243, 238, 0.68);
}

.activity-card,
.chart-card {
  padding: 14px;
}

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mini-heading strong {
  font-size: 13px;
}

.mini-heading span {
  font-size: 10px;
  color: rgba(247, 243, 238, 0.62);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-item:last-child {
  border-bottom: 0;
}

.activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9dd265;
}

.activity-label {
  flex: 1;
  font-size: 11px;
}

.activity-value {
  font-size: 10px;
  color: rgba(247, 243, 238, 0.62);
}

.chart-card {
  margin-top: 78px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 110px;
  margin: 14px 0 8px;
}

.chart-bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #8bd6ca 0%, #497f39 100%);
}

.chart-foot {
  color: rgba(247, 243, 238, 0.74);
  font-size: 12px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0d615a 0%, #0b4342 100%);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.benefit-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b8dc6c 0%, #dff2b2 100%);
}

.benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 700;
}

.benefit p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.45;
}

.legal-frame {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 760px;
  background: linear-gradient(180deg, #08383a 0%, #072e31 100%);
}

.legal-sidebar {
  padding: 26px 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.sidebar-card a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
}

.sidebar-card a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 700;
}

.legal-content {
  background: var(--cream-50);
  padding: 40px 54px 52px;
}

.legal-content h1 {
  margin: 0 0 12px;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-meta {
  color: var(--ink-500);
  font-size: 14px;
  margin-bottom: 30px;
}

.legal-lead,
.legal-section p,
.legal-section li {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.7;
}

.legal-lead {
  max-width: 800px;
}

.legal-section {
  margin-top: 34px;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
}

.legal-section h3 {
  margin: 22px 0 8px;
  font-size: 16px;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-link {
  color: var(--teal-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-frame {
  background: linear-gradient(180deg, #07383a 0%, #083031 100%);
}

.support-hero {
  position: relative;
  padding: 42px 0 110px;
  color: var(--cream-50);
}

.support-copy {
  max-width: 420px;
}

.support-copy h1 {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

.support-copy p {
  margin: 0;
  color: rgba(247, 243, 238, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.support-main {
  margin-top: -72px;
  padding-bottom: 28px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.support-card,
.support-bottom-card,
.support-list-card {
  border-radius: var(--radius-card);
  background: var(--cream-50);
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: var(--shadow-md);
}

.support-card {
  padding: 20px;
}

.support-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, 0.18);
  color: var(--teal-800);
  font-size: 22px;
  margin-bottom: 16px;
}

.support-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.1;
}

.support-card p {
  margin: 0 0 18px;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
}

.support-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0f5f5b 0%, #0d4947 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.support-action span {
  color: rgba(247, 243, 238, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.support-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.support-list-card {
  padding: 22px;
}

.faq-web-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.faq-web-item {
  border-radius: 14px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: var(--white);
  padding: 0 18px;
}

.faq-web-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-900);
}

.faq-web-item summary::-webkit-details-marker {
  display: none;
}

.faq-web-item p {
  margin: 0 0 18px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.7;
}

.support-list-card h2,
.support-bottom-card h2 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

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

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
}

.support-bottom-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 100%;
}

.support-bottom-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.65;
  max-width: 270px;
}

.support-bottom-card .leaf-soft {
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 150px;
  opacity: 0.08;
}

.site-footer {
  background: transparent;
}

.site-footer-inner {
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

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

  .hero-inner-home {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-visual {
    min-height: 500px;
    justify-content: center;
  }
}

@media (max-width: 1120px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip,
  .support-cards,
  .support-bottom {
    grid-template-columns: 1fr;
  }

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

  .legal-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

@media (max-width: 860px) {
  .site-header-inner {
    min-height: 72px;
  }

  .site-nav {
    display: none;
  }

  .hero-copy h1,
  .legal-content h1,
  .support-copy h1 {
    font-size: 44px;
  }

  .legal-content {
    padding: 30px 24px 36px;
  }

  .phone-stack {
    width: 440px;
    height: 484px;
    margin: 0 auto;
  }

  .phone-stack-home {
    width: 440px;
    height: 484px;
  }

  .phone-front {
    left: 24px;
  }

  .phone-back {
    left: 206px;
  }

  .phone-stack-home .phone-front {
    left: 24px;
  }

  .phone-stack-home .phone-back {
    left: 206px;
  }

  .hero-visual {
    min-height: auto;
  }

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

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