:root {
  color-scheme: dark;
  --bg: #050810;
  --panel: #0b1020;
  --panel-2: #11172a;
  --text: #f0f4ff;
  --muted: #98a2b8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --hot: #ff6a61;
  --pink: #ffc2df;
  --orange: #ff8b61;
  --blue: #7dd3fc;
  --green: #84f5c6;
  --shadow: 0 20px 64px rgba(0, 0, 0, 0.34);
  --soft-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 106, 97, 0.18), transparent 30rem),
    radial-gradient(circle at 78% 20%, rgba(125, 211, 252, 0.08), transparent 24rem),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

.login-dock {
  position: absolute;
  z-index: 21;
  top: 20px;
  left: 20px;
  display: grid;
  gap: 10px;
  justify-items: start;
}

.login-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(11, 16, 32, 0.72);
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.login-trigger:hover {
  border-color: rgba(255, 106, 97, 0.42);
  background: rgba(18, 24, 44, 0.82);
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.36) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 106, 97, 0.28) 0 1px, transparent 1.6px);
  background-position:
    24px 30px,
    90px 140px,
    220px 80px;
  background-size:
    180px 210px,
    260px 240px,
    330px 280px;
  opacity: 0.42;
}

.home-nav {
  position: absolute;
  z-index: 21;
  top: 20px;
  left: 108px;
  display: flex;
  max-width: calc(100vw - 190px);
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.home-nav a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(11, 16, 32, 0.64);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 900;
}

.home-nav a:hover {
  border-color: rgba(255, 106, 97, 0.42);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  justify-items: center;
  align-content: center;
  padding: clamp(52px, 7vw, 78px) 20px 64px;
  text-align: center;
  overflow: visible;
}

.hero::before {
  content: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, 100%);
  margin: auto;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-bottom: 22px;
  padding: 6px 14px 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dfe6f8;
  font-size: 14px;
  font-weight: 900;
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 106, 97, 0.34));
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theme-button {
  position: fixed;
  z-index: 20;
  top: 20px;
  right: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(11, 16, 32, 0.78);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.04);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.theme-button span {
  width: 20px;
  height: 20px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  box-shadow: -6px -4px 0 -3px var(--muted), 7px 2px 0 -4px var(--muted);
}

.official-logo {
  width: clamp(104px, 14vw, 150px);
  height: clamp(98px, 13vw, 142px);
  margin-bottom: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 106, 97, 0.52));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 10vw, 118px);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--pink), var(--hot) 58%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 70px rgba(255, 106, 97, 0.16);
}

.hero h1 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(46px, 6.9vw, 80px);
  line-height: 0.96;
}

.hero-title-tail {
  display: inline;
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 106, 97, 0.2);
  border-radius: 999px;
  color: #ffb2a9;
  background: rgba(255, 106, 97, 0.08);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.tagline {
  max-width: 880px;
  margin-bottom: 26px;
  color: var(--hot);
  font-size: clamp(15px, 2.5vw, 24px);
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.intro {
  max-width: 920px;
  margin-bottom: 36px;
  color: #b5bdd1;
  font-size: clamp(18px, 2.3vw, 25px);
}

.intro span {
  display: block;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: min(100%, 330px);
  max-width: min(100%, 330px);
  min-height: 58px;
  padding: 10px 20px 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.86);
  color: #e8edf9;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03), var(--soft-shadow);
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.help-pill {
  display: inline-flex;
  width: min(100%, 330px);
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dfe6f8;
  font-weight: 850;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.help-pill.subtle {
  color: #b9c4da;
  background: rgba(255, 255, 255, 0.035);
}

.hero-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: #aeb8cd;
  font-size: 14px;
  font-weight: 850;
}

.hero-links a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-links a::after {
  content: " /";
  color: rgba(255, 255, 255, 0.22);
  padding-left: 10px;
}

.hero-links a:last-child::after {
  content: "";
  padding-left: 0;
}

.hero-visual {
  display: grid;
  justify-items: stretch;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 97, 0.2), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #090d17;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.hero-panel-top strong {
  margin-left: 8px;
  color: #dfe6f8;
  font-size: 13px;
}

.hero-panel-body {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
}

.hero-panel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-panel-brand img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 22px rgba(255, 106, 97, 0.42));
}

.hero-panel-brand b {
  color: #fff;
  font-size: 20px;
}

.hero-panel-brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.hero-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 8, 16, 0.58);
}

.hero-status span {
  color: var(--muted);
  font-weight: 850;
}

.hero-status strong {
  color: var(--hot);
  font-size: 28px;
}

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

.hero-buttons button {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dfe6f8;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.hero-buttons .primary {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--orange));
}

.news-pill:hover {
  border-color: rgba(255, 106, 97, 0.46);
  transform: translateY(-2px);
}

.help-pill:hover {
  border-color: rgba(255, 106, 97, 0.42);
  color: #fff;
  transform: translateY(-2px);
}

.news-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.news-pill b {
  margin-left: auto;
  color: var(--hot);
  font-size: 24px;
}

.section {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 38px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
}

.proof-strip article,
.trial-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 16, 32, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
}

.proof-strip span {
  color: var(--hot);
  font-size: 13px;
  font-weight: 900;
}

.proof-strip strong {
  color: #fff;
  font-size: 20px;
}

.proof-strip p,
.trial-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-pricing {
  padding-top: 24px;
}

.trial-note {
  margin-bottom: 16px;
  padding: 16px 18px;
}

.trial-note strong {
  color: #fff;
}

.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-plan-grid article {
  display: grid;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 16, 32, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.home-plan-grid .highlight {
  border-color: rgba(255, 106, 97, 0.55);
  background:
    linear-gradient(150deg, rgba(255, 106, 97, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(11, 16, 32, 0.82);
}

.home-plan-grid span {
  color: var(--hot);
  font-weight: 900;
}

.home-plan-grid h3 {
  margin: 28px 0 10px;
  font-size: 30px;
}

.home-plan-grid a {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  color: white;
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease;
}

.home-plan-grid a:hover,
.lead-form button:hover,
.quick-submit:hover,
.quick-send:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.section-head a {
  color: var(--hot);
  font-weight: 760;
  white-space: nowrap;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.quote-card,
.feature-card,
.build-grid article,
.faq details,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 16, 32, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quote-card {
  min-height: 260px;
  padding: 22px;
}

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot), var(--blue));
  color: #07101d;
  font-weight: 900;
}

.quote-card p {
  min-height: 116px;
  margin-bottom: 14px;
}

.quote-card strong {
  color: var(--hot);
}

.quick-start {
  padding-top: 72px;
}

.quick-note {
  max-width: 900px;
  margin: 20px 0 0;
}

.product-intro {
  margin: -8px 0 22px;
}

.product-showcase {
  display: grid;
  gap: 18px;
}

.launcher-preview,
.interface-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 16, 32, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.launcher-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: 20px;
  align-items: stretch;
  padding: 20px;
}

.shot-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 97, 0.15), transparent 18rem),
    #090d17;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-shot {
  min-height: 390px;
}

.interface-shot {
  aspect-ratio: 16 / 10;
}

.mock-window {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 97, 0.2), transparent 18rem),
    #090d17;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mock-titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.mock-titlebar strong {
  margin-left: 8px;
  color: #dfe6f8;
  font-size: 13px;
}

.mock-console {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mock-brand img {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 0 22px rgba(255, 106, 97, 0.42));
}

.mock-brand b,
.preview-copy h3,
.interface-grid h3 {
  color: var(--text);
}

.mock-brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

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

.mock-status-grid div,
.mock-secondary span {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 8, 16, 0.56);
}

.mock-status-grid div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.mock-status-grid small {
  color: var(--muted);
}

.mock-status-grid strong {
  color: #fff;
}

.mock-status-grid .hot {
  color: var(--hot);
}

.mock-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mock-actions button,
.mini-screen button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #dfe6f8;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.mock-actions .primary,
.mini-screen button:first-child {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--orange));
}

.mock-secondary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mock-secondary span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.preview-copy {
  display: grid;
  align-content: center;
  padding: 10px 10px 10px 0;
}

.preview-copy span {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--hot);
  background: rgba(255, 106, 97, 0.14);
  font-size: 13px;
  font-weight: 900;
}

.preview-copy h3 {
  max-width: 430px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.preview-copy p {
  max-width: 430px;
}

.interface-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.interface-grid article {
  display: grid;
  gap: 14px;
  min-height: 245px;
  padding: 16px;
}

.mini-screen {
  display: grid;
  min-height: 116px;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 8, 16, 0.58);
}

.mini-screen span,
.mini-screen code {
  display: block;
  padding: 7px 9px;
  border-radius: 10px;
  color: #dce5ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.mini-screen code {
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", "PingFang SC", monospace;
  font-weight: 600;
}

.checks span::before {
  color: var(--green);
  content: "✓ ";
}

.config span:first-child,
.channels span:first-child {
  background: rgba(255, 106, 97, 0.18);
  color: #fff;
}

.logs {
  align-content: center;
}

.license {
  align-content: center;
}

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

.feature-card {
  display: block;
  min-height: 220px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card:hover,
.build-grid article:hover,
.quote-card:hover {
  border-color: rgba(255, 106, 97, 0.55);
  transform: translateY(-3px);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--hot);
  font-weight: 900;
}

.compact-grid .feature-card {
  min-height: 190px;
}

.integrations {
  text-align: center;
}

.integrations .section-head {
  justify-content: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.chips span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8deef;
  font-weight: 760;
}

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

.build-grid article {
  min-height: 250px;
  padding: 26px;
}

.build-grid small {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--hot);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq details {
  margin-bottom: 14px;
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
}

.faq details p {
  margin: 14px 0 0;
}

.get {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 70px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.lead-form input,
.lead-form select,
.lead-form button {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  background: rgba(5, 8, 16, 0.72);
}

.lead-form input::placeholder {
  color: #737f98;
}

.lead-form option {
  background: var(--panel);
}

.lead-form button {
  border: 0;
  background: linear-gradient(135deg, var(--hot), var(--orange));
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px max(17px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  color: var(--text);
  font-weight: 850;
}

body.soft {
  --bg: #090511;
  --panel: #160c1f;
  --panel-2: #1e1228;
  --hot: #ff7b9c;
  --orange: #ffb36b;
  --pink: #ffd2e1;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-copy,
  .hero h1,
  .tagline {
    justify-self: center;
    text-align: center;
  }

  .hero-actions,
  .hero-links {
    justify-content: center;
  }

  .quote-grid,
  .feature-grid,
  .home-plan-grid,
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .build-grid,
  .launcher-preview,
  .get {
    grid-template-columns: 1fr;
  }

  .preview-copy {
    padding: 0;
  }

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

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 106, 97, 0.16), transparent 22rem),
      var(--bg);
  }

  .login-dock {
    top: 12px;
    left: 12px;
    right: 62px;
  }

  .home-nav {
    top: 12px;
    left: 12px;
    right: 62px;
    max-width: none;
    gap: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .home-nav::-webkit-scrollbar {
    display: none;
  }

  .home-nav a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 64px 16px 42px;
  }

  .hero::before {
    content: none;
  }

  .theme-button {
    width: 42px;
    height: 42px;
    top: 12px;
    right: 12px;
  }

  .official-logo {
    width: 104px;
    height: 98px;
    margin-bottom: 22px;
  }

  .brand-lockup {
    margin-bottom: 16px;
  }

  .hero h1 {
    width: 100%;
    max-width: 360px;
    font-size: clamp(27px, 7.6vw, 31px);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-title-tail {
    display: block;
  }

  .hero-kicker {
    font-size: 12px;
    text-align: center;
    white-space: normal;
  }

  h2 {
    font-size: clamp(24px, 9vw, 34px);
  }

  .tagline {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 17px;
    letter-spacing: 0;
  }

  .intro {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .intro span {
    display: inline;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .news-pill {
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    width: 100%;
    text-align: center;
  }

  .help-pill {
    width: 100%;
  }

  .hero-links {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .hero-links a {
    min-height: auto;
    padding: 0;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-panel {
    border-radius: 18px;
  }

  .hero-panel-body {
    gap: 13px;
    padding: 16px;
  }

  .hero-panel-brand img {
    width: 46px;
    height: 46px;
  }

  .hero-panel-brand b {
    font-size: 17px;
  }

  .hero-status {
    min-height: 62px;
    padding: 0 14px;
  }

  .hero-status strong {
    font-size: 22px;
  }

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

  .hero-buttons button {
    min-height: 42px;
  }

  .quote-grid,
  .feature-grid,
  .home-plan-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .quick-start {
    padding-top: 46px;
  }

  .product-intro {
    margin-top: -2px;
  }

  .launcher-preview {
    padding: 14px;
  }

  .mock-window {
    min-height: 0;
  }

  .main-shot {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .mock-console {
    gap: 12px;
    padding: 14px;
  }

  .mock-brand img {
    width: 48px;
    height: 48px;
  }

  .mock-status-grid {
    grid-template-columns: 1fr;
  }

  .mock-status-grid div {
    padding: 11px;
  }

  .mock-actions,
  .mock-secondary {
    grid-template-columns: 1fr 1fr;
  }

  .mock-actions button {
    min-height: 42px;
    font-size: 13px;
  }

  .mock-secondary span {
    min-height: 36px;
  }

  .preview-copy h3 {
    font-size: 26px;
  }

  .interface-grid {
    display: flex;
    gap: 12px;
    margin: 0 -17px;
    padding: 0 17px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .interface-grid::-webkit-scrollbar {
    display: none;
  }

  .interface-grid article {
    flex: 0 0 260px;
    min-height: 218px;
    scroll-snap-align: start;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .quote-card p {
    min-height: auto;
  }

  .home-plan-grid article,
  .feature-card,
  .build-grid article,
  .quote-card {
    min-height: auto;
    padding: 20px;
  }

  .home-plan-grid h3 {
    margin-top: 18px;
  }

  .lead-form {
    padding: 18px;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 30px;
  }
}
