:root {
  --window: #131928;
  --window-2: #101622;
  --chrome: #1f2534;
  --surface: #252c3a;
  --text: #dbe1eb;
  --muted: #9ca6b8;
  --line: #3b455a;
  --teal: #17cec1;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "SF Pro Text", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 206, 193, 0.12) 0%, transparent 38%),
    radial-gradient(circle at 78% 42%, rgba(23, 206, 193, 0.22) 0%, rgba(23, 206, 193, 0.10) 36%, transparent 64%),
    radial-gradient(circle at 86% 18%, rgba(77, 112, 255, 0.10) 0%, transparent 42%),
    linear-gradient(165deg, #1d2536 0%, #151c2d 42%, #101624 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

body.versions-open {
  overflow: visible;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.62;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: color-mix(in srgb, var(--teal) 32%, transparent);
  top: -180px;
  left: -180px;
}

.orb-b {
  width: 420px;
  height: 420px;
  background: color-mix(in srgb, #4d70ff 14%, transparent);
  bottom: -240px;
  right: -170px;
}

.service-status-pill {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  max-width: min(330px, calc(100vw - 2rem));
  padding: 0.48rem 0.66rem;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--chrome) 80%, black 20%);
  color: color-mix(in srgb, var(--text) 88%, var(--muted) 12%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  font-size: 0.76rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  isolation: isolate;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0) scale(0.98);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
  backdrop-filter: blur(10px) saturate(112%);
  -webkit-backdrop-filter: blur(10px) saturate(112%);
}

.service-status-pill::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 50%, rgba(52, 211, 153, 0.42), transparent 58%),
    radial-gradient(circle at 78% 50%, rgba(52, 211, 153, 0.18), transparent 64%);
  filter: blur(16px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-status-pill.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.service-status-pill.is-online.is-visible {
  cursor: pointer;
  pointer-events: auto;
}

.service-status-pill.is-online.is-visible:hover,
.service-status-pill.is-online.is-visible:focus-visible {
  border-color: color-mix(in srgb, #34d399 58%, var(--line) 42%);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(52, 211, 153, 0.18);
  outline: none;
}

.service-status-pill.is-online.is-visible:hover::before,
.service-status-pill.is-online.is-visible:focus-visible::before {
  opacity: 1;
}

.service-status-dot {
  width: 0.56rem;
  height: 0.56rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent);
}

.service-status-pill.is-online .service-status-dot {
  color: #34d399;
}

.service-status-pill.is-offline .service-status-dot {
  color: #f59e0b;
}

.release-toast-glow {
  position: fixed;
  right: 1.35rem;
  bottom: 1.05rem;
  width: min(390px, calc(100vw - 1.5rem));
  height: 230px;
  background: radial-gradient(ellipse at 50% 58%, rgba(23, 206, 193, 0.84) 0%, rgba(23, 206, 193, 0.52) 38%, rgba(23, 206, 193, 0.22) 68%, transparent 94%);
  filter: blur(48px);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 300ms ease, transform 340ms ease;
  pointer-events: none;
  z-index: 31;
}

.release-toast {
  position: fixed;
  right: 1.35rem;
  bottom: 1.05rem;
  z-index: 32;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  width: min(390px, calc(100vw - 1.5rem));
  padding: 1.3rem 3rem 1rem 1rem;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, var(--chrome) 84%, black 16%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 240ms ease;
}

.release-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.release-toast-glow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.release-toast-close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
}

.release-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: -0.34rem;
  color: var(--teal);
  filter: drop-shadow(0 0 12px rgba(23, 206, 193, 0.38));
}

.release-toast-icon .material-symbols-outlined {
  font-size: 1.42rem;
  font-variation-settings: "FILL" 1;
}

.release-toast-kicker,
.release-toast-text {
  margin: 0;
}

.release-toast-kicker {
  color: color-mix(in srgb, var(--teal) 78%, var(--text) 22%);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-toast-text {
  margin-top: 15px;
  color: color-mix(in srgb, var(--text) 88%, var(--muted) 12%);
  font-size: 0.9rem;
  line-height: 1.42;
}

.release-toast-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 58%, transparent);
  transition: color 180ms ease, border-color 180ms ease;
}

.release-toast-link:hover,
.release-toast-link:focus-visible {
  color: color-mix(in srgb, var(--teal) 80%, white 20%);
  border-bottom-color: var(--teal);
  outline: none;
}

.hero {
  padding: calc(1.1rem + 50px) 0 2.7rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-download {
  padding: 0.55rem 0.78rem;
  font-size: 0.9rem;
}

.hero-grid {
  width: min(1120px, 92vw);
  margin: 2.3rem auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-brandline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1rem;
  position: relative;
}

.hero-brandline::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(23, 206, 193, 0.82) 0%, rgba(23, 206, 193, 0.48) 48%, rgba(23, 206, 193, 0.20) 72%, transparent 92%);
  filter: blur(17px);
  z-index: 0;
  pointer-events: none;
}

.hero-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}

.hero-brand-text {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--text) 92%, var(--teal) 8%);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: calc(0.55rem + 15px) 0 calc(0.8rem + 15px);
}

.lead {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.09rem;
}

.release {
  margin: 1rem 0 0;
  color: color-mix(in srgb, var(--text) 84%, var(--muted) 16%);
  font-size: 0.95rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-free-note {
  margin: 1.25rem 0 0;
  color: color-mix(in srgb, var(--teal) 72%, var(--text) 28%);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.hero-system-note {
  margin: 0.24rem 0 0;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(23, 206, 193, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--chrome) 72%, transparent);
}

.btn-download { gap: 0.48rem; }

.apple-icon {
  display: inline-flex;
  width: 0.9rem;
  height: 0.9rem;
}

.apple-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-actions .btn-download .apple-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  transform: translateY(-1px);
}

.hero-actions .btn-download {
  align-items: center;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hero-actions .btn-download:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 34px rgba(23, 206, 193, 0.35);
  filter: brightness(1.04);
}

.hero-actions .btn-download:active {
  transform: translateY(0) scale(0.995);
}

.hero-shot {
  margin: 0;
  perspective: 1200px;
  margin-right: -220px;
  justify-self: end;
  width: 120%;
  max-width: 1176px;
  position: relative;
  z-index: 1;
}


.hero-shot::before {
  content: "";
  position: absolute;
  inset: 2% -12% -14% 6%;
  background: radial-gradient(circle at 35% 45%, rgba(23, 206, 193, 0.92) 0%, rgba(23, 206, 193, 0.52) 34%, rgba(23, 206, 193, 0.24) 62%, rgba(23, 206, 193, 0.10) 78%, transparent 94%);
  filter: blur(58px);
  z-index: -1;
  pointer-events: none;
}

.app-window-frame {
  width: 100%;
  animation: heroFloat3d 22s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  background: color-mix(in srgb, var(--window-2) 86%, black 14%);
  box-shadow: 0 34px 70px var(--shadow);
}

.app-window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 64%, transparent);
  background: color-mix(in srgb, var(--chrome) 84%, black 16%);
}

.traffic-lights {
  display: inline-flex;
  gap: 0.42rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

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

.window-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 84%, var(--muted) 16%);
}

.app-window-viewport {
  overflow: hidden;
  background: color-mix(in srgb, var(--window) 90%, black 10%);
}

.app-window-viewport img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 2.4rem 0 3rem;
}

h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.3rem 2.2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: start;
  gap: 0.75rem;
}

.feature-icon {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  position: relative;
  top: -9px;
}

.material-symbols-outlined {
  font-size: 35px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
}

.feature-row h3 {
  font-size: 1.06rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.feature-versions-link-wrap {
  margin: 1.6rem 0 0;
  text-align: center;
}

.feature-versions-link {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--teal);
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
}

.feature-versions-link:hover {
  border-bottom-color: var(--teal);
}

.why-section {
  padding-top: calc(1.2rem + 100px);
  position: relative;
  z-index: 0;
}

.why-section::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: min(980px, 90vw);
  height: 360px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(23, 206, 193, 0.36) 0%,
    rgba(23, 206, 193, 0.18) 46%,
    rgba(23, 206, 193, 0.08) 70%,
    transparent 90%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.why-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.6rem;
}

.why-copy {
  max-width: 920px;
  margin: 0 auto;
}

.why-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.why-copy p + p {
  margin-top: 0.9rem;
}

.why-copy a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 55%, transparent);
}

.why-copy a:hover {
  border-bottom-color: var(--teal);
}

a {
  color: var(--teal);
}

.faq-section {
  padding-top: 2.4rem;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--chrome) 66%, transparent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  overflow: clip;
  transition: border-color 180ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--teal) 34%, var(--line) 66%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.35;
  cursor: pointer;
}

.faq-chevron {
  font-size: 1.28rem;
  color: var(--teal);
  transition: transform 180ms ease, color 180ms ease;
}

.faq-item.is-open .faq-trigger {
  color: color-mix(in srgb, var(--text) 92%, var(--teal) 8%);
}

.faq-item.is-open {
  border-color: color-mix(in srgb, var(--teal) 42%, var(--line) 58%);
  background: color-mix(in srgb, var(--chrome) 72%, transparent);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: color-mix(in srgb, var(--teal) 88%, #ffffff 12%);
}

.faq-panel {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.05rem;
  transition: height 280ms ease, opacity 220ms ease, padding 220ms ease;
}

.faq-item.is-open .faq-panel {
  opacity: 1;
  padding: 0 1.05rem 1rem;
}

.faq-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.96rem;
}

.faq-panel p + p {
  margin-top: 0.7rem;
}

.faq-panel a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
}

.faq-panel a:hover {
  border-bottom-color: var(--teal);
}

.footer {
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  border-top: 1px solid color-mix(in srgb, var(--line) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 94%, transparent);
  padding-top: 1.25rem;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  gap: 1.25rem;
  overflow: visible;
}

.footer-headshot-wrap {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-left: 20px;
}

.footer-headshot {
  width: 125px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.footer-headshot-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 230px;
  height: 170px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 206, 193, 0.70) 0%, rgba(23, 206, 193, 0.34) 42%, rgba(23, 206, 193, 0.14) 64%, transparent 92%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.footer-copy {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8175rem;
  line-height: 1.6;
  max-width: none;
}

.footer-note a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
}

.footer-note a:hover {
  border-bottom-color: var(--teal);
}

.footer-copyright {
  margin: calc(0.75rem + 25px) 0 0;
  text-align: center;
  color: color-mix(in srgb, var(--muted) 82%, var(--text) 18%);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.footer-meta {
  margin-top: calc(0.75rem + 25px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-contact-link,
.footer-download-link,
.footer-privacy-link,
.footer-copyright {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.footer-made-tx {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: color-mix(in srgb, var(--muted) 82%, var(--text) 18%);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.tx-icon {
  display: inline-flex;
  width: 1.14rem;
  height: 1.14rem;
  color: var(--teal);
  transform: translateY(-0.5px);
}

.tx-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-meta .footer-copyright {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

.footer-actions {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.footer-contact-link,
.footer-download-link,
.footer-privacy-link {
  text-decoration: none;
  color: var(--teal);
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
}

.footer-contact-link:hover,
.footer-download-link:hover,
.footer-privacy-link:hover {
  border-bottom-color: var(--teal);
}

.footer-meta .footer-copyright a {
  text-decoration: none;
  color: var(--teal);
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
}

.footer-meta .footer-copyright a:hover {
  border-bottom-color: var(--teal);
}

.contact-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: 1.25rem;
  pointer-events: none;
  z-index: 60;
}

.versions-drawer,
.privacy-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  align-items: stretch;
  justify-items: end;
  pointer-events: none;
  z-index: 58;
}

.versions-drawer::before,
.privacy-drawer::before {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 10%;
  width: min(470px, calc(100vw - 2rem));
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(23, 206, 193, 0.92) 0%, rgba(23, 206, 193, 0.58) 38%, rgba(23, 206, 193, 0.26) 66%, rgba(23, 206, 193, 0.10) 82%, transparent 98%);
  filter: blur(44px);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 280ms ease, transform 320ms ease;
  pointer-events: none;
}

.privacy-drawer::before {
  top: auto;
  right: 1rem;
  bottom: 1rem;
  height: 480px;
  background: radial-gradient(ellipse at 50% 62%, rgba(23, 206, 193, 1.00) 0%, rgba(23, 206, 193, 0.64) 38%, rgba(23, 206, 193, 0.30) 66%, rgba(23, 206, 193, 0.13) 82%, transparent 98%);
  filter: blur(48px);
}

.versions-panel,
.privacy-panel {
  position: relative;
  width: min(470px, calc(100vw - 2rem));
  margin: 1rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--chrome) 88%, black 12%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  padding: 1rem 1rem 1.1rem;
  transform: translateX(112%);
  opacity: 0;
  transition: transform 320ms ease, opacity 240ms ease;
  overflow: auto;
}

.versions-panel {
  height: calc(100vh - 2rem);
}

.privacy-panel {
  align-self: end;
  height: auto;
  max-height: calc(100vh - 2rem);
}

.versions-drawer.is-open,
.privacy-drawer.is-open {
  pointer-events: auto;
  background: rgba(4, 10, 20, 0.22);
  backdrop-filter: blur(8px) saturate(105%);
  -webkit-backdrop-filter: blur(8px) saturate(105%);
}

.versions-drawer.is-open .versions-panel,
.privacy-drawer.is-open .privacy-panel {
  transform: translateX(0);
  opacity: 1;
}

.versions-drawer.is-open::before,
.privacy-drawer.is-open::before {
  opacity: 1;
  transform: translateX(0);
}

.versions-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.versions-panel-head h3 {
  font-size: 1.06rem;
  font-weight: 600;
}

.versions-close {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--line) 66%, transparent);
  background: color-mix(in srgb, var(--window) 72%, transparent);
  color: var(--text);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.versions-close .material-symbols-outlined {
  font-size: 20px;
}

.versions-subtitle {
  margin: 0.38rem 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.versions-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.85rem;
}

.version-tabs {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid color-mix(in srgb, var(--line) 62%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--window) 58%, transparent);
}

.version-tab {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.version-tab:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--chrome) 76%, transparent);
}

.version-tab.is-active {
  color: var(--white);
  border-color: color-mix(in srgb, var(--teal) 42%, var(--line) 58%);
  background: color-mix(in srgb, var(--teal) 44%, var(--chrome) 56%);
}

.version-pane {
  margin-top: 0.85rem;
}

.privacy-copy {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.95rem;
}

.privacy-copy section {
  display: grid;
  gap: 0.28rem;
}

.privacy-copy h4 {
  margin: 0;
  color: color-mix(in srgb, var(--text) 90%, var(--teal) 10%);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
}

.privacy-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.version-item {
  border: 1px solid color-mix(in srgb, var(--line) 68%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--window) 62%, transparent);
  padding: 0.8rem 0.82rem;
}

.version-item-current {
  border-color: color-mix(in srgb, var(--teal) 44%, var(--line) 56%);
}

.version-kicker {
  margin: 0;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 600;
}

.version-item h4 {
  margin: 0.28rem 0 0.55rem;
  font-size: 1.02rem;
  font-weight: 500;
}

.version-date {
  margin: -0.2rem 0 0.55rem;
  color: color-mix(in srgb, var(--muted) 90%, var(--text) 10%);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.version-system-note {
  margin: 0.75rem 0 0;
  color: color-mix(in srgb, var(--muted) 88%, var(--text) 12%);
  font-size: 0.8rem;
}

.version-item ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  display: grid;
  gap: 0.42rem;
}

.version-item li {
  line-height: 1.5;
  font-size: 0.9rem;
}

.version-download-row {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.version-download-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 60%, transparent);
  font-size: 0.88rem;
}

.version-download-icon {
  margin-top: 0.75rem;
  color: var(--teal);
  font-size: 1.14rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 550,
    "GRAD" 0,
    "opsz" 24;
}

.version-download-link:hover {
  border-bottom-color: var(--teal);
}

.contact-drawer::before,
.contact-drawer::after {
  content: none;
}

.contact-card-glow {
  position: absolute;
  right: 1.35rem;
  bottom: 1.05rem;
  width: min(420px, calc(100vw - 1.5rem));
  height: 350px;
  background: radial-gradient(ellipse at 50% 68%, rgba(23, 206, 193, 1.00) 0%, rgba(23, 206, 193, 0.74) 34%, rgba(23, 206, 193, 0.38) 62%, rgba(23, 206, 193, 0.16) 82%, transparent 98%);
  filter: blur(50px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 280ms ease, transform 320ms ease;
  pointer-events: none;
  z-index: 0;
}

.contact-card {
  position: relative;
  width: min(420px, calc(100vw - 1.5rem));
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  background: color-mix(in srgb, var(--chrome) 84%, black 16%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  padding: 1rem 1rem 0.9rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 320ms ease, opacity 240ms ease;
  z-index: 1;
}

.contact-drawer.is-open {
  pointer-events: auto;
  background: rgba(4, 10, 20, 0.26);
}

.contact-drawer.is-open .contact-card {
  transform: translateY(0);
  opacity: 1;
}

.contact-drawer.is-open .contact-card-glow {
  opacity: 1;
  transform: translateY(0);
}

.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card-head h3 {
  font-size: 1.03rem;
  font-weight: 600;
}

.contact-close {
  width: 32px;
  height: 32px;
  border: 1px solid color-mix(in srgb, var(--line) 66%, transparent);
  background: color-mix(in srgb, var(--window) 72%, transparent);
  color: var(--text);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-close:hover,
.contact-close:focus-visible {
  border-color: color-mix(in srgb, var(--teal) 42%, var(--line) 58%);
  background: color-mix(in srgb, var(--window) 78%, var(--teal) 8%);
  outline: none;
}

.contact-close .material-symbols-outlined {
  font-size: 20px;
}

.contact-copy {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--window) 70%, transparent);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem 0.68rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 28%, transparent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
}

.contact-form .btn {
  margin-top: 0.2rem;
  transition: transform 180ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.contact-form .btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 34px rgba(23, 206, 193, 0.35);
  filter: brightness(1.04);
}

.contact-form .btn:active {
  transform: translateY(0) scale(0.995);
}

.contact-note {
  margin: 0.05rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #3b455a;
  background: #1f2534;
  color: var(--text);
  font-size: 0.85rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
  z-index: 80;
  overflow: visible;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.contact-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.contact-toast-glow {
  position: fixed;
  right: 1.25rem;
  bottom: 0.9rem;
  width: 280px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(23, 206, 193, 0.62) 0%, rgba(23, 206, 193, 0.40) 38%, rgba(23, 206, 193, 0.18) 66%, rgba(23, 206, 193, 0.08) 82%, transparent 97%);
  filter: blur(24px);
  opacity: 0;
  transform: translateY(12px);
  transition: transform 220ms ease, opacity 220ms ease;
  pointer-events: none;
  z-index: 79;
}

.contact-toast-glow.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.06rem;
  color: var(--teal);
}

@media (max-width: 980px) {
  .hero {
    padding: 2.6rem 0 2rem;
  }

  .hero-grid {
    width: min(1120px, 92vw);
    margin: 1.2rem auto 0;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
    margin: 0.95rem 0 1rem;
  }

  .hero-brand-text {
    font-size: clamp(1.25rem, 5.4vw, 1.6rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-actions .btn-download {
    width: 100%;
    min-height: 50px;
  }

  .hero-shot {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    justify-self: center;
  }

  .app-window-frame {
    animation: none;
  }

  .hero-shot::before {
    inset: 8% -4% -12% -4%;
    filter: blur(36px);
  }

  .hero-shot {
    max-width: none;
  }

  .section {
    padding: 2rem 0 2.4rem;
  }

  .features-section {
    margin-top: 54px;
  }

  .features-section h2 {
    margin-bottom: 1.6rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .feature-row {
    grid-template-columns: 34px 1fr;
  }

  .feature-icon {
    width: 34px;
    height: 34px;
    top: -6px;
  }

  .material-symbols-outlined {
    font-size: 30px;
  }

  .why-section {
    padding-top: 3.4rem;
  }

  .why-section::before {
    height: 270px;
    bottom: 2px;
    filter: blur(28px);
  }

  .why-copy p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .faq-section {
    padding-top: 1.6rem;
  }

  .versions-panel {
    width: min(440px, calc(100vw - 1.4rem));
    height: calc(100vh - 1.4rem);
    margin: 0.7rem;
  }

  .versions-drawer::before {
    right: 0.7rem;
    width: min(440px, calc(100vw - 1.4rem));
  }

  .faq-trigger {
    padding: 0.9rem 0.9rem;
    font-size: 0.98rem;
  }

  .faq-panel {
    padding: 0 0.9rem 0.9rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.7rem;
  }

  .footer-headshot-wrap {
    order: 2;
    margin-left: 0;
    align-self: end;
  }

  .footer-headshot {
    width: 109px;
    height: auto;
  }

  .footer-copy {
    order: 1;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .footer-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-grid {
    width: min(1120px, calc(100vw - 68px));
  }

  .service-status-pill {
    top: 0.7rem;
    right: 0.7rem;
    max-width: calc(100vw - 1.4rem);
    font-size: 0.7rem;
  }

  .hero {
    padding: 2.2rem 0 1.7rem;
  }

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

  .hero-brandline {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }

  .hero-brandline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-app-icon {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-actions .btn-download {
    font-size: 1.02rem;
    padding: 0.82rem 1rem;
  }

  .app-window-bar {
    height: 34px;
    padding: 0 0.75rem;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .window-title {
    font-size: 0.82rem;
  }

  .why-section h2,
  .features-section h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.6rem);
  }

  .footer-copyright {
    margin-top: 1.4rem;
    font-size: 0.72rem;
  }

  .footer-meta {
    margin-top: 1.4rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-made-tx {
    justify-self: center;
  }

  .footer-meta .footer-copyright {
    grid-column: auto;
    text-align: center;
  }

  .footer-actions {
    grid-column: auto;
    justify-self: center;
  }

  .contact-drawer {
    padding: 20px;
  }

  .contact-drawer::before {
    content: none;
  }

  .contact-card-glow {
    right: 20px;
    bottom: 20px;
    width: calc(100vw - 40px);
    height: 340px;
  }

  .contact-card {
    width: calc(100vw - 40px);
    border-radius: 16px;
  }

  .contact-toast {
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.8rem;
  }

  .contact-toast-glow {
    right: 0.7rem;
    bottom: 0.56rem;
  }

  .release-toast,
  .release-toast-glow {
    right: 20px;
    bottom: 20px;
    width: calc(100vw - 40px);
  }

  .release-toast {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 1.3rem 3rem 0.96rem 0.94rem;
    border-radius: 16px;
  }

  .release-toast-text {
    font-size: 0.86rem;
  }

  .versions-panel,
  .privacy-panel {
    width: calc(100vw - 40px);
    height: calc(100vh - 40px);
    margin: 20px;
    border-radius: 16px;
  }

  .privacy-panel {
    height: auto;
    max-height: calc(100vh - 40px);
  }

  .versions-drawer::before,
  .privacy-drawer::before {
    right: 20px;
    top: 20px;
    width: calc(100vw - 40px);
    height: calc(100vh - 40px);
  }

  .privacy-drawer::before {
    top: auto;
    bottom: 20px;
    height: min(520px, calc(100vh - 40px));
  }
}

.features-section {
  margin-top: 100px;
}


@keyframes heroFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


@keyframes heroFloat3d {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotateZ(-0.42deg) rotateY(-1.65deg) rotateX(0.28deg);
  }
  12% {
    transform: translate3d(1px, -3px, 8px) scale(1.003) rotateZ(-0.16deg) rotateY(-0.42deg) rotateX(0.06deg);
  }
  27% {
    transform: translate3d(2px, -6px, 18px) scale(1.007) rotateZ(0.28deg) rotateY(1.35deg) rotateX(-0.28deg);
  }
  43% {
    transform: translate3d(0, -8px, 26px) scale(1.011) rotateZ(0.42deg) rotateY(1.85deg) rotateX(-0.42deg);
  }
  58% {
    transform: translate3d(-2px, -7px, 22px) scale(1.009) rotateZ(0.1deg) rotateY(-0.78deg) rotateX(0.06deg);
  }
  74% {
    transform: translate3d(-1px, -5px, 16px) scale(1.006) rotateZ(-0.3deg) rotateY(-1.92deg) rotateX(0.36deg);
  }
  89% {
    transform: translate3d(1px, -2px, 6px) scale(1.002) rotateZ(-0.18deg) rotateY(-0.76deg) rotateX(0.18deg);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotateZ(-0.42deg) rotateY(-1.65deg) rotateX(0.28deg);
  }
}

.status-tag {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}



.features-section h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: calc(1.5rem + 30px);
}

.features-section h2,
.why-section h2 {
  font-weight: 500 !important;
}

@media (max-width: 980px) {
  .features-section {
    margin-top: 54px !important;
  }

  .features-section h2 {
    margin-bottom: 1.6rem !important;
  }
}

@media (max-width: 640px) {
  .why-section h2,
  .features-section h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.6rem) !important;
  }
}
