:root {
  --bg: #f5f7fc;
  --card: #ffffff;
  --text: #10203c;
  --muted: #64718b;
  --line: #dce4f2;
  --blue: #2563eb;
  --violet: #7c3aed;
  --green: #087a53;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(20, 42, 90, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 5%, #e6efff, transparent 22%),
    radial-gradient(circle at 95% 10%, #eee6ff, transparent 20%),
    var(--bg);
  font: 16px/1.65 Inter, system-ui, sans-serif;
}

body.dark {
  --bg: #07111f;
  --card: #101d32;
  --text: #f4f7ff;
  --muted: #aab7cd;
  --line: #263755;
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.3);
}

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

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

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: auto;
}

/* Accessibility */

.skip {
  position: absolute;
  top: 8px;
  left: -9999px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #111827;
  background: #ffffff;
  font-weight: 800;
}

.skip:focus {
  left: 8px;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(16px);
}

.top,
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand b {
  width: 33px;
  height: 33px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 10px 24px rgba(74, 83, 205, 0.32);
}

.tools {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tools > * {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--card);
  font: inherit;
  font-weight: 800;
}

.tools button {
  cursor: pointer;
}

#menu {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
}

nav a {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

nav a:hover {
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 8%, var(--card));
}

.navcta {
  margin-left: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.navcta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
}

/* Core components */

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--card);
  font-weight: 850;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.12);
}

.button.primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.button.primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
}

/* Homepage hero */

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 44px 0 20px;
}

.panel,
.section,
.card,
.timeline article,
.order aside,
.formbox {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
}

.panel::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18),
    transparent 68%
  );
  content: "";
  pointer-events: none;
}

.hero h1,
.intro h1 {
  max-width: 13ch;
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 5.7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.lead,
.intro p,
.section p,
.card p {
  max-width: 64ch;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tagline {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  color: var(--blue);
}

.visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #10203c;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 19, 42, 0.08),
    rgba(9, 19, 42, 0.55)
  );
  content: "";
}

.visual div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(8, 19, 38, 0.84);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.visual span {
  display: block;
  margin-top: 8px;
  color: #bbcffc;
}

/* Feature sections */

.section {
  margin: 18px auto;
  padding: clamp(24px, 4vw, 42px);
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.section h2,
.card h2,
.price h2,
.timeline h2,
.order h2 {
  margin-top: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.features {
  display: grid;
  gap: 10px;
}

.features div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 2px 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--blue) 7%, var(--card));
}

.features i {
  grid-row: span 2;
  color: var(--blue);
  font-size: 1.3rem;
}

.features span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA sections */

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px auto 42px;
  padding: 32px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(96, 165, 250, 0.42),
      transparent 28%
    ),
    linear-gradient(135deg, #11295e, #3d1677);
  box-shadow: var(--shadow);
}

.cta .eyebrow {
  color: #c7ddff;
}

.cta h2 {
  max-width: 22ch;
  margin: 0;
  line-height: 1.05;
}

/* Standard content pages */

.intro {
  padding: 52px 0 24px;
}

.center {
  text-align: center;
}

.center h1,
.center p {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-bottom: 18px;
}

.card {
  padding: 22px;
}

.card i {
  color: var(--blue);
  font-size: 1.3rem;
}

.card h2 {
  margin-top: 16px;
  font-size: 1.18rem;
}

/* Pricing */

.price {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.price > div {
  padding: 38px;
}

.price > div:first-child {
  color: #ffffff;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(96, 165, 250, 0.4),
      transparent 28%
    ),
    linear-gradient(145deg, #193a84, #592091);
}

.price > div:first-child .button {
  border-color: transparent;
  color: #172a58;
  background: #ffffff;
}

.price > div:first-child .button:hover {
  color: #172a58;
  background: #eef4ff;
}

.price strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.price span {
  display: block;
  margin: 14px 0 20px;
}

.price ul {
  padding-left: 22px;
}

.price li {
  margin: 11px 0;
}

.price li::marker {
  color: var(--green);
}

.trust {
  margin-bottom: 42px;
}

/* Launch timeline */

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.timeline article {
  padding: 28px;
}

.timeline article > b {
  color: var(--blue);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.timeline p {
  color: var(--muted);
}

/* Order page */

.order {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 16px;
  margin-bottom: 42px;
}

.order aside,
.formbox {
  padding: 28px;
}

.order aside ol {
  padding-left: 20px;
}

.order aside li {
  margin: 12px 0;
}

.order aside > a {
  color: var(--blue);
  font-weight: 800;
}

.formbox form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.formbox label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.formbox input,
.formbox select,
.formbox textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--text);
  background: var(--card);
}

.formbox input:focus,
.formbox select:focus,
.formbox textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.formbox textarea {
  min-height: 120px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--blue) 5%, var(--card));
  font-weight: 500 !important;
}

.consent input {
  width: 17px;
  margin-top: 4px;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.success {
  padding: 12px 14px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  color: var(--green);
  background: rgba(16, 185, 129, 0.12);
}

/* Footer */

footer {
  border-top: 1px solid var(--line);
}

.foot p,
.copy {
  margin: 0;
  color: var(--muted);
}

.foot a {
  color: var(--blue);
  font-weight: 750;
}

.copy {
  padding: 18px 0;
  border-top: 1px solid var(--line);
   text-align: center;
  font-size: 0.86rem;
}

/* Responsive */

@media (max-width: 800px) {
  .hero,
  .two,
  .price,
  .order {
    grid-template-columns: 1fr;
  }

  .grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .visual {
    min-height: 320px;
  }

  #menu {
    display: inline-block;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    text-align: center;
  }

  .navcta {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 20px, 1160px);
  }

  .grid,
  .timeline,
  .formbox form {
    grid-template-columns: 1fr;
  }

  .top {
    min-height: 62px;
  }

  .brand {
    font-size: 0.72rem;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel,
  .section,
  .order aside,
  .formbox {
    padding: 23px;
  }

  .hero {
    padding-top: 20px;
  }
}

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

/* Force the v26 copyright line to the exact center */
footer .copy {
  display: flex !important;
  width: 100% !important;
  margin: 0 auto !important;
  justify-content: center !important;
  text-align: center !important;
}

/* selected theme */

.selected-theme-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--blue);
    background: var(--surface2);
    font-size: 0.9rem;
}

.formbox small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}


