/* ===========================================================================
   Awaira website - Mac desktop product aesthetic.
   Native-feeling chrome, preference panes, menu bar details, and soft macOS
   material surfaces across light / dark / auto themes.
   =========================================================================== */

:root {
  color-scheme: light dark;

  --accent: #1677ff;
  --accent-2: #15c7d8;
  --accent-strong: #0a62d0;
  --accent-grad: linear-gradient(135deg, #1677ff 0%, #18c8d7 100%);
  --on-accent: #ffffff;

  --bg: #edf2f8;
  --bg-2: #f8fafc;
  --desktop: #dfe7f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --chrome: rgba(244, 247, 251, 0.86);
  --line: rgba(34, 45, 65, 0.12);
  --line-strong: rgba(34, 45, 65, 0.18);
  --text: #172033;
  --muted: #5d6d83;
  --soft: #7a8799;
  --field-bg: rgba(255, 255, 255, 0.94);
  --field-text: #172033;
  --shadow: 0 28px 70px rgba(30, 52, 89, 0.22);
  --shadow-sm: 0 14px 34px rgba(30, 52, 89, 0.12);

  --radius: 8px;
  --radius-lg: 18px;
  --maxw: 1160px;
  --hero-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(237, 242, 248, 0.1) 38%, rgba(224, 234, 246, 0.82)),
    radial-gradient(60% 48% at 12% 4%, rgba(126, 176, 255, 0.34), transparent 65%),
    radial-gradient(46% 38% at 86% 12%, rgba(48, 212, 198, 0.25), transparent 64%),
    #edf2f8;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #080b10;
    --bg-2: #0f131a;
    --desktop: #141a23;
    --surface: rgba(32, 38, 48, 0.78);
    --surface-strong: rgba(24, 29, 37, 0.96);
    --chrome: rgba(28, 34, 43, 0.84);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f2f5f9;
    --muted: #a9b4c3;
    --soft: #838f9e;
    --field-bg: rgba(255, 255, 255, 0.07);
    --field-text: #f2f5f9;
    --shadow: 0 34px 80px rgba(0, 0, 0, 0.56);
    --shadow-sm: 0 16px 40px rgba(0, 0, 0, 0.34);
    --hero-bg:
      linear-gradient(180deg, rgba(16, 20, 28, 0.72), rgba(8, 11, 16, 0.52) 42%, rgba(13, 18, 25, 0.92)),
      radial-gradient(56% 42% at 14% 4%, rgba(49, 117, 230, 0.28), transparent 65%),
      radial-gradient(46% 38% at 82% 10%, rgba(20, 198, 190, 0.20), transparent 64%),
      #080b10;
  }
}

:root[data-theme="light"] {
  --bg: #edf2f8;
  --bg-2: #f8fafc;
  --desktop: #dfe7f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --chrome: rgba(244, 247, 251, 0.86);
  --line: rgba(34, 45, 65, 0.12);
  --line-strong: rgba(34, 45, 65, 0.18);
  --text: #172033;
  --muted: #5d6d83;
  --soft: #7a8799;
  --field-bg: rgba(255, 255, 255, 0.94);
  --field-text: #172033;
  --shadow: 0 28px 70px rgba(30, 52, 89, 0.22);
  --shadow-sm: 0 14px 34px rgba(30, 52, 89, 0.12);
  --hero-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(237, 242, 248, 0.1) 38%, rgba(224, 234, 246, 0.82)),
    radial-gradient(60% 48% at 12% 4%, rgba(126, 176, 255, 0.34), transparent 65%),
    radial-gradient(46% 38% at 86% 12%, rgba(48, 212, 198, 0.25), transparent 64%),
    #edf2f8;
}

:root[data-theme="dark"] {
  --bg: #080b10;
  --bg-2: #0f131a;
  --desktop: #141a23;
  --surface: rgba(32, 38, 48, 0.78);
  --surface-strong: rgba(24, 29, 37, 0.96);
  --chrome: rgba(28, 34, 43, 0.84);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f2f5f9;
  --muted: #a9b4c3;
  --soft: #838f9e;
  --field-bg: rgba(255, 255, 255, 0.07);
  --field-text: #f2f5f9;
  --shadow: 0 34px 80px rgba(0, 0, 0, 0.56);
  --shadow-sm: 0 16px 40px rgba(0, 0, 0, 0.34);
  --hero-bg:
    linear-gradient(180deg, rgba(16, 20, 28, 0.72), rgba(8, 11, 16, 0.52) 42%, rgba(13, 18, 25, 0.92)),
    radial-gradient(56% 42% at 14% 4%, rgba(49, 117, 230, 0.28), transparent 65%),
    radial-gradient(46% 38% at 82% 10%, rgba(20, 198, 190, 0.20), transparent 64%),
    #080b10;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent-grad);
  color: var(--on-accent);
  box-shadow: 0 12px 28px rgba(22, 119, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(22, 119, 255, 0.36); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.btn-ghost:hover {
  background: var(--surface-strong);
  border-color: var(--line-strong);
}
.btn-sm {
  min-height: 40px;
  padding: 0 17px;
  font-size: 0.92rem;
}
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 10px clamp(18px, 5vw, 56px);
  background: color-mix(in srgb, var(--chrome) 84%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 780;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}
.primary-nav a:hover { color: var(--text); }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.theme-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.theme-switcher button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.95rem;
}
.theme-switcher button[aria-pressed="true"] {
  background: color-mix(in srgb, var(--surface-strong) 86%, var(--accent) 14%);
  color: var(--accent-strong);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: clamp(42px, 5.6vw, 72px) clamp(18px, 5vw, 56px) clamp(28px, 4.5vw, 50px);
  text-align: center;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 70%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  max-width: 100%;
  line-height: 1.25;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32d74b;
  box-shadow: 0 0 0 4px rgba(50, 215, 75, 0.14);
}
.hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(2.65rem, 5.45vw, 4.85rem);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 820;
}
.hl {
  color: transparent;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
}
.lede {
  max-width: 710px;
  margin: 0 auto 22px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.65vw, 1.24rem);
}

/* Sign-up form */
.signup-form {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
.hero .signup-form { margin-top: 4px; }
.signup-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.18fr) auto;
  gap: 10px;
}
.signup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--field-text);
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.04);
}
.signup-form input::placeholder { color: color-mix(in srgb, var(--muted) 84%, transparent); }
.signup-form input:focus {
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  min-height: 20px;
  margin: 12px 2px 0;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 650;
}
.form-status.error { color: #d84242; }
.form-note {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.built-for {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  box-shadow: var(--shadow-sm);
}

.built-for strong {
  color: var(--text);
  font-size: 0.95rem;
}

.built-for ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.built-for li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.25;
}

.built-for li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

.hero-subnote {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-subnote span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

/* Mac desktop composition */
.desktop-scene {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: clamp(24px, 3.6vw, 38px) auto 0;
  padding: 42px clamp(14px, 3vw, 34px) 72px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--desktop) 86%, #ffffff 14%), color-mix(in srgb, var(--desktop) 92%, #18c8d7 8%));
  box-shadow: var(--shadow);
  text-align: left;
}
.desktop-scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 98px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.14), transparent);
  pointer-events: none;
}
.mac-menubar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 28px;
  padding: 5px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.46);
  color: rgba(23, 32, 51, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
  backdrop-filter: blur(18px) saturate(1.4);
}
:root[data-theme="dark"] .mac-menubar {
  background: rgba(21, 27, 36, 0.62);
  color: rgba(242, 245, 249, 0.76);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mac-menubar {
    background: rgba(21, 27, 36, 0.62);
    color: rgba(242, 245, 249, 0.76);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}
.menu-left,
.menu-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.menu-left span,
.menu-right span { white-space: nowrap; }
.apple-mark { font-weight: 800; }
.menu-pill {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(50, 215, 75, 0.16);
  color: #146f2a;
}

.hero-shot {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: min(78%, 860px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  background: #05090d;
  box-shadow: 0 34px 90px rgba(9, 16, 29, 0.46);
}
.app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  background: linear-gradient(#f2f3f5, #dfe2e7);
  color: rgba(20, 26, 35, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.app-bar strong {
  margin-left: 8px;
  font-size: 0.82rem;
  font-weight: 680;
}
.traffic {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.traffic.red { background: #ff5f57; }
.traffic.yellow { background: #ffbd2e; }
.traffic.green { background: #28c840; }
.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.menu-popover {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 54px);
  top: 84px;
  width: 240px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #172033;
  box-shadow: 0 22px 60px rgba(30, 52, 89, 0.22);
  backdrop-filter: blur(24px) saturate(1.4);
}
:root[data-theme="dark"] .menu-popover {
  background: rgba(33, 39, 50, 0.78);
  color: #f2f5f9;
  border-color: rgba(255, 255, 255, 0.14);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .menu-popover {
    background: rgba(33, 39, 50, 0.78);
    color: #f2f5f9;
    border-color: rgba(255, 255, 255, 0.14);
  }
}
.popover-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(90, 105, 128, 0.2);
}
.popover-head img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.popover-head strong,
.popover-head span { display: block; }
.popover-head span {
  color: var(--muted);
  font-size: 0.82rem;
}
.popover-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  padding: 14px 0;
}
.popover-stat span,
.popover-stat small {
  color: var(--muted);
  font-size: 0.82rem;
}
.popover-stat strong {
  grid-row: span 2;
  align-self: center;
  color: var(--accent-strong);
  font-size: 2.4rem;
  line-height: 1;
}
.menu-popover button {
  width: 100%;
  min-height: 34px;
  border: 1px solid rgba(90, 105, 128, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  font-weight: 650;
}
.dock {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 38px rgba(30, 52, 89, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(1.4);
}
.dock span {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #f8fafc, #b9c3d1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.16);
}
.dock .dock-app { background: var(--accent-grad); }
.media-caption {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

/* Reassurance strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 56px);
}
.trust-strip div {
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.trust-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.96rem;
}
.trust-strip span {
  color: var(--muted);
  line-height: 1.48;
}

.privacy-proof {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.privacy-checks {
  display: grid;
  gap: 10px;
  min-height: 126px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.privacy-checks li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.3;
}

.privacy-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #20c742;
  box-shadow: 0 0 18px rgba(32, 199, 66, 0.24);
}

.privacy-checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.44em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.founder-proof .section-head {
  max-width: 860px;
}

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

.proof-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.proof-card h3 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.usage-example {
  display: grid;
  gap: 12px;
  margin: 0;
}

.usage-example div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.usage-example dt,
.usage-example dd {
  margin: 0;
  color: var(--text);
  font-weight: 850;
}

.usage-example dd {
  color: var(--accent-strong);
}

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

.transformation-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.transformation-list li::before {
  content: counter(list-item);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

/* Sections */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 56px);
}
.section-alt {
  max-width: none;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-2) 92%, var(--accent) 8%), var(--bg-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.section-head {
  max-width: 730px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.7vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}
.section-sub {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

/* Workflow cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 32px;
  background: var(--chrome);
  border-bottom: 1px solid var(--line);
}
.card .num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 34px 0 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, var(--surface-strong));
  color: var(--accent-strong);
  font-weight: 800;
}
.card .icon {
  position: absolute;
  top: 8px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--soft);
}
.icon svg {
  width: 20px;
  height: 20px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* Preferences */
.preferences-demo {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}
.settings-window {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}
.settings-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 14px;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--chrome) 82%, var(--accent) 4%);
}
.sidebar-title {
  margin: 0 8px 14px;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar-item {
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 650;
}
.sidebar-item.active {
  background: color-mix(in srgb, var(--accent) 14%, var(--surface-strong));
  color: var(--text);
}
.settings-pane {
  padding: clamp(24px, 4vw, 38px);
}
.settings-pane h3 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.setting-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.setting-row strong,
.setting-row span { display: block; }
.setting-row strong {
  margin-bottom: 2px;
  font-size: 1rem;
}
.setting-row div span {
  color: var(--muted);
  font-size: 0.9rem;
}
.switch {
  position: relative;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  background: #b7c1cf;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.18);
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
}
.switch.on {
  background: #32d74b;
}
.switch.on::after {
  left: 21px;
}
.slider {
  position: relative;
  width: 112px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 28%, #c8d0dc);
}
.slider i {
  position: absolute;
  top: 50%;
  left: 68%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.feature-glyph {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 800;
}
.feature h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}
.feature p {
  margin: 0;
  color: var(--muted);
}

/* Testimonials */
.quotes .quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.58;
}
.quote em {
  color: var(--accent-strong);
  font-style: normal;
}
.quote figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}
.quotes-note {
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 1020px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border-color: color-mix(in srgb, var(--accent) 58%, var(--line));
  background: color-mix(in srgb, var(--surface-strong) 90%, var(--accent) 10%);
  box-shadow: 0 26px 60px rgba(22, 119, 255, 0.20);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}
.plan-tagline {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 6px;
}
.price .amount {
  font-size: clamp(2.1rem, 4vw, 2.85rem);
  font-weight: 830;
  letter-spacing: 0;
}
.price .per {
  color: var(--muted);
  font-weight: 650;
}
.price-meta {
  min-height: 1.1em;
  margin: 0 0 20px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 720;
}
.ticks {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.ticks li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2.3px solid #32d74b;
  border-bottom: 2.3px solid #32d74b;
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; }
.pricing-note {
  margin: 26px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
}
.faq details[open] summary::after { content: "-"; }
.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.62;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--hero-bg);
  text-align: center;
}
.final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.final-inner::before {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: url("/assets/logo.png") center / cover no-repeat;
  box-shadow: var(--shadow-sm);
}
.final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: 0;
}
.final-cta > .final-inner > p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

/* Footer */
footer {
  padding: clamp(36px, 5vw, 56px) clamp(18px, 5vw, 56px) 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--muted);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  display: grid;
  gap: 10px;
  max-width: 320px;
}
.footer-brand p {
  margin: 0;
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 650;
}
.footer-links a:hover { color: var(--text); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface);
}
.footer-social a:hover {
  color: var(--accent-strong);
  border-color: var(--line-strong);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 20px;
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) clamp(20px, 6vw, 40px);
}
.legal h1 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  letter-spacing: 0;
}
.legal .effective {
  margin-bottom: 32px;
  color: var(--muted);
}
.legal h2 {
  margin: 36px 0 12px;
  font-size: 1.5rem;
}
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}
.legal ul { padding-left: 22px; }
.legal a {
  color: var(--accent-strong);
  font-weight: 650;
  text-decoration: underline;
}
.legal .back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1040px) {
  .hero-shot {
    width: 88%;
    margin-right: auto;
    margin-left: 0;
  }
  .menu-popover {
    right: 22px;
    width: 220px;
  }
  .preferences-demo {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .primary-nav { display: none; }
  .cards-3,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid { max-width: 460px; }
  .price-card.featured { order: -1; }
  .trust-strip { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .desktop-scene {
    padding-bottom: 88px;
  }
  .hero-shot {
    width: 100%;
  }
  .menu-popover {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 360px);
    margin: 16px auto 0;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 0;
    padding-top: 44px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 9vw, 2.65rem);
    line-height: 1.08;
  }
  .lede {
    font-size: 1rem;
  }
  .signup-fields {
    grid-template-columns: 1fr;
  }
  .desktop-scene {
    padding: 38px 10px 78px;
    border-radius: 16px;
  }
  .mac-menubar {
    gap: 10px;
    overflow: hidden;
  }
  .menu-left span:nth-child(n+4),
  .menu-right .menu-pill {
    display: none;
  }
  .app-bar strong {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .settings-window {
    grid-template-columns: 1fr;
  }
  .settings-sidebar {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 10px 14px;
  }
  .header-actions {
    justify-self: end;
  }
  .header-cta { display: none; }
  .theme-switcher button {
    width: 30px;
  }
  .hero-subnote {
    display: grid;
  }
  .hero-inner {
    max-width: 350px;
  }
  .eyebrow {
    justify-content: center;
    font-size: 0.7rem;
  }
  .trust-strip div,
  .card,
  .price-card,
  .feature,
  .faq details {
    border-radius: 8px;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-inner {
    max-width: 342px;
  }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.36rem);
  }
  .app-bar {
    min-height: 34px;
    padding: 0 10px;
  }
  .traffic {
    width: 10px;
    height: 10px;
  }
  .dock span {
    width: 32px;
    height: 32px;
  }
  .setting-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===========================================================================
   Premium dark Mac app landing style.
   This final layer intentionally pulls the page closer to reference Mac utility
   sites: centered icon + headline, restrained nav, black atmosphere, pill CTAs.
   =========================================================================== */

:root,
:root[data-theme="light"],
:root[data-theme="dark"] {
  color-scheme: dark;
  --accent: #0a84ff;
  --accent-2: #39bdf5;
  --accent-strong: #6fb8ff;
  --accent-grad: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  --on-accent: #050505;
  --bg: #050607;
  --bg-2: #080a0d;
  --desktop: #0d1219;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.082);
  --chrome: rgba(8, 9, 11, 0.72);
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f6f7;
  --muted: rgba(246, 246, 247, 0.58);
  --soft: rgba(246, 246, 247, 0.38);
  --field-bg: rgba(255, 255, 255, 0.065);
  --field-text: #f6f6f7;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.66);
  --shadow-sm: 0 18px 56px rgba(0, 0, 0, 0.34);
  --radius: 12px;
  --hero-bg:
    radial-gradient(48% 42% at 50% 20%, rgba(35, 75, 125, 0.34), transparent 72%),
    radial-gradient(44% 40% at 50% 100%, rgba(19, 39, 69, 0.32), transparent 70%),
    linear-gradient(180deg, #07090c 0%, #050607 58%, #030405 100%);
}

body {
  background: #050607;
  color: var(--text);
}

.site-header {
  min-height: 72px;
  padding: 0 clamp(20px, 9vw, 190px);
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  gap: 14px;
  font-size: 1.06rem;
  font-weight: 760;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.08), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.primary-nav {
  gap: clamp(24px, 3.1vw, 44px);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.98rem;
}

.primary-nav a:first-child {
  color: rgba(255, 255, 255, 0.9);
}

.primary-nav a:hover {
  color: #fff;
}

.theme-switcher {
  display: none;
}

.header-actions {
  gap: 10px;
}

.btn {
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: 0;
}

.btn-sm {
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.94rem;
}

.btn-primary {
  background: #fff;
  color: #08090b;
  border-color: #fff;
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.018);
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero {
  display: grid;
  place-items: center;
  min-height: min(920px, calc(100vh - 72px));
  padding: clamp(78px, 10vw, 142px) 24px clamp(64px, 9vw, 118px);
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.55) 22%, rgba(5, 6, 7, 0.12) 50%, rgba(5, 6, 7, 0.55) 78%, #050607 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), #050607 88%);
  pointer-events: none;
  mask-image: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: radial-gradient(46% 80% at 50% 100%, rgba(34, 83, 150, 0.18), transparent 72%);
  pointer-events: none;
}

.hero-code {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: rgba(44, 122, 210, 0.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.2rem, 1.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.55em;
  line-height: 1.55;
  overflow-wrap: anywhere;
  filter: blur(0.2px);
  user-select: none;
  transform: translateX(8px);
  mask-image: radial-gradient(64% 62% at 50% 24%, #000 0%, rgba(0, 0, 0, 0.6) 42%, transparent 78%);
}

.hero-inner {
  max-width: 900px;
  margin-top: -18px;
}

.hero-app-icon {
  display: block;
  width: clamp(96px, 9vw, 146px);
  height: clamp(96px, 9vw, 146px);
  margin: 0 auto clamp(34px, 4.2vw, 52px);
  border-radius: 24px;
  box-shadow:
    0 36px 90px rgba(16, 61, 120, 0.26),
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(4.2rem, 7vw, 7.1rem);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.hero .lede {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1.24rem, 1.75vw, 1.62rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(36px, 4.6vw, 58px);
}

.hero-actions .btn {
  min-width: 190px;
}

.hero-subnote {
  display: block;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.98rem;
  font-weight: 650;
}

.hero-demo-scene,
.hero > .media-caption {
  display: none;
}

.trust-strip,
.section {
  background: #050607;
}

.trust-strip {
  gap: 16px;
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(46px, 7vw, 86px);
}

.trust-strip div,
.card,
.feature,
.price-card,
.faq details,
.quotes .quote {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.095);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.25);
}

.trust-strip strong,
.card h3,
.feature h3,
.price-card h3,
.faq summary {
  color: rgba(255, 255, 255, 0.92);
}

.trust-strip span,
.card p,
.feature p,
.section-sub,
.plan-tagline,
.faq details p,
.quote figcaption,
.pricing-note,
.quotes-note {
  color: rgba(255, 255, 255, 0.52);
}

.section {
  padding-top: clamp(78px, 9vw, 128px);
  padding-bottom: clamp(78px, 9vw, 128px);
}

.section-alt {
  background:
    radial-gradient(54% 58% at 50% 0%, rgba(30, 76, 140, 0.18), transparent 70%),
    #080a0d;
  border-color: rgba(255, 255, 255, 0.075);
}

.section-head h2 {
  color: #fff;
  font-size: clamp(2.65rem, 4.6vw, 5rem);
  line-height: 1;
  font-weight: 840;
  letter-spacing: -0.03em;
}

.section-head .eyebrow,
.eyebrow {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(111, 184, 255, 0.92);
}

.card::before {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
}

.card .num {
  background: rgba(10, 132, 255, 0.13);
  color: #6fb8ff;
}

.settings-window {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.11);
}

.settings-sidebar {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.08);
}

.settings-pane h3,
.setting-row strong {
  color: #fff;
}

.setting-row,
.sidebar-item.active {
  border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
  background: rgba(10, 132, 255, 0.14);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.14), rgba(255, 255, 255, 0.045));
  border-color: rgba(111, 184, 255, 0.32);
  box-shadow: 0 34px 100px rgba(10, 132, 255, 0.14);
}

.final-cta {
  background:
    radial-gradient(44% 80% at 50% 0%, rgba(31, 83, 154, 0.22), transparent 72%),
    #050607;
  border-color: rgba(255, 255, 255, 0.075);
}

.final-inner::before {
  border-color: rgba(255, 255, 255, 0.12);
}

.signup-form input {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

footer {
  background: #050607;
  border-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 940px) {
  .site-header {
    padding: 0 24px;
  }

  .header-download {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 12vw, 5.8rem);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding: 64px 22px 74px;
  }

  .hero-inner {
    max-width: 360px;
    margin-top: 0;
  }

  .hero-app-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 34px;
    border-radius: 21px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.45rem);
    line-height: 0.98;
  }

  .hero .lede {
    font-size: 1.12rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-code {
    font-size: 1.05rem;
    letter-spacing: 0.5em;
  }
}

@media (max-width: 600px) {
  .brand span {
    display: inline;
  }

  .header-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.86rem;
  }

  .hero-subnote {
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 0 16px;
  }

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

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.72rem);
  }
}

/* ===========================================================================
   BTT-inspired product hero + restored themes + animated Matrix rain.
   =========================================================================== */

:root {
  color-scheme: light dark;
  --accent: #8b7cf6;
  --accent-2: #ff987f;
  --accent-strong: #9b8cff;
  --accent-grad: linear-gradient(135deg, #ff987f 0%, #8b7cf6 100%);
  --on-accent: #ffffff;
  --bg: #120d22;
  --bg-2: #181026;
  --desktop: #15111f;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --chrome: rgba(13, 10, 20, 0.74);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --soft: rgba(255, 255, 255, 0.42);
  --field-bg: rgba(255, 255, 255, 0.075);
  --field-text: #ffffff;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  --shadow-sm: 0 20px 54px rgba(0, 0, 0, 0.28);
  --hero-bg:
    radial-gradient(40% 54% at 78% 28%, rgba(255, 145, 122, 0.24), transparent 70%),
    radial-gradient(50% 65% at 22% 48%, rgba(107, 91, 255, 0.24), transparent 72%),
    linear-gradient(135deg, #100b1e 0%, #1b1025 48%, #33244f 100%);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    color-scheme: light;
    --bg: #f7f5ff;
    --bg-2: #fff8fb;
    --desktop: #ebe7f7;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --chrome: rgba(255, 255, 255, 0.72);
    --line: rgba(46, 32, 72, 0.13);
    --line-strong: rgba(46, 32, 72, 0.22);
    --text: #171224;
    --muted: rgba(23, 18, 36, 0.62);
    --soft: rgba(23, 18, 36, 0.44);
    --field-bg: rgba(255, 255, 255, 0.86);
    --field-text: #171224;
    --shadow: 0 34px 90px rgba(62, 45, 105, 0.18);
    --shadow-sm: 0 18px 46px rgba(62, 45, 105, 0.12);
    --hero-bg:
      radial-gradient(42% 58% at 78% 28%, rgba(255, 145, 122, 0.26), transparent 70%),
      radial-gradient(54% 70% at 20% 50%, rgba(107, 91, 255, 0.20), transparent 72%),
      linear-gradient(135deg, #f8f5ff 0%, #fff8fb 50%, #ece7ff 100%);
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f5ff;
  --bg-2: #fff8fb;
  --desktop: #ebe7f7;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --chrome: rgba(255, 255, 255, 0.72);
  --line: rgba(46, 32, 72, 0.13);
  --line-strong: rgba(46, 32, 72, 0.22);
  --text: #171224;
  --muted: rgba(23, 18, 36, 0.62);
  --soft: rgba(23, 18, 36, 0.44);
  --field-bg: rgba(255, 255, 255, 0.86);
  --field-text: #171224;
  --shadow: 0 34px 90px rgba(62, 45, 105, 0.18);
  --shadow-sm: 0 18px 46px rgba(62, 45, 105, 0.12);
  --hero-bg:
    radial-gradient(42% 58% at 78% 28%, rgba(255, 145, 122, 0.26), transparent 70%),
    radial-gradient(54% 70% at 20% 50%, rgba(107, 91, 255, 0.20), transparent 72%),
    linear-gradient(135deg, #f8f5ff 0%, #fff8fb 50%, #ece7ff 100%);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #120d22;
  --bg-2: #181026;
  --desktop: #15111f;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --chrome: rgba(13, 10, 20, 0.74);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --soft: rgba(255, 255, 255, 0.42);
  --field-bg: rgba(255, 255, 255, 0.075);
  --field-text: #ffffff;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
  --shadow-sm: 0 20px 54px rgba(0, 0, 0, 0.28);
  --hero-bg:
    radial-gradient(40% 54% at 78% 28%, rgba(255, 145, 122, 0.24), transparent 70%),
    radial-gradient(50% 65% at 22% 48%, rgba(107, 91, 255, 0.24), transparent 72%),
    linear-gradient(135deg, #100b1e 0%, #1b1025 48%, #33244f 100%);
}

body {
  background: var(--bg);
  color: var(--text);
}

.site-header {
  min-height: 78px;
  padding: 0 clamp(22px, 7vw, 144px);
  background: color-mix(in srgb, var(--chrome) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(1.25);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
}

.brand span {
  display: inline;
  color: var(--text);
  font-size: 1.1rem;
}

.primary-nav {
  color: var(--muted);
}

.primary-nav a:first-child,
.primary-nav a:hover {
  color: var(--text);
}

.theme-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  box-shadow: none;
}

.theme-switcher button {
  width: 30px;
  height: 30px;
  color: var(--muted);
}

.theme-switcher button[aria-pressed="true"] {
  background: var(--surface-strong);
  color: var(--text);
}

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 22px 52px rgba(139, 124, 246, 0.28);
}

.btn-ghost {
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text);
  border-color: var(--line-strong);
}

.hero {
  display: block;
  min-height: auto;
  padding: clamp(70px, 8vw, 118px) clamp(22px, 7vw, 144px) clamp(58px, 7vw, 96px);
  background: var(--hero-bg);
  text-align: left;
}

.hero::before {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 82%, transparent) 0%, transparent 34%, transparent 66%, color-mix(in srgb, var(--bg) 82%, transparent) 100%),
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg) 72%, transparent) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-inner {
  max-width: 650px;
  margin: 0;
  text-align: left;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 54px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--muted);
  font-weight: 700;
}

.hero-pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero-app-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 28px;
  border-radius: 16px;
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(3.25rem, 5.15vw, 5.85rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero h1::first-line {
  color: var(--text);
}

.hero .lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 42px;
}

.hero-subnote {
  color: var(--muted);
  text-align: left;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.28;
}

.matrix-rain {
  position: absolute;
  inset: 78px 0 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.68;
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 12%, #000 72%, transparent 100%),
    radial-gradient(76% 72% at 52% 28%, #000 0%, rgba(0, 0, 0, 0.82) 48%, transparent 88%);
  mask-composite: intersect;
}

.matrix-column {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.25em;
  overflow: hidden;
  opacity: var(--alpha);
  transform: translateX(-50%);
}

.matrix-stream {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  white-space: pre;
  color: color-mix(in srgb, var(--accent-strong) 52%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.95rem, 1.23vw, 1.45rem);
  font-weight: 800;
  line-height: 1.42;
  text-align: center;
  text-shadow:
    0 0 12px color-mix(in srgb, var(--accent-strong) 22%, transparent),
    0 0 2px color-mix(in srgb, var(--accent-strong) 20%, transparent);
  transform: translate3d(-50%, -56%, 0);
  animation: matrix-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
  will-change: transform;
}

@keyframes matrix-fall {
  from { transform: translate3d(calc(-50% + var(--drift)), -62%, 0); }
  to { transform: translate3d(calc(-50% - var(--drift)), 18%, 0); }
}

.hero-demo-scene {
  display: block;
  margin: 0;
  padding: 42px 24px 78px;
  max-width: none;
  min-height: 560px;
  border-radius: 28px;
  background:
    radial-gradient(68% 80% at 50% 35%, rgba(139, 124, 246, 0.28), transparent 72%),
    color-mix(in srgb, var(--desktop) 92%, #000 8%);
}

.hero-demo-scene .hero-shot {
  width: 92%;
  max-width: 820px;
  margin: 22px auto 0;
  transform: perspective(1400px) rotateX(0deg);
}

.hero-demo-scene .menu-popover {
  top: auto;
  right: 32px;
  bottom: 96px;
}

.hero > .media-caption {
  display: block;
  max-width: 1500px;
  margin: 16px auto 0;
  color: var(--muted);
}

.trust-strip a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-download {
  margin-top: 18px;
}

.section-head h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

@media (prefers-reduced-motion: reduce) {
  .matrix-rain span {
    animation: none;
  }
}

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

  .hero-inner {
    max-width: 780px;
  }

  .hero-demo-scene {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .header-download {
    display: none;
  }

  .hero {
    padding: 46px 22px 62px;
  }

  .hero-pills {
    margin-bottom: 34px;
  }

  .hero-app-icon {
    width: 64px;
    height: 64px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 12vw, 4.15rem);
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-demo-scene {
    min-height: 360px;
    padding: 36px 12px 72px;
    border-radius: 20px;
  }

  .hero-demo-scene .menu-popover {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

/* ───────────────── final theme and product-demo fixes ───────────────── */

:root[data-theme="auto"] {
  color-scheme: light dark;
  --accent: #8b7cf6;
  --accent-2: #ff987f;
  --accent-strong: #9b8cff;
  --accent-grad: linear-gradient(135deg, #ff987f 0%, #8b7cf6 100%);
}

:root[data-theme="light"],
:root[data-theme="dark"] {
  --accent: #8b7cf6;
  --accent-2: #ff987f;
  --accent-grad: linear-gradient(135deg, #ff987f 0%, #8b7cf6 100%);
}

:root[data-theme="light"] {
  --accent-strong: #7466e8;
}

:root[data-theme="dark"] {
  --accent-strong: #9b8cff;
}

@media (prefers-color-scheme: light) {
  :root[data-theme="auto"] {
    color-scheme: light;
    --accent: #8b7cf6;
    --accent-2: #ff987f;
    --accent-strong: #7466e8;
    --accent-grad: linear-gradient(135deg, #ff987f 0%, #8b7cf6 100%);
    --bg: #f7f5ff;
    --bg-2: #fff8fb;
    --desktop: #ebe7f7;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --chrome: rgba(255, 255, 255, 0.72);
    --line: rgba(46, 32, 72, 0.13);
    --line-strong: rgba(46, 32, 72, 0.22);
    --text: #171224;
    --muted: rgba(23, 18, 36, 0.62);
    --soft: rgba(23, 18, 36, 0.44);
    --field-bg: rgba(255, 255, 255, 0.86);
    --field-text: #171224;
    --shadow: 0 34px 90px rgba(62, 45, 105, 0.18);
    --shadow-sm: 0 18px 46px rgba(62, 45, 105, 0.12);
    --hero-bg:
      radial-gradient(42% 58% at 78% 28%, rgba(255, 145, 122, 0.26), transparent 70%),
      radial-gradient(54% 70% at 20% 50%, rgba(107, 91, 255, 0.20), transparent 72%),
      linear-gradient(135deg, #f8f5ff 0%, #fff8fb 50%, #ece7ff 100%);
  }
}

@media (prefers-color-scheme: dark) {
  :root[data-theme="auto"] {
    color-scheme: dark;
    --accent: #8b7cf6;
    --accent-2: #ff987f;
    --accent-strong: #9b8cff;
    --accent-grad: linear-gradient(135deg, #ff987f 0%, #8b7cf6 100%);
    --bg: #120d22;
    --bg-2: #181026;
    --desktop: #15111f;
    --surface: rgba(255, 255, 255, 0.075);
    --surface-strong: rgba(255, 255, 255, 0.11);
    --chrome: rgba(13, 10, 20, 0.74);
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.24);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.62);
    --soft: rgba(255, 255, 255, 0.42);
    --field-bg: rgba(255, 255, 255, 0.075);
    --field-text: #ffffff;
    --shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
    --shadow-sm: 0 20px 54px rgba(0, 0, 0, 0.28);
    --hero-bg:
      radial-gradient(40% 54% at 78% 28%, rgba(255, 145, 122, 0.24), transparent 70%),
      radial-gradient(50% 65% at 22% 48%, rgba(107, 91, 255, 0.24), transparent 72%),
      linear-gradient(135deg, #100b1e 0%, #1b1025 48%, #33244f 100%);
  }
}

.section-head h2,
.trust-strip strong,
.card h3,
.feature h3,
.price-card h3,
.faq summary,
.settings-pane h3,
.setting-row strong {
  color: var(--text);
}

.trust-strip span,
.card p,
.feature p,
.section-sub,
.plan-tagline,
.faq details p,
.quote figcaption,
.pricing-note,
.quotes-note,
.setting-row div span {
  color: var(--muted);
}

.header-cta,
.btn-primary {
  color: #fff;
}

.theme-switcher button[aria-pressed="true"] {
  outline: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

:root[data-theme="light"] .btn-primary,
:root[data-theme="auto"] .btn-primary {
  color: #fff;
}

:root[data-theme="light"] .hero-demo-scene {
  box-shadow: 0 34px 90px rgba(62, 45, 105, 0.22);
}

@media (prefers-color-scheme: light) {
  :root[data-theme="auto"] .hero-demo-scene {
    box-shadow: 0 34px 90px rgba(62, 45, 105, 0.22);
  }
}

.hero-shot img {
  display: none;
}

.product-demo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  min-height: 560px;
  background: #050608;
  color: #fff;
}

.demo-camera {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding-bottom: 88px;
  background: #010101;
}

.demo-camera::after {
  content: "";
  position: absolute;
  inset: 108px 20px 96px;
  border: 8px solid #ff4048;
  border-radius: 0 0 16px 16px;
  pointer-events: none;
  z-index: 4;
}

.demo-hud {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 24px 0;
}

.demo-hud strong,
.demo-hud span {
  display: block;
}

.demo-hud strong {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1;
}

.demo-hud span {
  margin-top: 8px;
  color: #ff4b55;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 900;
}

.demo-hud small {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.demo-hud i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32d74b;
}

.demo-room {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 132px;
  bottom: 96px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 223, 165, 0.5), transparent 20%),
    linear-gradient(110deg, #171c20 0 19%, #d0c0aa 19% 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.demo-window {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24%;
  background:
    radial-gradient(circle at 22% 80%, rgba(89, 180, 255, 0.22), transparent 20%),
    repeating-linear-gradient(0deg, rgba(255, 211, 98, 0.72) 0 2px, transparent 2px 15px),
    linear-gradient(100deg, #061020, #0a1830);
}

.demo-curtain {
  position: absolute;
  left: 16%;
  top: 0;
  bottom: 0;
  width: 18%;
  background:
    repeating-linear-gradient(90deg, rgba(55, 52, 56, 0.95) 0 10px, rgba(108, 101, 101, 0.86) 10px 17px),
    #514b4c;
  filter: drop-shadow(14px 0 14px rgba(0, 0, 0, 0.28));
}

.demo-wall {
  position: absolute;
  inset: 0 0 0 31%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 2px) 0 0 / 20px 100%,
    linear-gradient(180deg, #dfd0b7, #b9a48c);
}

.demo-sofa {
  position: absolute;
  right: 4%;
  bottom: 3%;
  width: 42%;
  height: 28%;
  border-radius: 32px 32px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    #9f8a72;
  box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.09);
}

.demo-shelf {
  position: absolute;
  right: 12%;
  top: 34%;
  width: 32%;
  height: 8px;
  border-radius: 99px;
  background: #9a7448;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
}

.demo-shelf::before,
.demo-shelf::after {
  content: "";
  position: absolute;
  bottom: 8px;
  background: #8eb26a;
}

.demo-shelf::before {
  left: 18%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.demo-shelf::after {
  right: 8%;
  width: 38px;
  height: 46px;
  border-radius: 14px 14px 26px 26px;
  box-shadow: 0 18px 0 -10px #6e9b58, -10px 26px 0 -14px #6e9b58;
}

.demo-plant {
  position: absolute;
  left: 3%;
  bottom: 6%;
  width: 36px;
  height: 58px;
  border-radius: 0 0 14px 14px;
  background:
    radial-gradient(ellipse at 50% 10%, #5e9f62 0 30%, transparent 31%),
    linear-gradient(#e9dac6 0 42%, #d4c2aa 42%);
}

.demo-lamp {
  position: absolute;
  right: 3%;
  bottom: 26%;
  width: 74px;
  height: 120px;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255, 224, 167, 0.72), transparent 50%),
    linear-gradient(90deg, transparent 45%, #8e7358 45% 55%, transparent 55%);
}

.demo-lamp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  height: 48px;
  border-radius: 20px 20px 8px 8px;
  background: #e8c793;
}

.demo-avatar {
  position: absolute;
  left: 30%;
  bottom: -4%;
  width: 270px;
  height: 330px;
}

.demo-hair {
  position: absolute;
  left: 46px;
  top: 8px;
  width: 160px;
  height: 230px;
  border-radius: 48% 48% 44% 44%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 228, 173, 0.58), transparent 20%),
    linear-gradient(100deg, #9c6f39, #d1a45f 50%, #87572f);
  box-shadow:
    -28px 70px 0 -10px #9c6f39,
    26px 88px 0 -18px #8f5f35;
}

.demo-face {
  position: absolute;
  left: 76px;
  top: 70px;
  width: 104px;
  height: 118px;
  border-radius: 48% 46% 44% 45%;
  background: #e1b98c;
}

.demo-face::before,
.demo-face::after {
  content: "";
  position: absolute;
  top: 48px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #1b1614;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.demo-face::before { left: 24px; }
.demo-face::after { right: 23px; }

.demo-neck {
  position: absolute;
  left: 112px;
  top: 178px;
  width: 42px;
  height: 54px;
  border-radius: 0 0 20px 20px;
  background: #d3a778;
}

.demo-shirt {
  position: absolute;
  left: 40px;
  right: 0;
  bottom: 0;
  height: 130px;
  border-radius: 86px 86px 0 0;
  background: #050506;
}

.demo-arm {
  position: absolute;
  left: 114px;
  top: 150px;
  width: 34px;
  height: 116px;
  border-radius: 30px;
  background: #d8af82;
  transform: rotate(31deg);
  transform-origin: top;
}

.demo-hand {
  position: absolute;
  left: 142px;
  top: 118px;
  width: 46px;
  height: 56px;
  border-radius: 28px 28px 24px 24px;
  background: #e1b98c;
  transform: rotate(-8deg);
  box-shadow: -9px 19px 0 -8px #e1b98c, 8px 16px 0 -10px #e1b98c;
}

.demo-prompt {
  display: none;
}

.demo-footer {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.demo-footer span:first-child {
  margin-right: auto;
}

.demo-footer span:nth-child(2),
.demo-footer span:nth-child(3) {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 750;
}

.demo-footer span:nth-child(3) {
  background: #0a84ff;
}

.demo-settings {
  padding: 32px 28px;
  background: #030304;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-settings h3 {
  margin: 0 0 22px;
  font-size: 1.55rem;
}

.demo-settings section {
  margin-bottom: 24px;
}

.demo-settings small {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-settings p,
.demo-settings strong {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
}

.demo-callout {
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.065);
}

.demo-settings strong {
  margin-top: 5px;
  color: #fff;
}

.demo-settings dl {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.demo-settings dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.demo-settings dt,
.demo-settings dd {
  margin: 0;
  font-size: 0.9rem;
}

.demo-settings dt { color: rgba(255, 255, 255, 0.72); }
.demo-settings dd {
  color: #fff;
  font-weight: 850;
}

.demo-settings label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 750;
}

.demo-check {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #fff;
}

.demo-empty-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.46);
  border-radius: 4px;
}

.demo-check::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 4px 0 0 4px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}

.demo-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 12px;
  padding: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.demo-select b {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.demo-slider-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: #fff;
  font-size: 0.86rem;
}

.demo-segment span {
  padding: 6px 8px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.demo-segment span + span {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.demo-slider {
  position: relative;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.demo-slider i {
  position: absolute;
  top: 50%;
  left: 38%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.demo-steps {
  display: none;
}

.demo-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(17, 20, 29, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.demo-steps b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.78rem;
}

.demo-steps span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .product-demo {
    grid-template-columns: 1fr;
  }

  .demo-settings {
    display: none;
  }

  .demo-steps {
    grid-template-columns: 1fr;
    position: static;
    width: auto;
    margin: 14px 10px 0;
    transform: none;
  }
}

/* Screenshot-style hero demo from the actual Awaira app. */
.hero {
  padding-inline: clamp(22px, 4.5vw, 72px);
}

.hero-layout {
  grid-template-columns: minmax(360px, 0.6fr) minmax(900px, 1.4fr);
  gap: clamp(28px, 3.2vw, 52px);
  align-items: start;
  min-width: 0;
}

.hero-inner {
  width: 100%;
  max-width: 560px;
  min-width: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3rem, 4.25vw, 5rem);
  line-height: 1.05;
}

.hero h1 span {
  display: block;
}

.hero .lede {
  font-size: clamp(1.08rem, 1.32vw, 1.28rem);
}

.hero-demo-scene {
  padding: 0;
  min-height: 0;
  min-width: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="light"] .hero-demo-scene,
:root[data-theme="auto"] .hero-demo-scene {
  box-shadow: none;
}

.hero-demo-scene > .mac-menubar {
  display: none;
}

.hero-demo-scene .hero-shot {
  width: 100%;
  max-width: 1080px;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: #020202;
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-demo-scene .app-bar {
  min-height: 38px;
  padding: 0 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 36%),
    linear-gradient(180deg, #181b1f, #0f1114);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-demo-scene .app-bar strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
}

.product-demo {
  grid-template-columns: minmax(0, 1fr) 270px;
  min-height: 560px;
}

.demo-camera {
  min-height: 560px;
  padding-bottom: 92px;
}

.demo-camera::after {
  inset: 106px 20px 96px;
  border-width: 8px;
  border-radius: 0 0 14px 14px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(255, 64, 72, 0.16);
}

.demo-hud {
  padding: 30px 24px 0;
}

.demo-hud strong {
  font-size: clamp(1.72rem, 2.08vw, 2.18rem);
}

.demo-hud span {
  font-size: clamp(1.08rem, 1.36vw, 1.42rem);
  text-shadow: 0 0 22px rgba(255, 75, 85, 0.32);
}

.demo-hud small {
  margin-top: 4px;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
}

.demo-room {
  top: 108px;
  right: 20px;
  bottom: 98px;
  left: 20px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 91% 18%, rgba(255, 221, 155, 0.68), transparent 16%),
    linear-gradient(96deg, #0b1525 0 14%, #15161a 14% 22%, #d6c6ae 22% 100%);
}

.demo-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 244, 222, 0.22), transparent 32%),
    radial-gradient(circle at 70% 48%, rgba(255, 212, 141, 0.28), transparent 34%),
    linear-gradient(90deg, transparent 0 22%, rgba(0, 0, 0, 0.08) 22% 24%, transparent 24%);
  pointer-events: none;
}

.demo-window {
  width: 18%;
}

.demo-curtain {
  left: 13%;
  width: 13%;
}

.demo-wall {
  inset: 0 0 0 23%;
  background:
    repeating-linear-gradient(90deg, rgba(102, 77, 57, 0.18) 0 2px, transparent 2px 16px) 0 0 / 24% 100% no-repeat,
    linear-gradient(180deg, #eadbc4, #c7af91);
}

.demo-sofa {
  right: 2%;
  bottom: 0;
  width: 46%;
  height: 30%;
  border-radius: 36px 36px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 3px, transparent 3px 16px),
    #95826b;
}

.demo-shelf {
  right: 14%;
  top: 35%;
  width: 31%;
}

.demo-plant {
  width: 30px;
  height: 52px;
}

.demo-lamp {
  right: 2%;
  bottom: 25%;
  transform: scale(0.92);
  transform-origin: bottom right;
}

.demo-avatar {
  left: clamp(120px, 30%, 250px);
  bottom: -4%;
  width: 280px;
  height: 350px;
  transform: scale(0.9);
  transform-origin: bottom center;
}

.demo-hair {
  left: 34px;
  top: 10px;
  width: 178px;
  height: 244px;
  border-radius: 46% 48% 44% 44%;
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 234, 186, 0.72), transparent 19%),
    repeating-linear-gradient(100deg, rgba(255, 237, 194, 0.18) 0 5px, transparent 5px 14px),
    linear-gradient(104deg, #8f602e, #d4a862 52%, #80512b);
}

.demo-face {
  left: 70px;
  top: 80px;
  width: 108px;
  height: 124px;
  background: #e4bb90;
}

.demo-face::before,
.demo-face::after {
  top: 48px;
  width: 18px;
  height: 18px;
}

.demo-arm {
  left: 121px;
  top: 145px;
  height: 126px;
  transform: rotate(28deg);
}

.demo-hand {
  left: 150px;
  top: 111px;
  width: 48px;
  height: 62px;
}

.demo-footer {
  bottom: 28px;
}

.demo-footer i {
  display: inline-block;
  width: 15px;
  height: 11px;
  margin-right: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  border-radius: 2px;
  vertical-align: -1px;
}

.demo-footer i::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  margin: -5px 0 0 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.76);
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.demo-settings {
  padding: 28px 24px;
  background: #030303;
}

.demo-settings h3 {
  margin-bottom: 28px;
}

.demo-settings section {
  margin-bottom: 18px;
}

.demo-settings dl {
  gap: 13px;
  margin-bottom: 24px;
}

.demo-settings dt,
.demo-settings dd,
.demo-settings label,
.demo-slider-row {
  font-size: 0.85rem;
}

.demo-segment span {
  min-width: 0;
  padding-inline: 5px;
  white-space: nowrap;
}

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

  .hero-inner {
    max-width: 760px;
  }

  .hero-demo-scene .hero-shot {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .product-demo {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .demo-camera {
    min-height: 520px;
  }

  .demo-camera::after {
    inset: 104px 16px 94px;
  }

  .demo-room {
    top: 108px;
    right: 16px;
    bottom: 96px;
    left: 16px;
  }

  .demo-avatar {
    left: clamp(72px, 23%, 160px);
    transform: scale(0.92);
  }
}

@media (max-width: 720px) {
  .theme-switcher {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-layout,
  .hero-inner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.6vw, 2.42rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero .lede,
  .built-for {
    max-width: 100%;
  }

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

@media (max-width: 980px) {
  .privacy-proof,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .privacy-checks {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .built-for ul {
    grid-template-columns: 1fr;
  }

  .built-for {
    margin-top: 24px;
    padding: 16px;
  }

  .hero-actions .btn,
  .final-cta .btn,
  .signup-form button {
    width: 100%;
  }

  .proof-card {
    min-height: 0;
    padding: 20px;
  }

  .usage-example div {
    display: grid;
    gap: 4px;
  }
}

/* ===========================================================================
   Real app screenshot in the hero (replaces the old CSS-built mock demo).
   The screenshot already includes the macOS window chrome, so we just frame it.
   =========================================================================== */
/* Centered single-column hero (Bartender-style): icon + headline + copy +
   buttons stacked and centered, with the screenshot showcased below. */
.hero {
  place-items: start center;
  align-content: start;
  min-height: 0;
  padding-top: clamp(28px, 3.5vw, 52px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  max-width: 1080px;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.hero-pills {
  justify-content: center;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.hero-app-icon {
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  margin: 0 auto clamp(16px, 2vw, 22px);
  border-radius: 20px;
}

.hero h1 {
  max-width: 660px;
  margin: 0 auto clamp(16px, 2vw, 22px);
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-align: center;
}

.hero .lede {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.5;
  text-align: center;
}

.built-for {
  width: 100%;
  max-width: 520px;
  margin-top: clamp(20px, 2.6vw, 28px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-actions {
  justify-content: center;
  margin-top: clamp(22px, 2.8vw, 30px);
}

.hero-subnote {
  text-align: center;
}

.hero-stats {
  width: 100%;
  max-width: 660px;
  margin-top: clamp(24px, 3vw, 34px);
  margin-left: auto;
  margin-right: auto;
}

.hero-stats strong,
.hero-stats span {
  text-align: center;
}

/* Screenshot showcased below the centered copy. */
.hero-shot {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-shot figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 720px) {
  .hero-shot {
    max-width: 100%;
  }
}
