:root {
  --pine-950: #031713;
  --pine-900: #06251e;
  --pine-800: #073729;
  --pine-700: #0a4d39;
  --pine-600: #11664d;
  --mint-100: #e8f7ef;
  --mint-200: #c8ecd8;
  --cream: #f8f4e8;
  --gold: #d8b765;
  --gold-soft: #f2dda2;
  --coral: #e86f4d;
  --ink: #101815;
  --muted: #62746c;
  --line: rgba(216, 183, 101, 0.24);
  --surface: #ffffff;
  --surface-soft: #f4f8f5;
  --shadow: 0 18px 48px rgba(3, 23, 19, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  background: var(--gold);
  color: var(--pine-950);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 23, 19, 0.92);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 183, 101, 0.48);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  flex: 0 0 48px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name small {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.site-nav a {
  color: rgba(248, 244, 232, 0.82);
  padding: 9px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(216, 183, 101, 0.14);
  color: var(--gold-soft);
}

.nav-cta {
  border: 1px solid rgba(216, 183, 101, 0.45);
}

.hero {
  position: relative;
  min-height: 76vh;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(3, 23, 19, 0.92), rgba(3, 23, 19, 0.68) 48%, rgba(3, 23, 19, 0.34)),
    linear-gradient(180deg, rgba(3, 23, 19, 0.1), rgba(3, 23, 19, 0.7)),
    url("../img/hero-sanca999-768.jpg") center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(3, 23, 19, 0.92), rgba(3, 23, 19, 0.68) 48%, rgba(3, 23, 19, 0.34)),
    linear-gradient(180deg, rgba(3, 23, 19, 0.1), rgba(3, 23, 19, 0.7)),
    image-set(
      url("../img/hero-sanca999-768.jpg") 1x,
      url("../img/hero-sanca999-1280.jpg") 2x
    ) center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-shell,
.section-shell,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 64px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(216, 183, 101, 0.42);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(3, 23, 19, 0.5);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  max-width: 920px;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 244, 232, 0.86);
  font-size: 19px;
}

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

.hero-access {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(216, 183, 101, 0.34);
  border-radius: 8px;
  background: rgba(3, 23, 19, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hero-access-title {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.hero-access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(248, 244, 232, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.hero-access-links a {
  color: var(--gold-soft);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--gold);
  color: var(--pine-950);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border-color: rgba(248, 244, 232, 0.25);
  box-shadow: none;
}

.button.register {
  background: var(--pine-600);
  color: var(--cream);
  border-color: rgba(248, 244, 232, 0.22);
}

.button.ghost {
  background: transparent;
  color: var(--pine-800);
  border-color: rgba(6, 55, 41, 0.22);
  box-shadow: none;
}

.trust-strip {
  background: var(--pine-950);
  color: var(--cream);
  border-top: 1px solid var(--line);
}

.trust-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 92px;
  padding: 18px 20px;
  background: var(--pine-950);
}

.trust-item strong {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: rgba(248, 244, 232, 0.76);
}

.section {
  padding: 74px 0;
}

.section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section.alt {
  background: var(--surface-soft);
}

.section.dark {
  background: var(--pine-900);
  color: var(--cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.section-kicker {
  color: var(--pine-600);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .section-kicker {
  color: var(--gold-soft);
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

.lede {
  font-size: 18px;
  color: var(--muted);
}

.dark .lede,
.dark p {
  color: rgba(248, 244, 232, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  border: 1px solid rgba(6, 55, 41, 0.12);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 8px 26px rgba(3, 23, 19, 0.06);
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  box-shadow: none;
}

.card p,
.feature p,
.step p {
  color: var(--muted);
}

.dark .card p {
  color: rgba(248, 244, 232, 0.76);
}

.card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pine-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .card-label {
  color: var(--gold-soft);
}

.domain-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
}

.domain-url {
  display: block;
  margin: 10px 0 18px;
  color: var(--pine-700);
  font-size: 24px;
  font-weight: 900;
  word-break: break-word;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(17, 102, 77, 0.1);
  color: var(--pine-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.gold {
  background: rgba(216, 183, 101, 0.16);
  color: #7b5f19;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 38px;
  align-items: start;
}

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

.feature {
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 16px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 20px 20px 20px 68px;
  border: 1px solid rgba(6, 55, 41, 0.12);
  border-radius: 8px;
  background: var(--surface);
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pine-700);
  color: var(--cream);
  font-weight: 900;
}

.notice {
  border-left: 4px solid var(--coral);
  background: #fff7f2;
  padding: 18px 20px;
  border-radius: 8px;
  color: #543326;
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(3, 23, 19, 0.96), rgba(3, 23, 19, 0.82)),
    url("../img/hero-sanca999-768.jpg") center / cover no-repeat;
  background:
    linear-gradient(90deg, rgba(3, 23, 19, 0.96), rgba(3, 23, 19, 0.82)),
    image-set(
      url("../img/hero-sanca999-768.jpg") 1x,
      url("../img/hero-sanca999-1280.jpg") 2x
    ) center / cover no-repeat;
  color: var(--cream);
  padding: 66px 0 58px;
}

.page-hero p {
  max-width: 790px;
  color: rgba(248, 244, 232, 0.82);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(248, 244, 232, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold-soft);
}

.prose {
  max-width: 880px;
}

.prose h2 {
  margin-top: 32px;
  font-size: 30px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 10px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(6, 55, 41, 0.12);
  border-radius: 8px;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(6, 55, 41, 0.1);
  text-align: left;
}

th {
  background: var(--pine-800);
  color: var(--cream);
}

tr:last-child td {
  border-bottom: 0;
}

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

.faq-item {
  border: 1px solid rgba(6, 55, 41, 0.12);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.faq-item h3 {
  font-size: 19px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  background: var(--pine-950);
  color: rgba(248, 244, 232, 0.78);
  padding: 44px 0 24px;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--cream);
  font-size: 18px;
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(248, 244, 232, 0.72);
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--pine-950);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .trust-grid,
  .grid.three,
  .grid.two,
  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-position: 60% center;
  }

  .hero-content {
    padding-top: 46px;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .hero-shell,
  .section-shell,
  .page-shell,
  .trust-grid,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-name small {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p,
  .lede {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .hero-actions,
  .actions,
  .hero-access-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-access {
    padding: 12px;
  }

  .step {
    padding-left: 20px;
    padding-top: 64px;
  }
}
