:root {
  --bg: #ffffff;
  --ink: #12213d;
  --muted: #5d6a80;
  --line: #dbe3f0;
  --soft: #f4f7fb;
  --blue: #2563ff;
  --blue-dark: #1846ad;
  --shadow: 0 24px 70px rgba(18, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 240, 0.7);
  backdrop-filter: blur(16px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
}

nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  min-height: 620px;
  padding: 66px 0 46px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

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

h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 34px rgba(37, 99, 255, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.panel-row:last-child {
  border-bottom: 0;
}

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

.section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.launch-status {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.status-copy {
  min-width: 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.status-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.status-card {
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.status-card.live {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.status-card span {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-card p {
  margin-top: 14px;
  color: var(--muted);
}

.status-card .button {
  margin-top: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.section-heading p,
.split > div p,
.disclaimer p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

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

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.offer-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.preview-card {
  min-height: 240px;
}

.feature-label {
  align-self: start;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #eaf0ff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 25px;
  line-height: 1.1;
}

.price {
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  margin-top: 8px !important;
  color: var(--blue-dark) !important;
  font-size: 15px;
  font-weight: 900;
}

.offer-card > p:not(.price) {
  margin-top: 16px;
  color: var(--muted);
}

ul,
ol {
  margin: 20px 0 0;
  padding-left: 22px;
}

li {
  margin: 8px 0;
}

.offer-card .button {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 44px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

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

.license-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.license-card p:not(.price) {
  margin-top: 16px;
  color: var(--muted);
}

.featured-license {
  border-color: var(--blue);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.license-card .button {
  margin-top: 18px;
}

.disclaimer {
  padding-bottom: 0;
}

.guide {
  max-width: 820px;
  padding: 64px 0 20px;
}

.guide .eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guide h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.guide-lede {
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
}

.guide section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.guide h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.guide section p,
.guide-list {
  color: var(--muted);
  font-size: 18px;
}

.copy-box {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.guide-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.guide-cta h2,
.guide-cta p {
  flex-basis: 100%;
}

.guide-note p {
  font-size: 16px;
}

.product-page {
  max-width: 920px;
}

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

.price-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.price-panel span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 48px;
  line-height: 1;
}

.price-panel p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .launch-status,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

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

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

  .product-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 13px;
  }

  main,
  .site-header {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-copy,
  .section-heading,
  .section-heading > *,
  .split > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .offer-grid,
  .timeline,
  .license-grid,
  .status-grid {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    min-width: 0;
    overflow: hidden;
  }

  .offer-card,
  .status-card,
  .status-copy {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    min-width: 0;
    padding: 22px;
  }

  .hero,
  .section,
  .hero-panel,
  .launch-status {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
  }

  h1,
  h2,
  h3,
  p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 32px;
    line-height: 1.02;
    width: 100% !important;
    max-width: 100%;
    word-break: break-word;
  }

  .hero p {
    font-size: 17px;
    width: 100% !important;
    max-width: 100%;
  }

  .section-heading h2,
  .section-heading p {
    width: 100% !important;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .section-heading p,
  .offer-card > p:not(.price) {
    font-size: 16px;
  }

  .status-copy h2,
  .status-card h3 {
    font-size: 27px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .status-copy p,
  .status-card p {
    font-size: 16px;
    max-width: 260px;
    overflow-wrap: break-word;
  }

  .hero-panel {
    padding: 16px;
  }

  .panel-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
