:root {
  color-scheme: dark;
  --navy: #0e1a2b;
  --ivory: #f7f3ed;
  --gold: #d4b483;
  --emerald: #1f5b4d;
  --slate: #3e4a59;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(5, 10, 20, 0.35);
  --glass: rgba(255, 255, 255, 0.07);
  --border: rgba(212, 180, 131, 0.25);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ivory);
  background: radial-gradient(circle at top left, rgba(212, 180, 131, 0.08), transparent 60%),
    radial-gradient(circle at 30% 20%, rgba(31, 91, 77, 0.18), transparent 55%),
    linear-gradient(130deg, #0a1422 0%, #0f1f33 35%, #121826 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 35%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 4px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--gold);
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

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

.background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 180, 131, 0.35), transparent 70%);
  filter: blur(0px);
  opacity: 0.45;
  transform: translate3d(0, 0, 0);
}

.shape--one {
  width: 380px;
  height: 380px;
  top: 8%;
  left: 6%;
}

.shape--two {
  width: 240px;
  height: 240px;
  bottom: 12%;
  right: 12%;
  background: radial-gradient(circle, rgba(31, 91, 77, 0.35), transparent 70%);
}

.shape--three {
  width: 180px;
  height: 180px;
  top: 42%;
  right: 24%;
  background: radial-gradient(circle, rgba(247, 243, 237, 0.2), transparent 70%);
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(10, 20, 34, 0.78);
  border-bottom: 1px solid rgba(212, 180, 131, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

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

.hero-copy p {
  font-size: 1.1rem;
  color: rgba(247, 243, 237, 0.82);
  margin-bottom: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 180, 131, 0.15);
  border: 1px solid rgba(212, 180, 131, 0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  color: rgba(247, 243, 237, 0.7);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 15px 35px rgba(212, 180, 131, 0.25);
}

.button--primary:hover {
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(247, 243, 237, 0.4);
  color: var(--ivory);
  background: transparent;
}

.button--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 24, 36, 0.4);
}

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

.proof-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  min-width: 160px;
}

.proof-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
}

.text-link {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 180, 131, 0.4);
  padding-bottom: 2px;
  display: inline-flex;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--ivory);
  border-color: rgba(247, 243, 237, 0.5);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: min(320px, 80vw);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(15, 24, 40, 0.9);
}

.phone-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 243, 237, 0.4);
}

.phone-body {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.message {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.message--out {
  background: rgba(212, 180, 131, 0.18);
  border: 1px solid rgba(212, 180, 131, 0.2);
  align-self: flex-end;
}

.message--in {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-self: flex-start;
}

.message--link {
  font-weight: 600;
  color: var(--gold);
}

.glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(212, 180, 131, 0.25), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}

.trust {
  margin-top: 60px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.trust-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-pill {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 180, 131, 0.3);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.section {
  padding: 90px 0;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.section-lead {
  max-width: 640px;
  color: rgba(247, 243, 237, 0.75);
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.glass-panel {
  background: var(--glass);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
}

.checklist li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.step,
.feature,
.integration,
.pricing-card,
.quote {
  background: var(--glass);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(5, 10, 20, 0.25);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 180, 131, 0.2);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.feature {
  min-height: 180px;
}

.integration {
  text-align: center;
  font-weight: 600;
}

.pricing-card {
  position: relative;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  color: rgba(247, 243, 237, 0.75);
}

.pricing-card ul li {
  position: relative;
  padding-left: 16px;
}

.pricing-card ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.tier-desc {
  color: rgba(247, 243, 237, 0.65);
  margin-top: 12px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.price span {
  font-size: 1rem;
  color: rgba(247, 243, 237, 0.7);
}

.pricing-card--featured {
  border-color: rgba(212, 180, 131, 0.45);
  box-shadow: 0 25px 60px rgba(212, 180, 131, 0.25);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #111;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote blockquote {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.quote figcaption {
  color: rgba(247, 243, 237, 0.7);
}

.note {
  margin-top: 18px;
  color: rgba(247, 243, 237, 0.6);
  font-size: 0.9rem;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details {
  background: var(--glass);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo {
  padding-bottom: 120px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0;
  color: rgba(247, 243, 237, 0.75);
}

.mini-list li {
  position: relative;
  padding-left: 16px;
}

.mini-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.consent {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(247, 243, 237, 0.7);
}

.consent input {
  margin-top: 4px;
}

.contact-card {
  background: rgba(31, 91, 77, 0.2);
  border: 1px solid rgba(31, 91, 77, 0.4);
  padding: 20px;
  border-radius: var(--radius-md);
}

.calendly {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 520px;
  background: rgba(255, 255, 255, 0.05);
}

.calendly iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.calendly-placeholder {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(247, 243, 237, 0.4);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(10, 20, 34, 0.6);
}

.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(212, 180, 131, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 24px;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: rgba(247, 243, 237, 0.7);
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  color: rgba(247, 243, 237, 0.5);
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
