:root {
  --black: #1a0b2e;
  --ink: #0a0a0a;
  --soft-black: #12071f;
  --white: #f5f5f5;
  --muted: #c6c0b8;
  --light: #f5f5f5;
  --line: rgba(224, 184, 77, 0.26);
  --gold: #e0b84d;
  --violet: #b026ff;
  --cyan: #00e5c9;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(26, 11, 46, 0.92);
  border-bottom: 1px solid rgba(224, 184, 77, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand img {
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(224, 184, 77, 0.32));
}

.brand .brand-symbol {
  width: auto;
  height: 50px;
}

.brand .brand-wordmark {
  width: 145px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-nav a:not(.nav-cta) {
  color: rgba(245, 245, 245, 0.82);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  color: #130f06;
  background: linear-gradient(135deg, #f7d77a, var(--gold));
  box-shadow: 0 0 20px rgba(224, 184, 77, 0.24);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(245, 245, 245, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(176, 38, 255, 0.42), 0 0 18px rgba(0, 229, 201, 0.22);
}

.nav-toggle {
  display: none;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark,
.section-light {
  padding: clamp(72px, 9vw, 128px) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 20%, rgba(176, 38, 255, 0.2), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(0, 229, 201, 0.1), transparent 32%),
    var(--black);
}

.section-light {
  color: var(--ink);
  background: var(--light);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) 0;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 11, 46, 0.96), rgba(26, 11, 46, 0.72) 45%, rgba(26, 11, 46, 0.3)),
    linear-gradient(0deg, rgba(26, 11, 46, 0.82), transparent 55%);
}

.hero-content {
  position: relative;
  max-width: 740px;
  margin-left: clamp(20px, 8vw, 92px);
}

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

.eyebrow.dark {
  color: #80621d;
}

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

h1,
h2 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  color: rgba(245, 245, 245, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #12071f;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 116px;
  padding: 22px clamp(18px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
}

.icon,
.location-grid span,
.roadmap span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 184, 77, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: inset 0 0 18px rgba(224, 184, 77, 0.12), 0 0 16px rgba(176, 38, 255, 0.16);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.copy-block {
  font-size: 1.1rem;
}

.opportunity-photo {
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(224, 184, 77, 0.24);
  border-radius: var(--radius);
  background: var(--soft-black);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.opportunity-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 360px;
  object-fit: cover;
  object-position: center center;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.machine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.machine-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.machine-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 184, 77, 0.24);
  border-radius: var(--radius);
  background: var(--soft-black);
  box-shadow: var(--shadow);
}

.machine-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.gallery-main img {
  aspect-ratio: 5 / 6;
}

.feature-panel,
.testimonial-card,
.benefit-grid article,
.roadmap article {
  border: 1px solid rgba(224, 184, 77, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: clamp(24px, 4vw, 40px);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 229, 201, 0.8);
}

.location-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-grid article,
.benefit-grid article {
  padding: 28px;
}

.location-grid article {
  min-height: 142px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.location-grid h3,
.benefit-grid h3 {
  margin: 18px 0 0;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.roadmap article {
  position: relative;
  padding: 28px;
}

.roadmap article::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -19px;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
}

.roadmap article:last-child::after {
  display: none;
}

.roadmap h3 {
  margin: 22px 0 10px;
}

.benefit-grid article {
  background: #fff;
  border-color: rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.person span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--gold);
  background: #100619;
  border: 1px solid rgba(224, 184, 77, 0.38);
  font-weight: 900;
}

.person small {
  display: block;
  color: rgba(245, 245, 245, 0.68);
  line-height: 1.35;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 82px);
}

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

details {
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #111;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #3a3a3a;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-copy {
  max-width: 520px;
  font-size: 1.1rem;
}

.contact-details {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #181818;
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #111;
  background: #f9f9f9;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(176, 38, 255, 0.34);
  border-color: var(--violet);
}

.site-footer {
  padding: 44px 0;
  color: rgba(245, 245, 245, 0.8);
  background: #100619;
  border-top: 1px solid rgba(224, 184, 77, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.6fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer .brand {
  gap: 10px;
}

.site-footer .brand .brand-symbol {
  height: 62px;
}

.site-footer .brand .brand-wordmark {
  width: 156px;
}

.site-footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(224, 184, 77, 0.36);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.9rem;
}

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

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(224, 184, 77, 0.42);
    border-radius: var(--radius);
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--gold);
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(26, 11, 46, 0.98);
    border: 1px solid rgba(224, 184, 77, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

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

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

  .value-strip,
  .machine-grid,
  .split,
  .faq-wrap,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

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

  .roadmap article::after {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
  }

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

  .brand {
    gap: 8px;
  }

  .brand .brand-symbol {
    height: 42px;
  }

  .brand .brand-wordmark {
    width: 116px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(26, 11, 46, 0.98), rgba(26, 11, 46, 0.66) 58%, rgba(26, 11, 46, 0.18)),
      linear-gradient(90deg, rgba(26, 11, 46, 0.7), rgba(26, 11, 46, 0.12));
  }

  .hero-content {
    margin: 0 auto;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 30px, 1160px);
  }

  .section-dark,
  .section-light {
    padding: 64px 0;
  }

  .value-strip,
  .location-grid,
  .benefit-grid,
  .testimonial-grid,
  .roadmap,
  .contact-form,
  .machine-gallery {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .testimonial-card {
    min-height: 0;
  }

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