:root {
  --background: #09090b;
  --background-soft: #0f1015;
  --surface: #15151c;
  --surface-raised: #1b1b25;
  --surface-blue: #111827;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(129, 140, 248, 0.28);

  --text: #ffffff;
  --text-soft: #d1d5db;
  --text-muted: #9696a5;
  --text-faint: #676777;

  --purple: #7c3aed;
  --indigo: #6366f1;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --emerald: #10b981;

  --purple-soft: rgba(124, 58, 237, 0.16);
  --indigo-soft: rgba(99, 102, 241, 0.14);
  --teal-soft: rgba(20, 184, 166, 0.14);

  --container: 1180px;
  --radius-small: 14px;
  --radius-medium: 22px;
  --radius-large: 32px;

  --shadow-large: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(99, 102, 241, 0.09),
      transparent 34rem
    ),
    var(--background);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(99, 102, 241, 0.42);
  color: #ffffff;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow-container {
  max-width: 820px;
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow:
    0 8px 28px rgba(99, 102, 241, 0.32),
    0 0 0 1px rgba(165, 180, 252, 0.18);
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 750;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.header-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #c7d2fe;
  font-size: 13px;
  font-weight: 850;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.header-button:hover,
.header-button:focus-visible {
  border-color: rgba(165, 180, 252, 0.58);
  background: rgba(99, 102, 241, 0.2);
  transform: translateY(-1px);
}

/* Shared typography */

.eyebrow {
  margin: 0 0 14px;
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 920;
  letter-spacing: -2.4px;
  line-height: 1.04;
}

.section-description {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

/* Hero */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 116px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.13),
    transparent
  );
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.9;
}

.hero-glow-one {
  top: -220px;
  right: -110px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.19),
    rgba(124, 58, 237, 0.08) 42%,
    transparent 70%
  );
}

.hero-glow-two {
  bottom: -260px;
  left: -150px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12),
    transparent 68%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 7.2vw, 88px);
  font-weight: 950;
  letter-spacing: -4.8px;
  line-height: 0.97;
}

.hero-description {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2.25vw, 22px);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

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

.button-primary {
  border: 1px solid rgba(165, 180, 252, 0.46);
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  box-shadow:
    0 16px 34px rgba(79, 70, 229, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 20px 44px rgba(79, 70, 229, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
  color: #ffffff;
}

.availability-note {
  margin: 20px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 650;
}

.hero-preview {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screenshot-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 340px);
  transform: rotate(1.5deg);
}

.hero-screenshot-glow {
  position: absolute;
  z-index: -1;
  inset: 8% -18% 4%;
  border-radius: 45%;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(124, 58, 237, 0.34),
      transparent 62%
    ),
    radial-gradient(
      circle at 60% 80%,
      rgba(59, 130, 246, 0.22),
      transparent 58%
    );
  filter: blur(34px);
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  filter: drop-shadow(0 32px 52px rgba(0, 0, 0, 0.48));
}

.preview-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(
      150deg,
      rgba(30, 30, 43, 0.98),
      rgba(14, 15, 22, 0.98)
    );
  box-shadow:
    var(--shadow-large),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.preview-card-main {
  position: relative;
  width: min(100%, 450px);
  min-height: 500px;
  overflow: hidden;
  padding: 24px;
  border-radius: 38px;
  transform: rotate(2.2deg);
}

.preview-card-main::before {
  content: "";
  position: absolute;
  top: 96px;
  right: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.38),
    rgba(124, 58, 237, 0.08) 48%,
    transparent 70%
  );
}

.preview-card-main::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -90px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.2),
    transparent 68%
  );
}

.preview-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-label {
  font-size: 17px;
  font-weight: 900;
}

.preview-status {
  padding: 7px 11px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-content {
  position: relative;
  z-index: 1;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 4px 8px;
}

.preview-kicker {
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preview-content h2 {
  margin: 10px 0 20px;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 920;
  letter-spacing: -1.8px;
  line-height: 1.05;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.preview-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 750;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(24, 24, 33, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-card-one {
  top: 80px;
  left: -38px;
  transform: rotate(-3deg);
}

.floating-card-two {
  right: -22px;
  bottom: 62px;
  transform: rotate(2deg);
}

.floating-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(99, 102, 241, 0.25),
    rgba(20, 184, 166, 0.17)
  );
  color: #c7d2fe;
  font-size: 20px;
  font-weight: 900;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: #ffffff;
  font-size: 13px;
}

.floating-card div > span {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 11px;
}

/* Intro */

.intro-section {
  padding: 120px 0;
}

.intro-section .section-heading {
  margin-inline: auto;
}

.intro-section .section-description {
  margin-inline: auto;
}

/* App showcase */

.showcase-section {
  padding: 118px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(99, 102, 241, 0.12),
      transparent 34rem
    ),
    rgba(17, 24, 39, 0.16);
}

.showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 46px;
}

.showcase-description {
  margin: 0 0 3px;
  font-size: 16px;
}

.showcase-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 2px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(129, 140, 248, 0.65) rgba(255, 255, 255, 0.06);
}

.showcase-track::-webkit-scrollbar {
  height: 9px;
}

.showcase-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.showcase-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(129, 140, 248, 0.65);
}

.showcase-item {
  width: min(29vw, 330px);
  min-width: 280px;
  margin: 0;
  scroll-snap-align: start;
}

.showcase-item img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(129, 140, 248, 0.22);
  border-radius: 24px;
  background: #08080a;
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(79, 70, 229, 0.08);
}

.showcase-item figcaption {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.showcase-hint {
  margin: 8px 0 0;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

/* Features */

.features-section {
  padding: 118px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background:
    linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.2),
      rgba(9, 9, 11, 0)
    );
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-description-side {
  margin: 0 0 3px;
  font-size: 16px;
}

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

.feature-card {
  min-height: 270px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background:
    linear-gradient(
      145deg,
      rgba(27, 27, 37, 0.94),
      rgba(16, 16, 22, 0.94)
    );
  box-shadow: var(--shadow-card);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  background:
    linear-gradient(
      145deg,
      rgba(34, 34, 48, 0.98),
      rgba(17, 17, 24, 0.98)
    );
  transform: translateY(-4px);
}

.feature-number {
  color: #818cf8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.feature-card h3 {
  margin: 60px 0 12px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.45px;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.72;
}

/* Connection */

.connection-section {
  padding: 120px 0;
}

.connection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.connection-copy .section-description {
  max-width: 630px;
}

.connection-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background:
    linear-gradient(
      145deg,
      rgba(28, 28, 40, 0.98),
      rgba(15, 15, 21, 0.98)
    );
  box-shadow: var(--shadow-large);
}

.connection-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 24px;
  border-bottom: 1px solid var(--border);
}

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

.connection-item span {
  color: #a5b4fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.connection-item strong {
  color: var(--text-soft);
  font-size: 14px;
  text-align: right;
}

/* Safety */

.safety-section {
  padding: 118px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(
      circle at 12% 40%,
      rgba(20, 184, 166, 0.1),
      transparent 34rem
    ),
    rgba(17, 24, 39, 0.18);
}

.safety-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(52px, 9vw, 130px);
}

.safety-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.text-links a {
  position: relative;
  color: #a5b4fc;
  font-size: 14px;
  font-weight: 850;
}

.text-links a::after {
  content: "→";
  margin-left: 7px;
  transition: margin-left 160ms ease;
}

.text-links a:hover::after,
.text-links a:focus-visible::after {
  margin-left: 11px;
}

/* Download */

.download-section {
  padding: 120px 0;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(129, 140, 248, 0.25);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(20, 184, 166, 0.18),
      transparent 25rem
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(124, 58, 237, 0.24),
      transparent 28rem
    ),
    linear-gradient(
      145deg,
      rgba(30, 30, 47, 0.98),
      rgba(14, 15, 22, 0.98)
    );
  box-shadow: var(--shadow-large);
}

.download-card .section-heading {
  max-width: 670px;
}

.download-card .section-description {
  max-width: 650px;
}

.store-buttons {
  display: grid;
  gap: 12px;
  min-width: 226px;
}

.store-button {
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 19px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(8, 8, 11, 0.78);
}

.store-button-disabled {
  cursor: default;
}

.store-small {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.store-button strong {
  margin-top: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

/* Legal pages */

.legal-hero {
  padding: 108px 0 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(99, 102, 241, 0.18),
      transparent 32rem
    ),
    radial-gradient(
      circle at 8% 100%,
      rgba(20, 184, 166, 0.09),
      transparent 28rem
    );
}

.legal-hero-inner {
  max-width: 920px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: -4px;
  line-height: 0.98;
}

.legal-hero-description {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}

.legal-updated {
  margin: 24px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 750;
}

.legal-content-section {
  padding: 92px 0 118px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.legal-sidebar {
  position: sticky;
  top: 108px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(21, 21, 28, 0.86);
}

.legal-sidebar-label {
  margin: 0 0 14px;
  color: #a5b4fc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-sidebar a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
  transition: color 150ms ease;
}

.legal-sidebar a:hover,
.legal-sidebar a:focus-visible {
  color: #ffffff;
}

.legal-document {
  min-width: 0;
}

.legal-card {
  scroll-margin-top: 110px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(27, 27, 37, 0.95),
      rgba(15, 15, 21, 0.95)
    );
  box-shadow: var(--shadow-card);
}

.legal-card + .legal-card {
  margin-top: 14px;
}

.legal-card h2 {
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.45px;
  line-height: 1.3;
}

.legal-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

.legal-inline-link,
.legal-email-link {
  display: inline-block;
  margin-top: 17px;
  color: #a5b4fc;
  font-weight: 850;
}

.legal-inline-link::after {
  content: "→";
  margin-left: 8px;
}

.legal-closing-note {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

/* Support page */

.support-page h1,
.support-page h2,
.support-page h3 {
  text-wrap: balance;
}

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(99, 102, 241, 0.2),
      transparent 32rem
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(20, 184, 166, 0.11),
      transparent 28rem
    );
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.support-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 950;
  letter-spacing: -4px;
  line-height: 0.98;
}

.support-hero-description {
  max-width: 700px;
  margin: 28px 0 34px;
  color: var(--text-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.support-contact-card {
  padding: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(34, 34, 49, 0.98),
      rgba(16, 16, 23, 0.98)
    );
  box-shadow: var(--shadow-large);
}

.support-card-label {
  color: #a5b4fc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.support-contact-card h2 {
  margin: 10px 0 12px;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.7px;
}

.support-contact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.support-contact-card a {
  display: inline-block;
  margin-top: 22px;
  color: #a5b4fc;
  font-size: 15px;
  font-weight: 900;
}

.support-section {
  padding: 112px 0;
}

.support-section-tinted {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(
      circle at 8% 50%,
      rgba(20, 184, 166, 0.09),
      transparent 30rem
    ),
    rgba(17, 24, 39, 0.18);
}

.support-section-header {
  margin-bottom: 44px;
}

.support-section-header h2,
.support-split h2,
.account-delete-grid h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 930;
  letter-spacing: -2.4px;
  line-height: 1.04;
}

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

.support-topic-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(27, 27, 37, 0.95),
      rgba(15, 15, 21, 0.95)
    );
  box-shadow: var(--shadow-card);
}

.support-topic-number {
  color: #818cf8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.support-topic-card h3 {
  margin: 52px 0 11px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.support-topic-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.72;
}

.support-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.support-copy p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.support-copy a {
  color: #a5b4fc;
  font-weight: 850;
}

.support-text-link {
  display: inline-block;
  margin-top: 8px;
}

.support-text-link::after {
  content: "→";
  margin-left: 8px;
}

.account-delete-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  align-items: start;
  gap: clamp(54px, 9vw, 120px);
}

.account-delete-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(29, 29, 41, 0.98),
      rgba(15, 15, 21, 0.98)
    );
  box-shadow: var(--shadow-large);
}

.account-delete-card > h3 {
  margin: 0 0 22px;
  font-size: 23px;
  font-weight: 900;
}

.support-steps {
  margin: 0;
  padding-left: 23px;
}

.support-steps li {
  margin-bottom: 13px;
  padding-left: 6px;
  color: var(--text-soft);
  line-height: 1.65;
}

.support-steps li::marker {
  color: #818cf8;
  font-weight: 900;
}

.account-delete-warning {
  margin-top: 25px;
  padding: 18px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  border-radius: 18px;
  background: rgba(127, 29, 29, 0.18);
}

.account-delete-warning strong {
  color: #fecaca;
  font-size: 15px;
}

.account-delete-warning p {
  margin: 7px 0 0;
  color: #fca5a5;
  font-size: 13px;
  line-height: 1.7;
}

.account-delete-help {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.account-delete-help a {
  color: #a5b4fc;
  font-weight: 850;
}

.troubleshooting-list {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(20, 20, 28, 0.86);
}

.troubleshooting-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.troubleshooting-list article:last-child {
  border-bottom: 0;
}

.troubleshooting-list article > span {
  color: #818cf8;
  font-size: 12px;
  font-weight: 900;
}

.troubleshooting-list h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.troubleshooting-list p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-troubleshooting-layout {
  display: grid;
  gap: 38px;
}

.support-troubleshooting-layout > div:first-child {
  max-width: 760px;
}

.support-troubleshooting-layout .troubleshooting-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.support-troubleshooting-layout .troubleshooting-list article {
  grid-column: span 2;
  align-content: start;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(27, 27, 37, 0.95),
      rgba(15, 15, 21, 0.95)
    );
}

.support-troubleshooting-layout .troubleshooting-list article:nth-child(4),
.support-troubleshooting-layout .troubleshooting-list article:nth-child(5) {
  grid-column: span 3;
}

.support-troubleshooting-layout .troubleshooting-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.support-contact-section {
  padding: 112px 0;
}

.support-contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(129, 140, 248, 0.26);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(20, 184, 166, 0.18),
      transparent 24rem
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(124, 58, 237, 0.25),
      transparent 28rem
    ),
    linear-gradient(
      145deg,
      rgba(30, 30, 47, 0.98),
      rgba(14, 15, 22, 0.98)
    );
  box-shadow: var(--shadow-large);
}

.support-contact-banner h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 930;
  letter-spacing: -2px;
  line-height: 1.05;
}

.support-contact-banner p:not(.eyebrow) {
  max-width: 650px;
  margin: 17px 0 0;
  color: var(--text-muted);
}

/* Not-found page */

.not-found-page {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}

.not-found-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.not-found-icon-wrap {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
}

.not-found-icon-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow:
    0 20px 46px rgba(79, 70, 229, 0.36),
    0 0 0 1px rgba(165, 180, 252, 0.18);
}

.not-found-code {
  margin: 0 0 12px;
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.not-found-page h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: -4px;
  line-height: 0.98;
  text-wrap: balance;
}

.not-found-description {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.not-found-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
}

.not-found-links a {
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 750;
  transition: color 150ms ease;
}

.not-found-links a:hover,
.not-found-links a:focus-visible {
  color: #ffffff;
}

.not-found-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.not-found-glow-one {
  top: -220px;
  right: -150px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.2),
    transparent 68%
  );
}

.not-found-glow-two {
  bottom: -240px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12),
    transparent 68%
  );
}

.not-found-footer {
  margin-top: 0;
}

/* Footer */

.site-footer {
  padding: 76px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #08080a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(130px, 0.55fr));
  gap: 60px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 650;
  transition: color 150ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 66px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
}

/* Keyboard accessibility */

a:focus-visible {
  outline: 3px solid rgba(129, 140, 248, 0.75);
  outline-offset: 4px;
}

/* Tablet */

@media (max-width: 980px) {
  .support-troubleshooting-layout .troubleshooting-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-troubleshooting-layout .troubleshooting-list article,
  .support-troubleshooting-layout .troubleshooting-list article:nth-child(4),
  .support-troubleshooting-layout .troubleshooting-list article:nth-child(5) {
    grid-column: auto;
  }

  .support-troubleshooting-layout .troubleshooting-list article:last-child {
    grid-column: 1 / -1;
  }

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

  .legal-sidebar {
    position: static;
  }

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

  .support-hero-grid,
  .support-split,
  .account-delete-grid {
    grid-template-columns: 1fr;
  }

  .support-contact-card,
  .account-delete-card,
  .troubleshooting-list {
    max-width: 720px;
  }

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

  .support-contact-banner {
    grid-template-columns: 1fr;
  }
  
  .showcase-header {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .showcase-description {
    max-width: 700px;
  }
  .hero {
    padding-top: 82px;
  }

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

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

  .hero-preview {
    width: min(100%, 620px);
    margin: 10px auto 0;
  }

  .preview-card-main {
    width: min(82%, 450px);
  }

  .section-header,
  .connection-grid,
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-description-side {
    max-width: 710px;
  }

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

  .connection-panel {
    max-width: 680px;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .store-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.7fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .support-troubleshooting-layout {
    gap: 28px;
  }

  .support-troubleshooting-layout .troubleshooting-list {
    grid-template-columns: 1fr;
  }

  .support-troubleshooting-layout .troubleshooting-list article,
  .support-troubleshooting-layout .troubleshooting-list article:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .not-found-page {
    min-height: calc(100vh - 68px);
    padding: 76px 0;
  }

  .not-found-page h1 {
    font-size: clamp(47px, 14vw, 64px);
    letter-spacing: -3px;
  }

  .not-found-actions {
    display: grid;
  }

  .not-found-actions .button {
    width: 100%;
  }

  .not-found-links {
    flex-direction: column;
    gap: 11px;
  }

  .legal-hero {
    padding: 74px 0 72px;
  }

  .legal-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
    letter-spacing: -3px;
  }

  .legal-content-section {
    padding: 68px 0 86px;
  }

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

  .legal-card {
    padding: 21px;
  }

  .legal-card h2 {
    font-size: 19px;
  }

  .support-hero {
    padding: 74px 0 78px;
  }

  .support-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
    letter-spacing: -3px;
  }

  .support-section,
  .support-contact-section {
    padding: 84px 0;
  }

  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-topic-card {
    min-height: 220px;
  }

  .support-topic-card h3 {
    margin-top: 40px;
  }

  .account-delete-card {
    padding: 22px;
  }

  .support-contact-banner {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .support-contact-banner .button {
    width: 100%;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .header-button {
    min-height: 39px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 0;
    padding: 70px 0 86px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 68px);
    letter-spacing: -3.4px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-preview {
  min-height: 620px;
}

.hero-screenshot-shell {
  width: min(88%, 310px);
  transform: rotate(0.75deg);
}

  .preview-card-main {
    width: calc(100% - 24px);
    min-height: 440px;
    padding: 21px;
    border-radius: 30px;
    transform: rotate(1deg);
  }

  .preview-content {
    min-height: 360px;
  }

  .floating-card {
    min-width: 182px;
    padding: 12px;
  }

  .floating-card-one {
    top: 48px;
    left: -2px;
  }

  .floating-card-two {
    right: -1px;
    bottom: 18px;
  }

  .floating-icon {
    width: 37px;
    height: 37px;
  }

  .intro-section,
  .showcase-section,
  .features-section,
  .connection-section,
  .safety-section,
  .download-section {
    padding: 86px 0;
  }

  .section-heading {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1.8px;
  }

  .section-description {
    margin-top: 19px;
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .showcase-header {
    margin-bottom: 30px;
  }

  .showcase-item {
    width: 76vw;
    min-width: 260px;
  }

  .showcase-hint {
    text-align: left;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .feature-card h3 {
    margin-top: 44px;
  }

  .connection-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .connection-item strong {
    text-align: left;
  }

  .text-links {
    flex-direction: column;
    gap: 13px;
  }

  .download-card {
    width: min(calc(100% - 28px), var(--container));
    padding: 30px 22px;
    border-radius: 28px;
  }

  .store-buttons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
}

/* Small phones */

@media (max-width: 420px) {
  .header-button {
    padding-inline: 11px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .preview-card-main {
    width: calc(100% - 8px);
  }

  .floating-card {
    min-width: 165px;
  }

  .floating-card strong {
    font-size: 12px;
  }

  .floating-card div > span {
    font-size: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

/* Reduced motion */

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}