:root {
  --midnight: #08111f;
  --midnight-deep: #030810;
  --soft-white: #f5f1ea;
  --paper: #fbf7ef;
  --copper: #c47a3d;
  --copper-dark: #9d5d2c;
  --slate: #3b4658;
  --mist: #c7cbd0;
  --line-dark: rgba(245, 241, 234, 0.14);
  --line-light: rgba(8, 17, 31, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--copper) var(--midnight-deep);
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: var(--midnight-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--copper);
  border: 3px solid var(--midnight-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: #d18a49;
}

body {
  margin: 0;
  background: var(--midnight);
  color: var(--soft-white);
  font-family: "Inter", Arial, sans-serif;
}

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

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

p {
  line-height: 1.7;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(3, 8, 16, 0.78);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}

.brand-logo {
  width: 218px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  color: rgba(245, 241, 234, 0.78);
}

.site-nav a:hover {
  color: var(--soft-white);
}

.nav-cta {
  padding: 12px 16px;
  background: var(--copper);
  color: var(--midnight-deep) !important;
}

[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.66;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: rgba(245, 241, 234, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--soft-white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 92px) 74px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.98) 0%, rgba(8, 17, 31, 0.82) 42%, rgba(8, 17, 31, 0.32) 100%),
    linear-gradient(180deg, rgba(3, 8, 16, 0.4), rgba(3, 8, 16, 0.96));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

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

.eyebrow.copper {
  color: var(--copper);
}

h1,
h2,
h3 {
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(245, 241, 234, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.product-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  background: var(--copper);
  color: var(--midnight-deep);
}

.button.secondary {
  border-color: rgba(245, 241, 234, 0.28);
  color: var(--soft-white);
  background: rgba(245, 241, 234, 0.04);
}

.button.dark {
  background: var(--midnight);
  color: var(--soft-white);
}

.button.placeholder {
  border-color: rgba(196, 122, 61, 0.5);
  color: var(--copper);
  background: transparent;
}

.proof-band {
  background: var(--copper);
  color: var(--midnight-deep);
  padding: 22px clamp(20px, 6vw, 92px);
}

.proof-band div {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.proof-band strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
}

.proof-band span {
  color: rgba(3, 8, 16, 0.8);
}

.section {
  padding: clamp(74px, 9vw, 130px) clamp(20px, 6vw, 92px);
}

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

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.narrow {
  width: min(780px, 100%);
}

.keep-heading-line {
  white-space: nowrap;
}

.section-heading p {
  color: rgba(8, 17, 31, 0.72);
}

.home-seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid var(--line-light);
}

.home-seo-copy {
  max-width: 680px;
}

.home-seo-copy p {
  color: rgba(8, 17, 31, 0.72);
}

.home-seo-points {
  display: grid;
  gap: 1px;
  background: var(--line-light);
}

.home-seo-points article {
  padding: 28px;
  background: var(--paper);
}

.home-seo-points h3 {
  font-size: 26px;
}

.home-seo-points p {
  margin: 16px 0 0;
  color: rgba(8, 17, 31, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line-light);
}

.service-card {
  min-height: 360px;
  padding: 34px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(8, 17, 31, 0.18);
  outline: none;
}

.service-card.featured {
  background: var(--midnight);
  color: var(--soft-white);
}

.service-number {
  color: var(--copper);
  font-weight: 900;
}

.service-card p {
  color: rgba(8, 17, 31, 0.7);
}

.service-card.featured p {
  color: rgba(245, 241, 234, 0.74);
}

.service-card .included-note {
  margin: 12px 0 0;
  color: var(--copper-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.service-card.featured .included-note {
  color: var(--copper);
}

.dark-split,
.founder-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  background: var(--midnight);
}

.split-copy p,
.founder-copy p,
.contact-copy p {
  color: rgba(245, 241, 234, 0.76);
}

.assistant-panel,
.founder-details,
.contact-form,
.product-panel,
.scope-card,
.pricing-card {
  border: 1px solid var(--line-dark);
  background: rgba(245, 241, 234, 0.055);
  box-shadow: var(--shadow);
}

.assistant-panel {
  padding: 24px;
}

.assistant-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.assistant-mark {
  width: 48px;
}

.assistant-top span {
  display: block;
  color: rgba(245, 241, 234, 0.64);
  font-size: 13px;
}

.chat-log {
  display: grid;
  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
}

.message {
  width: fit-content;
  max-width: 92%;
  padding: 14px 16px;
  margin: 12px 0;
  line-height: 1.5;
}

.message.bot {
  background: rgba(245, 241, 234, 0.08);
}

.message.user {
  margin-left: auto;
  background: rgba(196, 122, 61, 0.18);
  border: 1px solid rgba(196, 122, 61, 0.36);
}

.guide-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.guide-options button {
  padding: 12px 10px;
  border: 1px solid var(--line-dark);
  background: rgba(245, 241, 234, 0.04);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--copper);
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.chat-form input {
  min-width: 0;
}

.chat-form button {
  border: 0;
  background: var(--copper);
  color: var(--midnight-deep);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.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;
}

.process-section {
  background: var(--midnight-deep);
}

.process-section.light-process {
  background: var(--paper);
  color: var(--midnight);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.process-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--midnight-deep);
}

.light-process .process-grid {
  background: var(--line-light);
}

.light-process .process-grid article {
  background: var(--paper);
}

.process-grid span {
  color: var(--copper);
  font-weight: 900;
}

.process-grid p {
  color: rgba(245, 241, 234, 0.68);
}

.light-process .process-grid p {
  color: rgba(8, 17, 31, 0.7);
}

.founder-details p {
  color: rgba(245, 241, 234, 0.68);
}

.faq-section {
  border-top: 1px solid var(--line-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--line-light);
}

.faq-item {
  min-height: 230px;
  padding: 30px;
  background: var(--paper);
}

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

.faq-item p {
  margin: 18px 0 0;
  color: rgba(8, 17, 31, 0.72);
}

.founder-details,
.contact-form,
.product-panel,
.scope-card,
.pricing-card {
  padding: 30px;
}

.founder-details strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
}

.founder-details span {
  display: block;
  color: var(--copper);
  margin-top: 6px;
}

.contact-section {
  background: linear-gradient(180deg, var(--midnight), var(--midnight-deep));
}

.contact-copy a {
  color: var(--copper);
  font-weight: 800;
}

.contact-copy span {
  display: inline-block;
  color: var(--copper);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 234, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: rgba(3, 8, 16, 0.72);
  color: var(--soft-white);
  padding: 14px 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 92px);
  background: var(--midnight-deep);
  border-top: 1px solid var(--line-dark);
  color: rgba(245, 241, 234, 0.66);
  font-size: 13px;
}

.footer-logo {
  width: 190px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.product-hero {
  padding: 150px clamp(20px, 6vw, 92px) 78px;
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.98), rgba(8, 17, 31, 0.78)),
    url("assets/pav-premium-office.png") center / cover;
}

.product-hero-inner {
  width: min(980px, 100%);
}

.product-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 92px);
}

.product-hero p {
  max-width: 720px;
  color: rgba(245, 241, 234, 0.78);
  font-size: 19px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.upgrade-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid var(--line-light);
  background: rgba(8, 17, 31, 0.045);
}

.upgrade-callout h2 {
  font-size: clamp(30px, 3.8vw, 52px);
}

.upgrade-callout p {
  color: rgba(8, 17, 31, 0.72);
}

.upgrade-details {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--midnight);
  color: var(--soft-white);
}

.upgrade-details strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.upgrade-details span {
  color: rgba(245, 241, 234, 0.72);
  line-height: 1.55;
}

.multi-upgrade {
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.multi-upgrade a {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--midnight);
}

.multi-upgrade a:hover {
  background: #0d1828;
}

.contact-preference-layout {
  align-items: start;
}

.contact-choice-heading {
  width: min(820px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.contact-choice-heading p {
  color: rgba(8, 17, 31, 0.72);
}

.contact-choice-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
}

.preference-form {
  background: var(--midnight);
}

.contact-chat-panel {
  margin-top: 0;
  background: var(--midnight);
  color: var(--soft-white);
}

.form-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.form-intro h3 {
  margin: 0;
}

.form-intro p {
  margin: 0;
  color: rgba(245, 241, 234, 0.68);
}

.phone-details {
  display: grid;
  gap: 16px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(245, 241, 234, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  background: rgba(3, 8, 16, 0.72);
  color: var(--soft-white);
  text-transform: none;
  cursor: pointer;
}

.radio-group input {
  width: auto;
  accent-color: var(--copper);
}

.product-copy {
  display: grid;
  gap: 28px;
}

.product-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: rgba(8, 17, 31, 0.76);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--copper);
}

.product-panel,
.pricing-card {
  background: var(--midnight);
  color: var(--soft-white);
}

.price {
  display: block;
  margin: 8px 0;
  color: var(--copper);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
}

.pricing-card p,
.product-panel p {
  color: rgba(245, 241, 234, 0.72);
}

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

.scope-card {
  min-height: 210px;
}

.scope-card p {
  color: rgba(245, 241, 234, 0.68);
}

.placeholder-note {
  margin-top: 14px;
  color: rgba(245, 241, 234, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: var(--midnight-deep);
    border-bottom: 1px solid var(--line-dark);
  }

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

  .proof-band div,
  .dark-split,
  .founder-section,
  .contact-section,
  .home-seo-section,
  .product-layout,
  .upgrade-callout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .faq-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .keep-heading-line {
    white-space: normal;
  }

  .brand-logo {
    width: 176px;
  }

  .hero {
    min-height: 88vh;
  }

  .guide-options {
    grid-template-columns: 1fr;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
