:root {
  --black: #0B0B0B;
  --black-soft: #121212;
  --black-card: #161616;
  --gold: #D4AF37;
  --gold-light: #F0D778;
  --silver: #C0C0C0;
  --white: #FFFFFF;
  --muted: #A7A7A7;
  --line: rgba(192, 192, 192, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

.narrow {
  max-width: 900px;
}

.section {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--silver);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

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

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 16px 46px rgba(212, 175, 55, 0.28);
}

.button-outline {
  border-color: rgba(192, 192, 192, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  display: grid;
  align-items: center;
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(192, 192, 192, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  background: rgba(212, 175, 55, 0.14);
  top: 80px;
  right: 10%;
}

.hero-glow-two {
  background: rgba(192, 192, 192, 0.08);
  bottom: 0;
  left: 20%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 780px;
}

h1 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

h3 {
  line-height: 1.2;
}

.hero-lead,
.section-lead,
.section-heading p,
.about-section p,
.build-section p {
  color: var(--silver);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 690px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 40px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  color: var(--gold-light);
  font-size: 1.08rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.logo-stage {
  width: min(100%, 540px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 64%);
  box-shadow: var(--shadow);
}

.logo-stage img {
  width: 82%;
  border-radius: 28px;
}

.logo-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.logo-ring::before,
.logo-ring::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--gold);
}

.logo-ring::before {
  top: -6px;
  left: 50%;
}

.logo-ring::after {
  bottom: -6px;
  right: 30%;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
}

.card-call {
  top: 17%;
  left: -4%;
}

.card-booking {
  right: -4%;
  bottom: 17%;
}

.status-dot,
.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.status-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold);
}

.problem {
  text-align: center;
  background: var(--black-soft);
}

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

.problem-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.demo-section,
.pricing-section,
.about-section {
  background: var(--black-soft);
}

.demo-grid,
.employee-grid,
.industry-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

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

.demo-card,
.employee-card,
.industry-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}

.demo-card {
  padding: 30px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 14px;
  color: var(--gold-light);
  font-weight: 900;
}

.demo-card p,
.employee-card p,
.industry-card p,
.price-card p,
.price-card li,
.employee-card li {
  color: var(--silver);
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-weight: 800;
  cursor: pointer;
}

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

.employee-card {
  padding: 34px;
}

.employee-card.featured {
  border-color: rgba(212, 175, 55, 0.48);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(255,255,255,0.012));
}

.employee-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.role-badge,
.plan-label {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
}

.employee-number {
  color: rgba(192, 192, 192, 0.35);
  font-size: 1.5rem;
  font-weight: 900;
}

.employee-card h3,
.demo-card h3,
.industry-card h3,
.price-card h3 {
  font-size: 1.45rem;
}

.employee-card ul,
.price-card ul {
  padding-left: 18px;
  margin: 26px 0;
}

.employee-card li,
.price-card li {
  margin-bottom: 8px;
}

.difference-section {
  border-block: 1px solid var(--line);
}

.split-grid,
.about-grid,
.build-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.difference-list {
  border-top: 1px solid var(--line);
}

.difference-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.difference-list span {
  color: var(--gold-light);
  font-weight: 900;
}

.difference-list h3 {
  margin-bottom: 8px;
}

.difference-list p {
  grid-column: 2;
  margin: 0;
  color: var(--silver);
}

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

.industry-card {
  min-height: 220px;
  padding: 28px;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.price-card.highlighted {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-10px);
}

.price-card ul {
  flex: 1;
}

.price-text {
  min-height: 58px;
}

.about-grid {
  align-items: center;
}

.about-logo {
  max-width: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 65%);
}

.about-logo img {
  border-radius: 24px;
}

.build-section {
  position: relative;
  overflow: hidden;
}

.build-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -180px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  filter: blur(80px);
}

.build-grid {
  position: relative;
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: var(--radius);
  background: var(--black-card);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0E0E0E;
  color: var(--white);
  padding: 14px 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.10);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
}

.site-footer {
  padding: 76px 0 24px;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid h3 {
  color: var(--gold-light);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: var(--silver);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.modal {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal[aria-hidden="false"] {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 40px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 24px;
  background: var(--black-card);
  box-shadow: var(--shadow);
}

.modal-panel p:not(.eyebrow) {
  color: var(--silver);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

@media (max-width: 980px) {
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(11,11,11,0.98);
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .split-grid,
  .about-grid,
  .build-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero {
    padding-top: 70px;
  }

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

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 500px;
  }

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

  .demo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.highlighted {
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-visual {
    min-height: 390px;
  }

  .floating-card {
    min-width: 175px;
    padding: 11px 12px;
    font-size: 0.78rem;
  }

  .card-call {
    left: 0;
  }

  .card-booking {
    right: 0;
  }

  .problem-grid,
  .employee-grid,
  .industry-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .hero-proof div {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


.footer-email {
  color: var(--gold-light);
  word-break: break-word;
}


.price-amount {
  margin: 12px 0 22px;
  color: var(--silver);
  font-size: 1rem;
}
.price-amount span {
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.compact-industries {
  grid-template-columns: repeat(4, 1fr);
}
.compact-industries .industry-card {
  min-height: 170px;
}
.footer-contact {
  margin: 6px 0;
  color: var(--silver);
}
button:disabled {
  opacity: .72;
  cursor: wait;
}
@media (max-width: 980px) {
  .compact-industries { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .compact-industries { grid-template-columns: 1fr; }
}
