:root {
  --background: #07110e;
  --background-deep: #030c0a;
  --surface: #101914;
  --surface-2: #1d291d;
  --foreground: #f0dcc3;
  --muted: #9b9c83;
  --gold: #c5ac83;
  --gold-light: #f0dcc3;
  --border: rgba(135, 137, 103, .3);
  --border-gold: rgba(197, 172, 131, .45);
  --shadow: 0 32px 80px -36px rgba(0, 0, 0, .9);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}
::selection { color: var(--background-deep); background: var(--gold); }

.container { width: min(1216px, calc(100% - 40px)); margin-inline: auto; }
.border-section { border-top: 1px solid rgba(135, 137, 103, .18); }
.section { padding: 132px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { width: 32px; height: 1px; background: rgba(197, 172, 131, .55); }
.section-heading { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.section-heading h2, .solution h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  line-height: 1.08;
}
.section-heading h2 span { color: var(--muted); }
.section-heading > p:last-child, .lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-color: var(--border);
  background: rgba(7, 17, 14, .86);
  backdrop-filter: blur(18px);
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 50%; }
.brand span { font-family: "Fraunces", Georgia, serif; font-size: 21px; letter-spacing: -.02em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a, .footer nav a { color: var(--muted); font-size: 13px; transition: color .25s; }
.desktop-nav a:hover, .footer nav a:hover { color: var(--foreground); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 12px; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 16px; height: 1px; margin: 5px auto; background: var(--foreground); transition: transform .3s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--background-deep);
  background: var(--gold);
  font-size: 14px;
  font-weight: 700;
  transition: transform .45s var(--ease), background .3s, box-shadow .45s;
}
.button:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 18px 40px -18px rgba(197, 172, 131, .6); }
.button-small { min-height: 42px; padding: 10px 21px; font-size: 13px; }
.button-large { min-height: 56px; padding: 16px 31px; font-size: 15px; }
.button-ghost { color: var(--foreground); background: transparent; border-color: var(--border); }
.button-ghost:hover { color: var(--foreground); background: rgba(29, 41, 29, .75); border-color: var(--border-gold); }

.hero { position: relative; min-height: 100vh; overflow: hidden; padding: 150px 0 110px; }
.hero-background { position: absolute; inset: 0 0 auto; width: 100%; height: 72vh; object-fit: cover; opacity: .62; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 14, .18), rgba(7, 17, 14, .82) 51%, var(--background) 73%);
}
.hero-content { position: relative; }
.hero-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-copy .eyebrow { justify-content: center; }
.hero h1 { margin-bottom: 28px; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.02; }
.hero h1 em, .final-cta h2 em {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 400;
}
.hero-description { max-width: 650px; margin: 0 auto; color: #b4b39c; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.hero-frame { max-width: 1050px; margin: 88px auto 0; animation: float 7s ease-in-out infinite; }

.browser-frame {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(16, 25, 20, .87);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.browser-bar { display: flex; align-items: center; gap: 6px; height: 31px; padding: 0 8px; }
.browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(155, 156, 131, .42); }
.browser-bar i:nth-child(2) { opacity: .75; }
.browser-bar i:nth-child(3) { opacity: .5; }
.browser-bar span { margin-left: 8px; color: var(--muted); font-size: 10px; letter-spacing: .05em; }
.screen-button, .feature-screen {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #09110e;
  line-height: 0;
  cursor: zoom-in;
}
.screen-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

.scattered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scattered-card {
  min-height: 130px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(16, 25, 20, .55);
  transition: transform .6s var(--ease), border-color .4s;
}
.scattered-card:nth-child(3n+1) { transform: rotate(-.8deg); }
.scattered-card:nth-child(3n) { transform: rotate(.8deg); }
.scattered-card:hover { transform: translateY(-4px) rotate(0); border-color: var(--border-gold); }
.scattered-card strong { display: block; margin-bottom: 12px; font-size: 14px; font-weight: 500; }
.scattered-card span { color: var(--muted); font-size: 13px; }
.section-quote { max-width: 650px; margin: 68px auto 0; text-align: center; font-family: "Fraunces", serif; font-size: 25px; line-height: 1.55; }

.solution-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.solution-copy .lead { margin-bottom: 38px; }
.pillar-list { display: grid; gap: 28px; padding: 0; list-style: none; }
.pillar-list li { display: grid; grid-template-columns: 32px 1fr; gap: 18px; }
.pillar-list li > span { padding-top: 3px; color: var(--gold); font-family: "Fraunces", serif; font-size: 13px; }
.pillar-list h3 { margin-bottom: 7px; font-size: 20px; }
.pillar-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.solution-visual { position: relative; padding-bottom: 30px; }
.solution-visual > img { width: 100%; min-height: 530px; object-fit: cover; border: 1px solid var(--border); border-radius: 26px; }
.solution-visual > p { position: absolute; right: 26px; bottom: 0; max-width: 340px; margin: 0; padding: 20px; border: 1px solid var(--border); border-radius: 17px; background: rgba(7, 17, 14, .9); font-size: 13px; line-height: 1.7; backdrop-filter: blur(10px); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
}
.feature-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(16, 25, 20, .78);
  box-shadow: 0 24px 60px -35px rgba(0,0,0,.75);
  transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: var(--shadow); }
.feature-wide { grid-column: auto; }
.feature-icon { display: grid; place-items: center; width: 28px; height: 28px; color: var(--gold); font-size: 20px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 17px 0 10px; font-size: 24px; }
.feature-card > p { margin-bottom: 24px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.feature-screen {
  margin-top: auto;
  padding-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.feature-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #09110e;
  transition: transform .7s var(--ease);
}
.feature-screen:hover img { transform: scale(1.018); }

.timeline { position: relative; max-width: 930px; margin: 85px auto 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; inset: 0 auto 0 50%; width: 1px; background: linear-gradient(var(--gold), var(--border), transparent); }
.timeline li { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; min-height: 125px; }
.timeline li b { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 34px; height: 34px; transform: translate(-50%, -50%); border: 1px solid var(--border-gold); border-radius: 50%; background: var(--background); color: var(--gold); font-family: "Fraunces", serif; font-size: 11px; font-weight: 400; }
.timeline li div { max-width: 320px; }
.timeline li:nth-child(odd) div { justify-self: end; text-align: right; }
.timeline li:nth-child(even) div { grid-column: 2; }
.timeline h3 { margin-bottom: 8px; font-size: 31px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.comparison { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; gap: 28px; }
.comparison-card { padding: 38px; border: 1px solid var(--border); border-radius: 26px; background: rgba(16, 25, 20, .48); }
.comparison-card.after { border-color: var(--border-gold); background: var(--surface); box-shadow: var(--shadow); }
.comparison-card ul { display: grid; gap: 18px; margin: 6px 0 0; padding: 0; list-style: none; }
.comparison-card li { display: flex; gap: 13px; color: var(--muted); font-size: 14px; }
.comparison-card li::before { content: ""; width: 16px; height: 1px; margin-top: 10px; flex: 0 0 auto; background: currentColor; }
.comparison-card.after li { color: var(--foreground); }
.comparison-card.after li::before { background: var(--gold); }
.comparison-arrow { display: grid; place-items: center; width: 46px; height: 46px; margin: auto; border: 1px solid var(--border-gold); border-radius: 50%; color: var(--gold); }

.showcase-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.showcase-tabs button { padding: 10px 20px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); background: transparent; font-size: 13px; cursor: pointer; transition: .35s; }
.showcase-tabs button:hover, .showcase-tabs button.active { color: var(--foreground); border-color: var(--border-gold); background: var(--surface-2); }
.showcase-frame { width: 100%; max-width: 1080px; min-width: 0; margin: auto; }
#showcase-image { transition: opacity .2s, transform .55s var(--ease); }
#showcase-image.changing { opacity: .25; transform: scale(.99); }

.benefits-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 1px; overflow: hidden; gap: 1px; border: 1px solid var(--border); border-radius: 26px; background: var(--border); list-style: none; }
.benefit-list li { min-height: 130px; padding: 28px; background: var(--background); font-size: 14px; line-height: 1.6; transition: background .3s; }
.benefit-list li:hover { background: var(--surface); }
.benefit-list span { display: block; margin-bottom: 13px; color: var(--gold); font-family: "Fraunces", serif; font-size: 11px; }

.single-plan-wrap { max-width: 560px; margin-inline: auto; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--border); border-radius: 26px; background: rgba(16, 25, 20, .7); }
.single-plan-card { padding: 44px; border-color: var(--border-gold); background: var(--surface); box-shadow: var(--shadow); }
.plan-tag { align-self: flex-start; margin-bottom: 30px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--gold); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.single-plan-price { display: flex; align-items: flex-end; gap: 10px; }
.price { margin: 0; font-family: "Fraunces", serif; font-size: clamp(3.25rem, 8vw, 4rem); line-height: .95; }
.single-plan-price small { padding-bottom: 7px; color: var(--muted); font-size: 13px; }
.plan-description { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.price-card ul { display: grid; gap: 13px; margin: 24px 0 32px; padding: 24px 0 0; border-top: 1px solid var(--border); list-style: none; }
.price-card .single-plan-features { grid-template-columns: 1fr 1fr; margin-top: 30px; }
.price-card li { color: #c3c0a8; font-size: 13px; }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--gold); }
.price-card .button { width: 100%; margin-top: auto; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.accordion { border-block: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item button { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; padding: 25px 0; border: 0; text-align: left; background: none; cursor: pointer; }
.faq-item button span { font-size: 15px; }
.faq-item button b { color: var(--gold); font-size: 19px; font-weight: 400; transition: transform .4s; }
.faq-item > div { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .45s var(--ease), opacity .35s; }
.faq-item > div p { overflow: hidden; margin: 0; padding-right: 40px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.faq-item.open > div { grid-template-rows: 1fr; opacity: 1; }
.faq-item.open > div p { padding-bottom: 24px; }
.faq-item.open button b { transform: rotate(45deg); }

.final-cta { position: relative; overflow: hidden; padding: 145px 0; text-align: center; }
.final-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.final-cta-shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(7,17,14,.15), var(--background) 76%); }
.final-cta .container { position: relative; }
.final-cta h2 { max-width: 830px; margin: 0 auto 22px; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.1; }
.final-cta p { margin-bottom: 32px; color: var(--muted); }

.footer { padding: 42px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer p { justify-self: end; margin: 0; color: var(--muted); font-size: 11px; }

.image-modal { width: min(94vw, 1500px); max-width: none; padding: 12px; border: 1px solid var(--border-gold); border-radius: 22px; background: #07110e; box-shadow: 0 40px 100px rgba(0,0,0,.9); }
.image-modal::backdrop { background: rgba(0, 0, 0, .87); backdrop-filter: blur(7px); }
.image-modal img { width: 100%; max-height: 88vh; object-fit: contain; border-radius: 13px; }
.modal-close { position: absolute; z-index: 2; top: 22px; right: 22px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--border-gold); border-radius: 50%; color: var(--foreground); background: rgba(7,17,14,.86); font-size: 25px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }
.delay-4 { transition-delay: 360ms; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 980px) {
  .section { padding: 100px 0; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: absolute; inset: 80px 0 auto; display: grid; gap: 0; max-height: 0; padding: 0 20px; overflow: hidden; border-bottom: 1px solid transparent; background: rgba(7,17,14,.97); opacity: 0; transition: max-height .5s var(--ease), padding .5s, opacity .3s, border-color .3s; backdrop-filter: blur(18px); }
  .mobile-nav.open { max-height: 470px; padding-block: 15px 24px; border-color: var(--border); opacity: 1; }
  .mobile-nav > a:not(.button) { padding: 13px 0; color: var(--muted); font-size: 14px; }
  .mobile-nav .button { margin-top: 10px; }
  .solution-grid, .benefits-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .solution-visual { max-width: 680px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer .brand { justify-self: center; }
  .footer p { justify-self: center; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1216px); }
  .section { padding: 82px 0; }
  .desktop-cta { display: none; }
  .hero { padding-top: 125px; padding-bottom: 75px; }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; margin-inline: auto; }
  .hero-frame { margin-top: 58px; }
  .browser-frame { padding: 6px; border-radius: 16px; }
  .browser-bar { height: 25px; }
  .screen-button { border-radius: 10px; }
  .scattered-grid, .features-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 45px; }
  .solution-grid { gap: 48px; }
  .solution-visual > img { min-height: 400px; }
  .solution-visual > p { left: 18px; right: 18px; }
  .feature-card > p { min-height: auto; }
  .timeline { margin-top: 55px; padding-left: 47px; }
  .timeline::before { left: 16px; }
  .timeline li { display: block; min-height: 125px; padding-bottom: 30px; }
  .timeline li b { left: -31px; top: 4px; transform: translate(-50%, 0); }
  .timeline li div,
  .timeline li:nth-child(odd) div,
  .timeline li:nth-child(even) div {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
  }
  .comparison { grid-template-columns: 1fr; }
  .comparison-arrow { transform: rotate(90deg); }
  .benefit-list { grid-template-columns: 1fr; }
  .showcase-tabs {
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .showcase-tabs button { flex: 0 0 auto; }
  .price-card, .comparison-card { padding: 29px; }
  .price-card .single-plan-features { grid-template-columns: 1fr; }
  .faq-grid { gap: 15px; }
  .final-cta { padding: 105px 0; }
}

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