:root {
  --bg: #07111f;
  --bg-soft: #0f1d31;
  --panel: rgba(13, 28, 48, 0.82);
  --panel-strong: #10233d;
  --panel-light: rgba(255, 255, 255, 0.06);
  --text: #f5f7fb;
  --muted: #9fb0c8;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #91f7d2;
  --accent-strong: #37c895;
  --accent-warm: #ffc98b;
  --danger: #ff8f8f;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(55, 200, 149, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 201, 139, 0.16), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0a1321 38%, #08101b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 95%);
  pointer-events: none;
}

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

button {
  font: inherit;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 80px;
  position: relative;
}

.status-banner {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(145, 247, 210, 0.18);
  background: linear-gradient(135deg, rgba(145, 247, 210, 0.12), rgba(255, 201, 139, 0.08));
  box-shadow: var(--shadow);
}

.status-banner-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-banner strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.status-banner span:last-child {
  color: #dce6f4;
  line-height: 1.6;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(8, 17, 31, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.nav,
.nav-actions,
.hero-actions,
.eyebrow-row,
.hero-metrics,
.status-row,
.cta-actions,
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.primary-button,
.secondary-button,
.ghost-button,
.toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), #dffdee);
  color: #07111f;
  font-weight: 800;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border-color: var(--line);
}

.ghost-button,
.toggle-button {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.toggle-button:hover {
  transform: translateY(-2px);
}

.toggle-button.active {
  background: rgba(145, 247, 210, 0.14);
  border-color: rgba(145, 247, 210, 0.35);
  color: var(--accent);
}

.full-width {
  width: 100%;
}

.hero,
.trust-strip,
.value-section,
.modules-section,
.pricing-section,
.desktop-section,
.security-section,
.faq-section,
.final-cta {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  padding: 28px 0 12px;
  align-items: start;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(2.9rem, 4.45vw, 5rem);
}

.hero-copy {
  padding-top: 6px;
}

.hero-text,
.section-heading p,
.module-card p,
.value-card p,
.download-card p,
.desktop-details p,
.security-grid p,
.faq-list p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
}

.eyebrow-pill,
.section-label,
.plan-tag,
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(145, 247, 210, 0.24);
  background: rgba(145, 247, 210, 0.08);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.eyebrow-pill.muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--line);
}

.hero-metrics {
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-metrics article,
.floating-note,
.value-card,
.module-card,
.pricing-card,
.comparison-panel,
.download-card,
.desktop-details,
.security-grid article,
.faq-list details,
.final-cta,
.trust-strip,
.visual-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  flex: 1 1 180px;
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
}

.main-panel {
  position: relative;
  border-radius: 32px;
  padding: 16px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(220px, 244px) minmax(0, 1fr);
  gap: 14px;
}

.panel-side,
.panel-main {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  min-width: 0;
}

.panel-main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.panel-side span,
.status-card small,
.download-card small,
.comparison-grid span,
.trust-strip small {
  color: var(--muted);
}

.panel-side > span,
.status-card small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel-side strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.panel-side ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.panel-side li {
  position: relative;
  padding: 12px 0;
  padding-left: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #dfe8f4;
}

.panel-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(145, 247, 210, 0.12);
}

.status-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.status-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.status-card span {
  display: block;
  margin-top: 8px;
  color: #d9e4f2;
  line-height: 1.55;
}

.status-card.accent {
  background: linear-gradient(135deg, rgba(145, 247, 210, 0.16), rgba(255, 201, 139, 0.11));
}

.panel-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.panel-badge-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7fbff;
  font-size: 0.84rem;
  font-weight: 700;
}

.status-row > .status-card {
  flex: 1 1 0;
}

.status-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.workflow-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.workflow-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.workflow-list span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #07111f;
  background: var(--accent-warm);
  font-weight: 800;
}

.workflow-list p {
  margin: 0;
  color: #edf3fb;
  line-height: 1.6;
}

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

.floating-note {
  position: relative;
  padding: 15px 17px;
  border-radius: 18px;
  max-width: none;
  min-width: 0;
  background: rgba(11, 23, 40, 0.88);
}

.floating-note strong {
  display: block;
  font-size: 1rem;
}

.floating-note span {
  display: block;
  margin-top: 6px;
  color: #dce6f4;
  line-height: 1.6;
}

.trust-strip,
.comparison-panel,
.final-cta {
  display: grid;
  gap: 16px;
}

.trust-strip {
  grid-template-columns: repeat(3, 1fr);
  padding: 22px;
  border-radius: 26px;
}

.trust-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 900px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading h2,
.final-cta h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.value-grid,
.modules-grid,
.pricing-grid,
.desktop-grid,
.security-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.value-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.value-card,
.module-card,
.security-grid article {
  padding: 24px;
  border-radius: 24px;
}

.value-card h3,
.module-card h3,
.download-card h3,
.comparison-heading h3,
.security-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.modules-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.module-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(145, 247, 210, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.module-card h3 {
  margin-top: 18px;
}

.pricing-section {
  padding: 8px 0;
}

.billing-toggle {
  margin: 28px 0 18px;
  width: fit-content;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
}

.pricing-card.highlighted {
  background: linear-gradient(180deg, rgba(145, 247, 210, 0.12), rgba(13, 28, 48, 0.92));
  transform: translateY(-8px);
}

.highlight-badge {
  position: absolute;
  top: -14px;
  left: 24px;
}

.pricing-header p {
  color: var(--muted);
  line-height: 1.6;
}

.price {
  margin: 24px 0;
}

.price strong {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
}

.feature-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 0 0 0 28px;
  margin-top: 14px;
  color: var(--text);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(145, 247, 210, 0.12);
}

.comparison-panel {
  margin-top: 20px;
  padding: 24px;
  border-radius: 26px;
}

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

.comparison-grid div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.comparison-grid strong,
.desktop-details strong {
  display: block;
  margin-bottom: 8px;
}

.desktop-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.desktop-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.download-card,
.desktop-details {
  padding: 24px;
  border-radius: 24px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-card small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.download-card p {
  margin: 0;
  flex: 1 1 auto;
  color: #dce6f4;
}

.download-card a {
  margin-top: auto;
}

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

.desktop-details > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.desktop-details p {
  margin: 0;
  color: #dce6f4;
  line-height: 1.65;
}

.security-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.faq-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  grid-template-columns: 1.2fr auto;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
}

@media (max-width: 1120px) {
  .topbar {
    border-radius: 28px;
  }

  .hero,
  .value-grid,
  .pricing-grid,
  .desktop-grid,
  .desktop-details,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid,
  .trust-strip,
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

@media (max-width: 820px) {
  .page-shell {
    padding: 16px 16px 64px;
  }

  .status-banner {
    padding: 15px 16px;
    border-radius: 20px;
  }

  .topbar,
  .nav-actions,
  .hero-actions,
  .hero-metrics,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: static;
    padding: 18px;
    border-radius: 24px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    padding-top: 20px;
  }

  .hero-visual {
    min-height: auto;
  }

  .main-panel {
    position: relative;
    inset: auto;
    padding: 14px;
    border-radius: 26px;
  }

  .floating-note {
    margin-top: 0;
  }

  .panel-grid,
  .hero-notes,
  .modules-grid,
  .trust-strip,
  .comparison-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .price strong {
    font-size: 2.4rem;
  }

  .panel-grid {
    min-height: auto;
    gap: 12px;
  }

  .panel-side,
  .panel-main,
  .value-card,
  .module-card,
  .pricing-card,
  .download-card,
  .desktop-details,
  .security-grid article,
  .faq-list details,
  .final-cta,
  .comparison-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .status-card {
    padding: 18px;
  }

  .status-card strong {
    font-size: 1.28rem;
  }

  .workflow-list div {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }

  .workflow-list span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .hero-actions a,
  .nav-actions a,
  .cta-actions a {
    width: 100%;
  }

  .pricing-card.highlighted {
    transform: none;
  }
}

@media (max-width: 560px) {
  body::before {
    background-size: 44px 44px;
  }

  .page-shell {
    padding: 12px 12px 48px;
  }

  .status-banner {
    gap: 6px;
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .status-banner strong {
    font-size: 0.98rem;
  }

  .status-banner span:last-child {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .topbar {
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

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

  .nav a,
  .primary-button,
  .secondary-button,
  .ghost-button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.95rem;
  }

  .hero {
    gap: 18px;
    margin-top: 18px;
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  .hero-text,
  .section-heading p,
  .module-card p,
  .value-card p,
  .download-card p,
  .desktop-details p,
  .security-grid p,
  .faq-list p,
  .final-cta p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .eyebrow-row {
    flex-wrap: wrap;
  }

  .eyebrow-pill,
  .section-label,
  .plan-tag,
  .highlight-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics article {
    padding: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .window-bar {
    margin-bottom: 12px;
  }

  .panel-side strong,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .hero-notes {
    gap: 10px;
  }

  .panel-side > span,
  .status-card small {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .status-card strong {
    font-size: 1.14rem;
  }

  .panel-badge-row {
    gap: 8px;
  }

  .panel-badge-row span {
    width: 100%;
    justify-content: center;
    min-height: 32px;
    font-size: 0.78rem;
  }

  .download-card,
  .desktop-details {
    gap: 12px;
  }

  .status-row {
    gap: 10px;
  }

  .workflow-list {
    gap: 10px;
  }

  .workflow-list div {
    gap: 10px;
    align-items: center;
  }

  .workflow-list p {
    font-size: 0.95rem;
  }

  .trust-strip,
  .value-section,
  .modules-section,
  .pricing-section,
  .desktop-section,
  .security-section,
  .faq-section,
  .final-cta {
    margin-top: 20px;
  }

  .comparison-grid div,
  .desktop-details > div {
    padding: 14px;
  }

  .price strong {
    font-size: 2rem;
  }

  .highlight-badge {
    position: static;
    margin-bottom: 12px;
  }

  .final-cta {
    gap: 18px;
  }
}
