/* ZenHome marketing — teal-forward, aligned with app seed #2e7d6b */

:root {
  color-scheme: light dark;

  --teal-deep: #1a5248;
  --teal-700: #256658;
  --teal-600: #2e7d6b;
  --teal-500: #3a9a84;
  --teal-400: #4db89f;
  --teal-300: #7ec4b4;
  --teal-100: #d4ebe5;
  --teal-50: #ecf7f4;

  --color-canvas: #dfecea;
  --color-canvas-mid: #e8f3f0;
  --color-surface: #f9fdfc;
  --color-surface-low: #eef8f5;
  --color-surface-mid: #e3f0ec;
  --color-surface-high: #d7e8e3;
  --color-surface-highest: #c8ddd7;

  --color-primary: var(--teal-600);
  --color-primary-hover: var(--teal-700);
  --color-primary-soft: rgba(46, 125, 107, 0.14);
  --color-primary-softer: rgba(46, 125, 107, 0.08);
  --color-accent-glow: rgba(46, 125, 107, 0.22);

  --color-on-surface: #152825;
  --color-on-surface-muted: rgba(21, 40, 37, 0.72);
  --color-outline: rgba(21, 40, 37, 0.1);
  --color-outline-teal: rgba(46, 125, 107, 0.28);

  --radius-card: 14px;
  --radius-lg: 20px;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --shadow-sm: 0 1px 2px rgba(21, 40, 37, 0.06);
  --shadow-md: 0 8px 24px rgba(21, 40, 37, 0.08), 0 2px 8px rgba(46, 125, 107, 0.06);
  --shadow-card-hover: 0 12px 32px rgba(21, 40, 37, 0.1), 0 4px 12px rgba(46, 125, 107, 0.1);

  --header-height: 56px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --teal-deep: #7ec4b4;
    --teal-700: #6bc4ae;
    --teal-600: #4db89f;
    --teal-500: #5fc4ad;

    --color-canvas: #141a19;
    --color-canvas-mid: #1a2422;
    --color-surface: #1e2826;
    --color-surface-low: #232f2c;
    --color-surface-mid: #2a3835;
    --color-surface-high: #32403d;
    --color-surface-highest: #3a4946;

    --color-primary: var(--teal-600);
    --color-primary-hover: var(--teal-700);
    --color-primary-soft: rgba(77, 184, 159, 0.18);
    --color-primary-softer: rgba(77, 184, 159, 0.1);
    --color-accent-glow: rgba(77, 184, 159, 0.25);

    --color-on-surface: #e8f4f1;
    --color-on-surface-muted: rgba(232, 244, 241, 0.75);
    --color-outline: rgba(232, 244, 241, 0.12);
    --color-outline-teal: rgba(77, 184, 159, 0.35);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(77, 184, 159, 0.08);
    --shadow-card-hover: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(77, 184, 159, 0.12);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-on-surface);
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-canvas);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -30%, var(--color-accent-glow), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 20%, var(--color-primary-softer), transparent 50%),
    radial-gradient(ellipse 45% 40% at 0% 80%, var(--color-primary-softer), transparent 48%),
    linear-gradient(168deg, var(--color-canvas-mid) 0%, var(--color-canvas) 45%, #d8e8e3 100%);
  background-attachment: fixed;
}

@media (prefers-color-scheme: dark) {
  body {
    background-image:
      radial-gradient(ellipse 90% 60% at 50% -25%, var(--color-accent-glow), transparent 50%),
      radial-gradient(ellipse 40% 35% at 95% 15%, rgba(77, 184, 159, 0.12), transparent 45%),
      radial-gradient(ellipse 40% 35% at 5% 85%, rgba(77, 184, 159, 0.08), transparent 45%),
      linear-gradient(168deg, #161d1c 0%, var(--color-canvas) 50%, #121816 100%);
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  padding: 0 20px;
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-outline-teal);
  box-shadow: 0 1px 0 rgba(46, 125, 107, 0.06);
}

.site-header__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-height);
}

.site-header__menu {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--color-outline-teal);
  border-radius: var(--radius-card);
  background: var(--color-surface-low);
  color: var(--color-on-surface);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-header__menu:hover {
  background: var(--color-surface-mid);
}

.site-header__menu:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

.site-header__menu-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  pointer-events: none;
}

.site-header__menu-bars span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--nav-open .site-header__menu-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--nav-open .site-header__menu-bars span:nth-child(2) {
  opacity: 0;
}

.site-header--nav-open .site-header__menu-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__panel {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

@media (max-width: 768px) {
  .site-header__menu {
    display: inline-flex;
  }

  .site-header__panel {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height);
    flex: none;
    justify-content: stretch;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      visibility 0.2s,
      transform 0.2s ease;
    background: color-mix(in srgb, var(--color-surface) 96%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-outline-teal);
    box-shadow: var(--shadow-md);
  }

  .site-header--nav-open .site-header__panel {
    max-height: min(70vh, 420px);
    overflow: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  body.nav-open {
    overflow: auto;
  }
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(240px, 56vw);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.02em;
  color: var(--color-on-surface);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.site-header__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.site-header__brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__brand:hover {
  text-decoration: none;
  color: var(--color-primary);
}

.site-header__brand:hover .site-header__logo {
  opacity: 0.92;
}

.site-header__brand:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .site-header__nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 12px 20px 20px;
    max-width: 1040px;
    margin: 0 auto;
  }

  .site-header__nav > a {
    padding: 12px 10px;
    border-radius: 8px;
    border-bottom: 1px solid var(--color-outline);
  }

  .site-header__nav > a:last-of-type {
    border-bottom: none;
  }

  .site-header__nav .lang-switch {
    margin-top: 8px;
    align-self: flex-start;
  }
}

.site-header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-on-surface);
  padding: 6px 2px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-header__nav a:hover {
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-primary-softer);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--color-outline-teal);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface-low);
  box-shadow: var(--shadow-sm);
}

.lang-switch button {
  font: inherit;
  font-size: 0.8125rem;
  padding: 7px 13px;
  border: none;
  background: transparent;
  color: var(--color-on-surface-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-switch button[aria-pressed="true"] {
  background: linear-gradient(145deg, var(--teal-600), var(--teal-700));
  color: #fff;
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  .lang-switch button[aria-pressed="true"] {
    background: linear-gradient(145deg, var(--teal-500), var(--teal-600));
    color: #0d1513;
  }
}

.lang-switch button:hover:not([aria-pressed="true"]) {
  background: var(--color-surface-mid);
  color: var(--color-on-surface);
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 36px 28px 44px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-surface) 92%, var(--teal-100)) 0%,
    var(--color-surface) 48%,
    color-mix(in srgb, var(--color-surface) 94%, var(--teal-50)) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-outline-teal);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero--split {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 36px;
    padding: 40px 36px 44px;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__trust {
  margin-top: 14px !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  color: var(--color-on-surface-muted);
  max-width: 52ch !important;
}

.hero__note {
  position: relative;
  z-index: 1;
  margin: 10px 0 0 !important;
  font-size: 0.875rem !important;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-on-surface-muted);
  max-width: 56ch !important;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__visual-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-outline-teal);
  background: linear-gradient(165deg, var(--color-surface-low), var(--color-surface-mid));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow-sm);
  min-height: 200px;
  max-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  overflow: hidden;
}

.hero__visual-frame--device {
  padding: 14px 12px 18px;
  background: linear-gradient(165deg, #2f3d3a, #1e2826);
  border-radius: 28px;
  border: 1px solid color-mix(in srgb, var(--color-on-surface) 18%, var(--color-outline-teal));
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__visual-screen {
  width: 100%;
  min-height: 200px;
  max-height: 300px;
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.35);
  background: linear-gradient(165deg, var(--color-surface-low), var(--color-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  .hero__visual-frame {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-sm);
  }

  .hero__visual-screen {
    background: linear-gradient(165deg, var(--color-surface-mid), var(--color-surface));
    border-color: rgba(0, 0, 0, 0.5);
  }
}

.hero__visual-placeholder {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-on-surface-muted);
  font-weight: 500;
  max-width: 28ch;
}

.hero__actions--row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__cta-primary {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius-card);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(145deg, var(--teal-600), var(--teal-deep));
  border: 2px solid color-mix(in srgb, var(--teal-deep) 40%, transparent);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12) inset,
    0 6px 22px rgba(26, 82, 72, 0.45),
    0 2px 8px rgba(46, 125, 107, 0.35);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.hero__cta-primary:hover {
  background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 8px 28px rgba(26, 82, 72, 0.5),
    0 2px 10px rgba(46, 125, 107, 0.4);
  transform: translateY(-1px);
  text-decoration: none !important;
  color: #fff !important;
}

@media (prefers-color-scheme: dark) {
  .hero__cta-primary {
    background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
    color: #0d1513 !important;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
      0 2px 0 rgba(255, 255, 255, 0.2) inset,
      0 6px 24px rgba(0, 0, 0, 0.45);
  }

  .hero__cta-primary:hover {
    color: #0d1513 !important;
    background: linear-gradient(145deg, var(--teal-400), var(--teal-600));
  }
}

.hero__cta-secondary {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: var(--radius-card);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-on-surface-muted) !important;
  text-decoration: none !important;
  background: color-mix(in srgb, var(--color-surface) 75%, transparent);
  border: 2px solid var(--color-outline-teal);
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hero__cta-secondary:hover {
  background: var(--color-surface-mid);
  border-color: color-mix(in srgb, var(--teal-600) 45%, var(--color-outline-teal));
  color: var(--color-on-surface) !important;
  text-decoration: none !important;
}

.hero__support-wrap {
  position: relative;
  z-index: 1;
  margin-top: 12px !important;
  max-width: none !important;
}

.hero__support-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__support-link:hover {
  color: var(--color-primary-hover);
}

@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-surface) 85%, var(--teal-600)) 0%,
      var(--color-surface) 50%,
      color-mix(in srgb, var(--color-surface) 90%, #1a302c) 100%
    );
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal-400), var(--teal-600), var(--teal-deep));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: radial-gradient(circle, var(--color-primary-soft) 0%, transparent 68%);
  pointer-events: none;
}

.hero__badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--teal-deep);
  border: 1px solid var(--color-outline-teal);
  margin-bottom: 18px;
}

@media (prefers-color-scheme: dark) {
  .hero__badge {
    color: var(--teal-300);
    border-color: var(--color-outline-teal);
  }
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--color-on-surface);
}

.hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-on-surface-muted);
  max-width: 54ch;
}

.hero__actions {
  margin-top: 22px !important;
  max-width: none !important;
}

/* ——— Sections ——— */
.section-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-on-surface);
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.section-title::after {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal-600), var(--teal-400));
}

.section-sub {
  margin: 0 0 22px;
  color: var(--color-on-surface-muted);
  font-size: 1rem;
  max-width: 62ch;
}

.section-title--compact {
  font-size: 1.25rem;
}

.section-title--compact::after {
  width: 40px;
  height: 3px;
}

/* ——— Trust badges ——— */
.trust-badges {
  margin-bottom: 32px;
}

.trust-badges__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.trust-badges__chip {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-outline-teal);
  color: var(--color-on-surface);
  box-shadow: var(--shadow-sm);
}

.trust-badges__chip--link {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.trust-badges__chip--link a {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-primary-softer);
  border: 1px solid var(--color-outline-teal);
  color: var(--teal-deep);
  text-decoration: none;
}

.trust-badges__chip--link a:hover {
  background: var(--color-primary-soft);
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  .trust-badges__chip--link a {
    color: var(--teal-300);
  }
}

/* ——— Why ZenHome ——— */
.why-section {
  margin-bottom: 36px;
  padding: 26px 24px 24px;
}

.why-section .section-title {
  margin-bottom: 8px;
}

.why-section__lead {
  margin-bottom: 16px;
  max-width: 52ch;
}

.why-section__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.why-section__bullets li {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-outline-teal);
  background: var(--color-surface-low);
}

.why-section__bullet-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 4px;
}

@media (prefers-color-scheme: dark) {
  .why-section__bullet-title {
    color: var(--teal-400);
  }
}

.why-section__bullet-body {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-on-surface-muted);
}

/* ——— Pricing ——— */
.pricing-section {
  margin-bottom: 36px;
  padding: 26px 24px 28px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-outline-teal);
  background: var(--color-surface-low);
}

.pricing-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
}

@media (prefers-color-scheme: dark) {
  .pricing-card__title {
    color: var(--teal-400);
  }
}

.pricing-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-on-surface-muted);
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-outline-teal);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--teal-500), var(--teal-600), transparent);
  opacity: 0.65;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: color-mix(in srgb, var(--teal-600) 35%, var(--color-outline));
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--color-primary-softer);
  border: 1px solid var(--color-outline-teal);
  color: var(--teal-600);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

@media (prefers-color-scheme: dark) {
  .card__icon {
    color: var(--teal-400);
  }
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--teal-deep);
}

@media (prefers-color-scheme: dark) {
  .card h3 {
    color: var(--teal-400);
  }
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-on-surface-muted);
  line-height: 1.55;
}

.screenshot-block {
  margin-bottom: 36px;
}

.screenshot-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .screenshot-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .screenshot-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.screenshot-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screenshot-card__device {
  padding: 12px 10px 16px;
  border-radius: 28px;
  background: linear-gradient(165deg, #2f3d3a, #1a221f);
  border: 1px solid color-mix(in srgb, var(--color-on-surface) 22%, transparent);
  box-shadow: var(--shadow-md);
}

.screenshot-card__bezel {
  border-radius: 22px;
  padding: 5px;
  background: linear-gradient(180deg, #3d4a47, #0f1413);
}

.screenshot-card__screen {
  position: relative;
  border-radius: 18px;
  border: 2px solid rgba(0, 0, 0, 0.45);
  background: linear-gradient(160deg, var(--color-surface-low), var(--color-surface));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow-sm);
  min-height: 200px;
  max-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

@media (prefers-color-scheme: dark) {
  .screenshot-card__screen {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-sm);
    background: linear-gradient(160deg, var(--color-surface-mid), var(--color-surface));
  }
}

.screenshot-card__img {
  display: none;
  width: 100%;
  height: auto;
  max-height: 248px;
  object-fit: contain;
  border-radius: 10px;
}

.screenshot-card__screen:has(img[src]:not([src=""])) .screenshot-card__img {
  display: block;
}

.screenshot-card__screen:has(img[src]:not([src=""])) .screenshot-card__placeholder {
  display: none;
}

.screenshot-card__placeholder {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-on-surface-muted);
  max-width: 26ch;
}

.screenshot-card figcaption {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-on-surface-muted);
  text-align: center;
}

.waitlist-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 28px 22px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-outline-teal);
  background: color-mix(in srgb, var(--color-surface) 94%, var(--teal-100));
  box-shadow: var(--shadow-sm);
}

.waitlist-card__sub {
  margin-left: auto;
  margin-right: auto;
}

.waitlist-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--radius-card);
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(145deg, var(--teal-600), var(--teal-deep));
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(46, 125, 107, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.waitlist-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(46, 125, 107, 0.45);
  color: #fff !important;
  text-decoration: none !important;
}

@media (prefers-color-scheme: dark) {
  .waitlist-card {
    background: color-mix(in srgb, var(--color-surface) 88%, #1a302c);
  }

  .waitlist-card__cta {
    background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
    color: #0d1513 !important;
  }

  .waitlist-card__cta:hover {
    color: #0d1513 !important;
  }
}

.waitlist-card__hint {
  margin: 14px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-on-surface-muted);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.download-section {
  text-align: center;
  padding: 40px 28px 44px;
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--teal-600) 12%, var(--color-surface)) 0%,
    var(--color-surface) 35%,
    color-mix(in srgb, var(--teal-600) 8%, var(--color-surface)) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-outline-teal);
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}

.download-section__platform {
  margin: 18px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-on-surface-muted);
}

@media (prefers-color-scheme: dark) {
  .download-section {
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--teal-600) 18%, var(--color-surface)) 0%,
      var(--color-surface) 40%,
      color-mix(in srgb, var(--teal-600) 12%, var(--color-surface)) 100%
    );
  }
}

.download-section .section-title {
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.download-section .section-title::after {
  align-self: center;
}

.download-section .waitlist-card .section-title {
  align-items: center;
}

.download-section .waitlist-card .section-title::after {
  align-self: center;
}

.download-section .section-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 42ch;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 13px 22px;
  border-radius: var(--radius-card);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid var(--color-outline-teal);
  background: var(--color-surface-low);
  color: var(--color-on-surface);
  cursor: not-allowed;
  opacity: 0.88;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.store-btn--primary {
  background: linear-gradient(145deg, var(--teal-600), var(--teal-700));
  color: #fff;
  border-color: transparent;
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(46, 125, 107, 0.35);
}

.store-btn--primary:hover {
  background: linear-gradient(145deg, var(--teal-500), var(--teal-600));
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(46, 125, 107, 0.4);
}

.store-btn--soon {
  cursor: not-allowed;
  text-decoration: none;
}

.store-btn--soon:hover {
  color: var(--color-on-surface);
  text-decoration: none;
  border-color: var(--color-outline-teal);
  background: var(--color-surface-mid);
}

.store-note {
  display: block;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--color-on-surface-muted);
  font-weight: 500;
}

.site-footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 20px 48px;
  border-top: 1px solid var(--color-outline-teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  color: var(--color-on-surface-muted);
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
}

.site-footer a {
  color: var(--color-primary);
  font-weight: 500;
}

.site-footer__links {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  font-size: 0.9375rem;
}

.site-footer__sep {
  color: var(--color-on-surface-muted);
  user-select: none;
}

.site-footer__languages {
  margin: 14px auto 0;
  max-width: 52ch;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-on-surface-muted);
}

.site-footer__copyright {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: var(--color-on-surface-muted);
}

/* ——— Privacy ——— */
.prose {
  max-width: 65ch;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
  color: var(--color-on-surface);
}

.prose h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.85rem 0 0.5rem;
  color: var(--teal-deep);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-primary-soft);
}

@media (prefers-color-scheme: dark) {
  .prose h2 {
    color: var(--teal-400);
  }
}

.prose h2:first-of-type {
  margin-top: 1.25rem;
}

.prose .privacy-summary {
  margin: 0 0 1.5rem;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--color-primary-softer);
  border: 1px solid var(--color-outline-teal);
}

.prose .privacy-summary h2 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  padding-bottom: 0;
  border-bottom: none;
  color: var(--teal-deep);
}

@media (prefers-color-scheme: dark) {
  .prose .privacy-summary h2 {
    color: var(--teal-400);
  }
}

.prose .privacy-summary ul {
  margin: 0;
}

.prose .privacy-summary li:last-child {
  margin-bottom: 0;
}

.prose p {
  color: var(--color-on-surface-muted);
  margin: 0 0 0.75rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--color-on-surface-muted);
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose li::marker {
  color: var(--teal-600);
}

.prose address {
  font-style: normal;
  margin: 0 0 1rem;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  background: var(--color-surface-low);
  border: 1px solid var(--color-outline-teal);
  color: var(--color-on-surface-muted);
  line-height: 1.6;
}

.prose .privacy-note {
  font-size: 0.875rem;
  margin-top: 1.75rem;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-outline-teal);
  background: var(--color-primary-softer);
  border-top: 3px solid var(--teal-600);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 4px 6px 0;
  border-radius: 8px;
}

.back-link:hover {
  text-decoration: none;
  color: var(--color-primary-hover);
}

/* ——— Support page ——— */
.support-page h1 {
  margin-bottom: 12px;
}

.support-cta-wrap {
  margin: 1.25rem 0 0.75rem;
}

.support-mail-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 20px;
  border-radius: var(--radius-card);
  font-weight: 600;
  font-size: 1rem;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(145deg, var(--teal-600), var(--teal-700));
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(46, 125, 107, 0.35);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.support-mail-cta:hover {
  background: linear-gradient(145deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 6px 20px rgba(46, 125, 107, 0.4);
  transform: translateY(-1px);
  color: #fff !important;
}

.support-mail-cta__addr {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.95;
  word-break: break-all;
}

.support-email-alt {
  margin: 1.25rem 0 0 !important;
  font-size: 0.9375rem;
  color: var(--color-on-surface-muted);
  line-height: 1.55;
}

.support-email-alt__addr {
  display: block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-card);
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-on-surface);
  background: var(--color-surface-low);
  border: 1px solid var(--color-outline-teal);
  word-break: break-all;
  user-select: all;
}
