:root {
  --bg: #020713;
  --bg-soft: #061020;
  --panel: rgba(5, 18, 40, 0.82);
  --panel-strong: #07142a;
  --gold: #e7bc49;
  --gold-light: #ffe79b;
  --gold-dark: #8f5d0c;
  --text: #f4f1e8;
  --muted: #9b978e;
  --line: rgba(231, 188, 73, 0.18);
  --line-soft: rgba(122, 174, 255, 0.12);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 10%, rgba(34, 105, 255, .18), transparent 32%),
    radial-gradient(circle at 15% 68%, rgba(14, 58, 130, .20), transparent 34%),
    linear-gradient(180deg, #020713 0%, #02050c 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(2, 7, 19, .84);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .22em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c8c4bb;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  transition: color .2s ease;
}

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

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(45, 116, 255, .07);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 10px;
  transition: .25s ease;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-narrow {
  width: min(1060px, calc(100% - 48px));
}

.hero {
  min-height: 100vh;
  padding-top: 145px;
  padding-bottom: 95px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 70px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: 4%;
  top: 14%;
  background: rgba(201, 139, 27, .10);
}

.orb-two {
  width: 220px;
  height: 220px;
  left: -12%;
  bottom: 8%;
  background: rgba(120, 82, 16, .10);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.055em;
}

h1 em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 800;
  text-shadow: 0 0 45px rgba(231, 188, 73, .15);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: #130e04;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, #b87911);
  box-shadow: 0 14px 35px rgba(187, 124, 17, .20);
}

.button-primary:hover {
  box-shadow: 0 18px 45px rgba(187, 124, 17, .32);
}

.button-secondary {
  color: #e8eefb;
  border: 1px solid rgba(75, 139, 255, .30);
  background: rgba(255, 255, 255, .025);
}

.button-secondary:hover {
  border-color: rgba(90, 154, 255, .65);
  background: rgba(45, 116, 255, .07);
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 44px;
}

.hero-meta div {
  display: grid;
  gap: 2px;
}

.hero-meta strong {
  color: var(--gold-light);
  font-size: 17px;
}

.hero-meta span {
  color: #77736c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.terminal-card {
  position: relative;
  border: 1px solid rgba(231, 188, 73, .24);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(8, 25, 55, .96), rgba(2, 7, 19, .99));
  box-shadow: var(--shadow), 0 0 90px rgba(152, 96, 9, .08);
  transform: perspective(1300px) rotateY(-7deg) rotateX(2deg);
}

.terminal-top,
.terminal-bottom {
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-color: var(--line-soft);
  background: rgba(255, 255, 255, .02);
}

.terminal-top {
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  color: #8e8a81;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.terminal-top b {
  color: #7fcf9b;
  font-size: 9px;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c3a35;
}

.chart-area {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.chart-area svg {
  position: absolute;
  inset: 48px 0 0;
  width: 100%;
  height: calc(100% - 48px);
  overflow: visible;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: chartDraw 2.5s .35s cubic-bezier(.25, .8, .25, 1) forwards;
  filter: drop-shadow(0 0 10px rgba(231, 188, 73, .25));
}

.chart-fill {
  opacity: 0;
  animation: fadeIn 1.3s 1.6s ease forwards;
}

@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.signal-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 16px 18px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(231, 188, 73, .23);
  border-radius: 14px;
  background: rgba(8, 8, 8, .82);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
}

.signal-card small {
  color: #77736b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}

.signal-card strong {
  color: var(--gold-light);
  font-size: 14px;
}

.signal-card span {
  color: #8a867d;
  font-size: 9px;
}

.terminal-bottom {
  justify-content: space-around;
  border-top: 1px solid var(--line-soft);
}

.terminal-bottom div {
  display: grid;
  text-align: center;
}

.terminal-bottom span {
  color: #6e6a63;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.terminal-bottom strong {
  color: #d8d3c8;
  font-size: 12px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .015);
}

.ticker-track {
  width: max-content;
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: ticker 28s linear infinite;
  color: #817c73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 700px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card,
.requirement-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(8, 28, 61, .84), rgba(3, 9, 21, .94));
}

.feature-card {
  min-height: 280px;
  padding: 34px;
  border-radius: 20px;
}

.feature-card::after,
.requirement-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 188, 73, .09), transparent 68%);
}

.feature-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.feature-card,
.requirement-card {
  transition: transform .25s ease, border-color .25s ease;
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #3e3b35;
  font-size: 13px;
  font-weight: 800;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(231, 188, 73, .045);
  font-size: 22px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.protection {
  width: min(1240px, calc(100% - 32px));
}

.protection-panel {
  min-height: 590px;
  padding: 72px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 30%, rgba(191, 126, 18, .12), transparent 31%),
    linear-gradient(140deg, #081a38, #030813 64%);
  box-shadow: var(--shadow);
}

.protection-panel .section-heading {
  margin-bottom: 0;
}

.protection-list {
  display: grid;
  gap: 14px;
}

.protection-list > div {
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, .018);
}

.check {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #171006;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  font-size: 13px;
  font-weight: 900;
}

.protection-list p {
  margin: 0;
}

.protection-list strong,
.protection-list small {
  display: block;
}

.protection-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

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

.requirement-card {
  min-height: 225px;
  padding: 28px;
  border-radius: 18px;
}

.requirement-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.requirement-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.requirement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.workflow {
  width: min(1180px, calc(100% - 48px));
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.workflow-step {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.workflow-step b {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: #061020;
  box-shadow: 0 0 30px rgba(167, 106, 12, .08);
}

.workflow-step h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.workflow-step p {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, .018);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--gold);
  font-size: 23px;
  font-weight: 300;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 23px;
  color: var(--muted);
  font-size: 14px;
}

.access-section {
  width: min(1180px, calc(100% - 32px));
  padding-top: 80px;
}

.access-card {
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(231, 188, 73, .23);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 25%, rgba(231, 188, 73, .12), transparent 30%),
    linear-gradient(135deg, #0b2148, #030813 64%);
  box-shadow: var(--shadow);
}

.access-card > div:first-child {
  max-width: 660px;
}

.access-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.access-card p:not(.eyebrow) {
  color: var(--muted);
}

.access-actions {
  min-width: 230px;
  flex-direction: column;
}

.disclaimer {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 80px;
}

.disclaimer p {
  margin: 0;
  color: #77736b;
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
}

.disclaimer strong {
  color: #a8a398;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 170px;
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  color: var(--gold);
}

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

.footer-copy p {
  margin-bottom: 3px;
  color: #aaa59c;
  font-size: 13px;
}

.footer-copy small {
  color: #5f5b54;
  font-size: 11px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #77736c;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 82px 0 0;
    padding: 34px 28px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: rgba(2, 7, 19, .98);
    backdrop-filter: blur(18px);
  }

  .nav.open {
    display: flex;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero-visual {
    max-width: 760px;
  }

  .terminal-card {
    transform: none;
  }

  .protection-panel {
    padding: 58px 42px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

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

  .workflow-grid::before {
    display: none;
  }

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

  .access-actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }

  .brand {
    font-size: 15px;
  }

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

  .nav {
    inset: 72px 0 0;
  }

  .section,
  .section-narrow,
  .workflow {
    width: min(100% - 34px, var(--max));
    padding: 88px 0;
  }

  .hero {
    width: min(100% - 34px, var(--max));
    padding-top: 122px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(43px, 14vw, 62px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions,
  .access-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    gap: 22px;
    justify-content: space-between;
  }

  .hero-meta strong {
    font-size: 14px;
  }

  .hero-meta span {
    font-size: 8px;
  }

  .chart-area {
    height: 290px;
  }

  .terminal-bottom {
    padding: 0 8px;
  }

  .terminal-bottom span {
    font-size: 7px;
  }

  .terminal-bottom strong {
    font-size: 10px;
  }

  .signal-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

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

  .feature-card {
    min-height: 250px;
    padding: 28px;
  }

  .protection {
    width: min(100% - 20px, 1240px);
  }

  .protection-panel {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .requirement-card {
    min-height: 190px;
  }

  .workflow-grid {
    gap: 22px;
  }

  .workflow-step {
    padding: 0;
  }

  .access-section {
    width: min(100% - 20px, 1180px);
  }

  .access-card {
    padding: 42px 22px;
    border-radius: 23px;
  }

  .disclaimer {
    width: min(100% - 34px, 920px);
  }

  .site-footer {
    width: min(100% - 34px, var(--max));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}


/* GET SAUREX ACCESS OPTIONS */
.get-saurex-section {
  scroll-margin-top: 90px;
}

.access-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.access-option {
  position: relative;
  padding: 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(91, 150, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 117, 255, .10), transparent 28%),
    linear-gradient(145deg, rgba(8, 27, 58, .90), rgba(3, 9, 21, .96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.access-option-featured {
  border-color: rgba(231, 188, 73, .52);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .34),
    0 0 55px rgba(190, 127, 19, .08);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 8px 15px;
  border-radius: 0 0 12px 12px;
  color: #181004;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a6690d);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.option-label {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.access-option h3,
.comparison-heading h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.access-option > p:not(.option-label):not(.option-note) {
  color: var(--muted);
  font-size: 14px;
}

.option-lead strong {
  color: #f4f1e8;
  font-size: 16px;
}

.option-block {
  margin-top: 18px;
}

.option-block h4 {
  margin: 0 0 11px;
  color: #e8e3d8;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.included-list,
.requirement-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.included-list li,
.requirement-list li {
  position: relative;
  padding-left: 25px;
  color: #aaa69d;
  font-size: 13px;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.requirement-list {
  counter-reset: eligibility;
}

.requirement-list li {
  counter-increment: eligibility;
}

.requirement-list li::before {
  content: counter(eligibility);
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 150, 255, .32);
  border-radius: 50%;
  color: #9cbfff;
  font-size: 8px;
  font-weight: 800;
}

.license-price {
  margin: 34px 0 22px;
  padding: 20px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(231, 188, 73, .18);
  border-radius: 16px;
  background: rgba(231, 188, 73, .035);
}

.license-price span {
  color: #7f7a70;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.license-price strong {
  color: var(--gold-light);
  font-size: 21px;
}

.option-button {
  width: 100%;
  margin-top: auto;
}

.access-option-featured .option-button {
  margin-top: 28px;
}

.option-note {
  margin: 13px 0 0;
  color: #6f7890;
  font-size: 10px;
  line-height: 1.65;
  text-align: center;
}

.comparison-wrap {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(91, 150, 255, .16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(7, 24, 53, .86), rgba(3, 9, 21, .94));
}

.comparison-heading {
  padding: 30px 34px 8px;
}

.comparison-heading h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 22px;
  border-top: 1px solid rgba(122, 174, 255, .10);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 42%;
  text-align: left;
}

.comparison-table thead th {
  color: #c7d8fb;
  background: rgba(42, 97, 198, .08);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table tbody td {
  color: #aaa69d;
}

.comparison-table tbody td:nth-child(2) {
  color: var(--gold-light);
  background: rgba(231, 188, 73, .025);
}

.comparison-table tbody td:nth-child(3) {
  color: #a9c5ff;
}

@media (max-width: 820px) {
  .access-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .access-option {
    padding: 32px 20px 24px;
    border-radius: 20px;
  }

  .popular-badge {
    right: 18px;
    font-size: 8px;
  }

  .access-option h3 {
    font-size: 24px;
  }

  .comparison-heading {
    padding: 25px 20px 5px;
  }
}


/* =========================================================
   FINAL SAUREX EA CONVERSION & MOBILE POLISH
   ========================================================= */

.access-trust-note {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(91, 150, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 34, 73, .78), rgba(3, 10, 23, .92));
  text-align: center;
}

.trust-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.trust-features span {
  position: relative;
  padding-left: 17px;
  color: #c8d8f6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}

.trust-features span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.access-trust-note p {
  max-width: 780px;
  margin: 13px auto 0;
  color: #77839a;
  font-size: 10px;
  line-height: 1.7;
}

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

.comparison-mobile {
  display: none;
}

.mobile-compare-card {
  position: relative;
  padding: 22px 18px;
  border: 1px solid rgba(91, 150, 255, .18);
  border-radius: 17px;
  background: rgba(3, 12, 28, .74);
}

.mobile-compare-card.featured {
  border-color: rgba(231, 188, 73, .38);
}

.mobile-compare-card h4 {
  margin: 0 0 17px;
  color: #f0ede5;
  font-size: 17px;
}

.mobile-compare-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.mobile-compare-card li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(122, 174, 255, .10);
  color: #8f9bb1;
  font-size: 11px;
}

.mobile-compare-card li:first-child {
  border-top: 0;
}

.mobile-compare-card li strong {
  color: var(--gold-light);
  font-size: 10px;
  text-align: right;
}

.mobile-compare-card:not(.featured) li strong {
  color: #a9c5ff;
}

.mobile-compare-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #171004;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-step {
    padding: 0;
  }
}

@media (max-width: 640px) {
  /* Remove the oversized double gap between Requirements and Get SAUREX EA */
  #requirements {
    padding-bottom: 28px;
  }

  #get-saurex {
    padding-top: 28px;
  }

  #get-saurex .section-heading {
    margin-bottom: 34px;
  }

  /* Use simple comparison cards instead of a horizontal-scroll table */
  .comparison-scroll {
    display: none;
  }

  .comparison-mobile {
    padding: 12px 16px 18px;
    display: grid;
    gap: 12px;
  }

  .comparison-heading {
    padding-bottom: 8px;
  }

  .access-trust-note {
    padding: 20px 16px;
  }

  .trust-features {
    display: grid;
    justify-content: start;
    gap: 10px;
    text-align: left;
  }

  .access-trust-note p {
    text-align: left;
  }
}
