:root {
  --black: #080808;
  --graphite: #171717;
  --graphite-2: #222222;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --white: #f5f5f5;
  --muted: #b7b7b7;
  --dim: #7c7c7c;
  --line: rgba(245, 245, 245, 0.13);
  --line-gold: rgba(201, 162, 39, 0.42);
  --success: #9fbd73;
  --danger: #d98268;
  --radius: 10px;
  --max: 1180px;
  --header: 76px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  background: rgba(8, 8, 8, 0.86);
  padding: 14px clamp(16px, 4vw, 40px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 0.9;
}

.brand strong {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a,
.header-link,
.btn {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  padding: 10px 18px;
  font-weight: 900;
}

.header-link:hover,
.btn:hover,
.mobile-sticky a:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 56px) 0 74px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 20%, rgba(201, 162, 39, 0.13), transparent 31rem),
    linear-gradient(120deg, #080808 0%, #080808 52%, #111 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.hero__copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.45rem, 8vw, 6.9rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.7vw, 4.7rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 900;
}

.hero__lead {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.65vw, 1.38rem);
  font-weight: 600;
}

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

.hero__note {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  text-align: center;
}

.btn--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #080808;
}

.btn--primary:hover {
  background: #d8b645;
}

.btn--ghost,
.btn--secondary {
  border-color: var(--line-gold);
  background: transparent;
  color: var(--white);
}

.hero__visual {
  position: relative;
  min-height: 610px;
}

.hero__visual img {
  width: 100%;
  height: min(76svh, 680px);
  min-height: 520px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.06);
}

.hero-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  width: min(330px, calc(100% - 28px));
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.9);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hero-card span,
.package-badge {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 14px 0 8px;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-card p,
.section-heading p,
.problem p,
.price-card p,
.commitment,
.deliverables-list p,
.steps p,
.faq p,
.contact p,
.final-panel p,
.site-footer p,
.site-footer span,
.legal-page p,
.auth-card p,
.checkout-summary p {
  color: var(--muted);
}

.section {
  padding: clamp(68px, 8.5vw, 118px) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header) + 20px);
}

.intro-strip {
  padding: 20px 0;
  background: var(--graphite);
}

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

.strip-grid span {
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.section-heading,
.narrow {
  max-width: 860px;
}

.split,
.contact-grid,
.trust-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.point-grid,
.deliverables-list,
.steps,
.trust-list {
  display: grid;
  gap: 14px;
}

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

.point-grid article,
.deliverables-list article,
.steps article,
.price-card,
.form,
.final-panel,
.auth-card,
.checkout-summary,
.cart-item,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
}

.point-grid article {
  padding: 22px;
  font-weight: 800;
}

.problem {
  background: #0d0d0d;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.price-card--featured {
  border-color: var(--line-gold);
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.1), rgba(23, 23, 23, 1)),
    var(--graphite);
}

.price-card h3 {
  margin-top: 22px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.price {
  margin: 22px 0 8px;
}

.price strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.price span {
  color: var(--gold);
  font-weight: 900;
}

.commitment {
  min-height: 44px;
}

.price-card ul,
.trust-list {
  padding: 0;
  margin: 12px 0 26px;
  list-style: none;
}

.price-card li,
.trust-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li::before,
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
}

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

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

td:not(:first-child) {
  color: var(--white);
  font-weight: 800;
}

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

.deliverables-list article,
.steps article {
  padding: 22px;
}

.trust {
  background: #0d0d0d;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.media-grid img {
  width: 100%;
  height: 310px;
  border-radius: var(--radius);
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}

.media-grid img:first-child {
  grid-row: span 2;
  height: 634px;
}

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

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
}

summary {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.07), transparent 38%),
    var(--black);
}

.form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

.form label:not(.checkbox) {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 8px;
  background: #101010;
  color: var(--white);
  padding: 12px 13px;
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--gold);
  outline: none;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-weight: 900;
}

.form-status.is-error {
  color: var(--danger);
}

.final-cta {
  background: var(--graphite);
}

.final-panel {
  max-width: 920px;
  padding: clamp(26px, 5vw, 46px);
}

.site-footer {
  padding: 52px 0 94px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 30px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
}

.mobile-sticky a {
  flex: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
  text-align: center;
}

.mobile-sticky a:first-child {
  background: var(--gold);
  color: var(--black);
}

.page-hero {
  padding: calc(var(--header) + 70px) 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.12), transparent 30rem),
    var(--black);
}

.page-hero__inner {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal-page,
.plain-page {
  min-height: 100svh;
  padding: calc(var(--header) + 64px) 0 90px;
  background: var(--black);
}

.legal-page__inner,
.plain-page__inner {
  max-width: 900px;
}

.legal-card,
.auth-card,
.checkout-summary,
.cart-item {
  padding: clamp(22px, 4vw, 34px);
}

.legal-page h1,
.plain-page h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

.legal-page h2,
.plain-page h2 {
  margin-top: 36px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-page a:not(.btn),
.plain-page a:not(.btn) {
  color: var(--gold);
  border-bottom: 1px solid var(--line-gold);
}

.checkout-grid {
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header) + 20px);
}

.checkout-summary .price {
  margin-bottom: 18px;
}

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

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1020px) {
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 44px) 0 62px;
  }

  .hero__grid,
  .split,
  .contact-grid,
  .trust-grid,
  .checkout-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 0;
  }

  .hero__visual img {
    height: 560px;
    min-height: 0;
  }

  .hero-card {
    left: 14px;
    bottom: 14px;
  }

  .strip-grid,
  .point-grid,
  .deliverables-list {
    grid-template-columns: 1fr;
  }

  .strip-grid span {
    text-align: left;
  }

  .media-grid img,
  .media-grid img:first-child {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand span {
    font-size: 1.85rem;
  }

  .brand strong {
    max-width: 126px;
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.05;
  }

  .header-link {
    min-height: 42px;
    padding-inline: 13px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .hero__actions .btn,
  .final-panel .btn,
  .contact .btn {
    width: 100%;
  }

  .hero__visual img {
    height: 500px;
  }

  .section {
    padding: 66px 0;
  }

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

  .mobile-sticky {
    display: flex;
  }

  .site-footer {
    padding-bottom: 126px;
  }

  .cart-item {
    align-items: stretch;
    flex-direction: column;
  }
}

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