:root {
  --ink: #15120f;
  --muted: #625b52;
  --ivory: #f8f2e6;
  --paper: #fffaf0;
  --purple: #3d145f;
  --purple-deep: #170920;
  --gold: #c9962e;
  --gold-light: #f1d27a;
  --green: #1f6f4a;
  --green-deep: #0d2f25;
  --danger: #8c1d18;
  --line: rgba(21, 18, 15, 0.14);
  --shadow: 0 22px 70px rgba(18, 9, 28, 0.18);
  --shadow-soft: 0 14px 44px rgba(18, 9, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(19, 8, 27, 0.82);
  border-bottom: 1px solid rgba(241, 210, 122, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 72px;
  height: 46px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(241, 210, 122, 0.34);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.brand strong,
h1,
h2 {
  font-family: Cinzel, Georgia, serif;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 132px clamp(18px, 6vw, 76px) 70px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-falcon.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 7, 26, 0.96) 0%, rgba(32, 13, 47, 0.78) 42%, rgba(32, 13, 47, 0.25) 100%),
    linear-gradient(0deg, rgba(18, 7, 26, 0.74), rgba(18, 7, 26, 0.12));
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.hero-logo {
  width: min(310px, 72vw);
  height: 124px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 28px;
  border: 1px solid rgba(241, 210, 122, 0.42);
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

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

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 22px;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(241, 210, 122, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.form-section .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--purple-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button.secondary {
  color: #fff;
  border-color: rgba(241, 210, 122, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--purple-deep);
  border-color: rgba(61, 20, 95, 0.22);
  background: #fff;
}

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

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
}

.metrics-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics-band strong {
  display: block;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 34px;
}

.metrics-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.section,
.reviews {
  scroll-margin-top: 92px;
  padding: clamp(72px, 8vw, 112px) clamp(18px, 6vw, 76px);
}

.split,
.form-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
}

.section-copy {
  color: var(--muted);
  font-size: 17px;
}

.assurance-box,
.request-note {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.assurance-box span,
.request-note span {
  color: var(--muted);
  line-height: 1.65;
}

.service-section {
  color: #fff;
  background: var(--purple-deep);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 36px;
}

.pricing-grid,
.team-grid,
.review-grid,
.method-grid,
.process-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card,
.team-member,
.review-grid figure,
.method-grid div,
.process-rail article,
.contact-panel,
.request-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card {
  padding: 32px;
  color: var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(18, 9, 28, 0.24);
}

.price-card.featured {
  border-color: rgba(241, 210, 122, 0.6);
  background: linear-gradient(145deg, #fffaf0, #f6e8bf);
}

.card-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 8px;
  color: var(--purple);
  font-family: Cinzel, Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

ul {
  padding-left: 19px;
  color: var(--muted);
}

li {
  margin: 10px 0;
}

.method-section {
  background: var(--ivory);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(248, 242, 230, 0.96)),
    radial-gradient(circle at top right, rgba(201, 150, 46, 0.2), transparent 34%);
}

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

.process-rail article {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
}

.process-rail article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--green));
}

.process-rail span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
}

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

.report-preview {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
  margin-bottom: 26px;
}

.score-panel,
.report-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.score-panel {
  display: grid;
  align-content: center;
  min-height: 310px;
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(61, 20, 95, 0.9), rgba(13, 47, 37, 0.94)),
    url("assets/always-win-logo.png") center / cover;
  background-blend-mode: multiply;
}

.score-label,
.score-out-of {
  color: var(--gold-light);
  font-weight: 800;
}

.score-panel strong {
  margin-top: 8px;
  color: #fff;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(70px, 10vw, 112px);
  line-height: 0.9;
}

.score-panel p {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.82);
}

.report-table {
  overflow: hidden;
}

.report-table div {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.4fr;
}

.report-table div:first-child {
  color: #fff;
  background: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-table span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.report-table div:last-child span {
  border-bottom: 0;
}

.positive,
.watch {
  font-weight: 900;
}

.positive {
  color: var(--green);
}

.watch {
  color: var(--gold);
}

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

.method-grid div {
  min-height: 230px;
  padding: 26px;
}

.method-grid span {
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.method-grid strong {
  display: block;
  margin-top: 24px;
  font-size: 18px;
}

.method-grid p,
.team-member p,
.review-grid blockquote,
.contact-panel p {
  color: var(--muted);
}

.team-section {
  background: #fff;
}

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

.team-member {
  padding: 28px;
}

.avatar {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--green));
  border: 3px solid var(--gold-light);
  border-radius: 50%;
  font-family: Cinzel, Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.reviews {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 111, 74, 0.96), rgba(13, 47, 37, 0.98)),
    url("assets/always-win-logo.png") center / cover;
  background-blend-mode: multiply;
}

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

.review-grid figure {
  margin: 0;
  padding: 26px;
}

.launch-grid article {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.launch-grid strong {
  display: block;
  color: var(--purple);
  font-size: 18px;
}

.launch-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-grid blockquote {
  margin: 0;
  font-size: 18px;
}

.review-grid figcaption {
  margin-top: 22px;
  color: var(--purple);
  font-weight: 800;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  color: var(--purple);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.form-section {
  background: linear-gradient(180deg, #fffaf0, #f4ead8);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 18, 15, 0.2);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(140, 29, 24, 0.14);
}

textarea {
  resize: vertical;
}

.form-status {
  align-self: center;
  margin: 28px 0 0;
  color: var(--green);
  font-weight: 800;
}

.contact-section {
  color: #fff;
  background: var(--purple);
}

.contact-panel {
  padding: 30px;
}

.site-footer {
  padding: 30px clamp(18px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--purple-deep);
}

.site-footer p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-nav a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

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

.risk-note {
  margin-top: 8px !important;
  font-size: 13px;
}

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

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

@media (max-width: 900px) {
  .section,
  .reviews {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(19, 8, 27, 0.96);
    border: 1px solid rgba(241, 210, 122, 0.28);
  }

  .site-nav.open {
    display: flex;
  }

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

  .metrics-band,
  .split,
  .form-section,
  .contact-section,
  .pricing-grid,
  .team-grid,
  .review-grid,
  .method-grid,
  .process-rail,
  .report-preview {
    grid-template-columns: 1fr;
  }

  .metrics-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 7, 26, 0.96), rgba(18, 7, 26, 0.6));
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 78px;
  }

  .section,
  .reviews {
    scroll-margin-top: 78px;
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand-logo {
    width: 54px;
    height: 38px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-logo {
    height: 92px;
    margin-bottom: 22px;
  }

  .hero-points span {
    width: 100%;
    text-align: center;
  }

  .report-table {
    overflow-x: auto;
  }

  .report-table div {
    min-width: 620px;
  }

  .hero-actions,
  .hero-actions .button,
  .request-form .button {
    width: 100%;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .form-status {
    margin-top: 0;
  }
}
