@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #141414;
  --panel-2: #191919;
  --text: #f4f4f2;
  --muted: #a4a4a0;
  --line: #292929;
  --orange: #ff7a00;
  --orange-2: #ff9a1f;
  --offwhite: #f4f1ea;
  --ink: #0a0a0a;
  --radius: 8px;
  --header-h: 94px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, system-ui, sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.site-shell { overflow: clip; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container-small { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 900px; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', Inter, sans-serif; line-height: 1.06; margin: 0; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); margin: 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h); transition: height .25s ease, background .25s ease, border-color .25s ease; background: linear-gradient(to bottom, rgba(8,8,8,.94), rgba(8,8,8,.72), transparent); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { height: 66px; background: rgba(8,8,8,.92); backdrop-filter: blur(16px); border-color: rgba(255,255,255,.08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { width: 210px; transition: width .25s ease; }
.site-header.is-scrolled .brand { width: 168px; }
.brand img { width: 100%; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: .93rem; color: #c3c3c0; transition: color .2s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--orange); transition: right .2s ease; }
.nav-link:hover,.nav-link.active { color: white; }
.nav-link:hover::after,.nav-link.active::after { right: 0; }
.header-actions { margin-left: 8px; display: flex; align-items: center; }
.button { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 6px; font-weight: 600; font-size: .92rem; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #090909; }
.button-primary:hover { background: var(--orange-2); }
.button-secondary { border-color: #343434; background: #131313; color: white; }
.button-secondary:hover { border-color: #555; background: #181818; }
.button-dark { background: #090909; color: white; }
.button-large { min-height: 52px; padding: 0 22px; }
.menu-toggle,.mobile-cta { display: none; }

.hero { min-height: 850px; padding: 180px 0 110px; position: relative; display: flex; align-items: center; background: radial-gradient(circle at 72% 28%, rgba(255,122,0,.12), transparent 29%), #080808; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.28fr .72fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.hero h1 { font-size: clamp(2.95rem, 4.625vw, 4.725rem); max-width: 780px; }
.hero h1 span { color: var(--orange); }
.hero-lead { font-size: clamp(1rem, 1.35vw, 1.15rem); max-width: 720px; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; gap: 34px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-family: 'Space Grotesk'; font-size: .95rem; }
.hero-proof span { color: #747471; font-size: .78rem; }
.hero-console { border: 1px solid #292929; background: rgba(15,15,15,.8); box-shadow: 0 30px 90px rgba(0,0,0,.42); transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); }
.console-bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #272727; background: #111; }
.console-bar span { width: 8px; height: 8px; border-radius: 50%; background: #363636; }
.console-bar span:first-child { background: var(--orange); }
.console-bar small { margin-left: auto; color: #666; font-family: monospace; }
.console-body { padding: 18px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.code-row { display: grid; grid-template-columns: 38px 38px 1fr; gap: 10px; align-items: center; padding: 18px 10px; border-bottom: 1px solid #202020; color: #aaa; font-size: .9rem; }
.code-row span { color: #515151; }
.code-row b { color: #777; }
.code-row.active { color: white; background: linear-gradient(90deg, rgba(255,122,0,.13), transparent); }
.code-row.active b { color: var(--orange); }
.console-result { margin-top: 18px; padding: 18px; display: flex; gap: 14px; align-items: center; border: 1px solid rgba(255,122,0,.35); background: rgba(255,122,0,.06); }
.console-result svg { color: var(--orange); flex: none; }
.console-result div { display: grid; font-family: Inter; }
.console-result span { color: #8b8b88; font-size: .78rem; }
.logo-strip { border-block: 1px solid #1f1f1f; background: #0c0c0c; }
.strip-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; color: #5f5f5b; font-family: 'Space Grotesk'; font-size: .8rem; letter-spacing: .18em; }
.strip-inner i { color: var(--orange); font-style: normal; }
.section { padding: 120px 0; }
.no-top { padding-top: 18px; }
.section-dark { background: #0d0d0d; border-block: 1px solid #202020; }
.section-accent { background: var(--orange); color: var(--ink); }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { max-width: 760px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.split-heading p { font-size: 1.03rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .2s ease; }
.service-card:hover { background: #101010; }
.service-card svg { color: var(--orange); margin: 28px 0 22px; }
.service-card p { margin-top: 12px; font-size: .92rem; }
.service-number { color: #4a4a48; font-family: monospace; font-size: .75rem; }
.product-feature-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.product-feature-grid > div:first-child p { margin: 24px 0 30px; max-width: 520px; }
.product-stack { display: grid; gap: 14px; }
.stack-card { border: 1px solid #2a2a2a; background: #121212; padding: 30px; }
.stack-card-primary { padding: 38px; background: linear-gradient(145deg, #151515, #0d0d0d); }
.stack-card h3 { margin: 12px 0 10px; font-size: 2rem; }
.mini-tag,.status-tag { font-size: .68rem; letter-spacing: .13em; font-weight: 700; color: var(--orange); }
.status-tag { color: #b9b9b5; border: 1px solid #333; padding: 5px 7px; border-radius: 4px; letter-spacing: .04em; }
.screen-mock { height: 150px; margin-top: 28px; border: 1px solid #2d2d2d; padding: 12px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 10px; background: #080808; }
.screen-mock div { background: linear-gradient(135deg, rgba(255,122,0,.34), #171717); border: 1px solid #252525; }
.screen-mock div:first-child { grid-row: span 2; }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.sticky-copy { position: sticky; top: 110px; }
.sticky-copy p { margin-top: 22px; max-width: 430px; }
.process-row { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-row:first-child { border-top: 1px solid var(--line); }
.process-row > span { font-family: monospace; color: var(--orange); }
.process-row p { margin-top: 10px; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.cta-grid h2 { color: #080808; }
.cta-grid p { color: rgba(0,0,0,.66); margin-bottom: 26px; font-weight: 500; }
.dark-eyebrow { color: #171717; }
.page-hero { padding: 190px 0 92px; background: radial-gradient(circle at 70% 20%, rgba(255,122,0,.09), transparent 30%); }
.page-hero h1 { font-size: clamp(2.75rem, 4.9vw, 4.85rem); max-width: 980px; }
.page-hero p { font-size: 1.04rem; max-width: 730px; margin-top: 24px; }
.two-col-products { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-card { border: 1px solid var(--line); padding: 34px; background: #0d0d0d; min-height: 430px; display: flex; flex-direction: column; }
.product-card-top { display: flex; justify-content: space-between; gap: 12px; }
.product-card h3 { font-size: 2.2rem; margin: 22px 0 14px; }
.product-card .text-link { margin-top: auto; padding-top: 28px; }
.clean-list { list-style: none; padding: 0; margin: 26px 0; color: #b7b7b4; }
.clean-list li { padding: 8px 0 8px 18px; position: relative; border-bottom: 1px solid #202020; }
.clean-list li::before { content: '+'; position: absolute; left: 0; color: var(--orange); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: white; font-weight: 600; }
.text-link svg { color: var(--orange); }
.feature-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.feature-columns svg { color: var(--orange); margin-bottom: 22px; }
.feature-columns p { margin-top: 12px; }
.inline-cta { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.centered-copy { text-align: center; max-width: 800px; }
.centered-copy .eyebrow { justify-content: center; }
.centered-copy p { margin: 24px auto 0; max-width: 670px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-detail { min-height: 300px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-detail > span { color: #4f4f4c; font-family: monospace; }
.service-detail svg { display: block; color: var(--orange); margin: 34px 0 20px; }
.service-detail p { margin-top: 14px; max-width: 520px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { border: 1px solid var(--line); padding: 30px; display: flex; flex-direction: column; background: #0d0d0d; }
.price-card h3 { margin: 18px 0 10px; }
.price { margin: 18px 0; display: flex; align-items: baseline; gap: 6px; }
.price strong { font-family: 'Space Grotesk'; font-size: 2rem; }
.price span { color: #777; }
.price-card ul { list-style: none; padding: 22px 0; margin: 20px 0; border-top: 1px solid #242424; }
.price-card li { display: flex; gap: 9px; align-items: center; padding: 7px 0; color: #bcbcb8; font-size: .9rem; }
.price-card li svg { color: var(--orange); }
.price-card .button { margin-top: auto; }
.pricing-note { margin-top: 28px; color: #73736f; text-align: center; font-size: .85rem; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-copy p { margin: 18px 0 26px; }
.contact-pill { border: 1px solid var(--line); padding: 16px; display: inline-flex; gap: 12px; align-items: center; }
.contact-pill svg { color: var(--orange); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: #c9c9c5; font-size: .84rem; }
.contact-form label:nth-child(3), .contact-form label:nth-child(4) { grid-column: 1 / -1; }
.contact-form input,.contact-form textarea,.contact-form select { width: 100%; border: 1px solid #303030; background: #0f0f0f; color: white; padding: 14px 15px; border-radius: 5px; outline: none; }
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus { border-color: var(--orange); }
.contact-form button { justify-self: start; }
.contact-form small { align-self: center; color: #666; }
.site-footer { background: #050505; border-top: 1px solid #202020; padding: 70px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .9fr 1fr; gap: 60px; }
.footer-brand img { width: 210px; margin-bottom: 20px; }
.footer-brand p { max-width: 370px; }
.footer-grid h4 { font-size: .95rem; margin-bottom: 18px; }
.footer-grid > div:not(.footer-brand) > a { display: block; color: #8f8f8b; margin: 9px 0; font-size: .88rem; }
.footer-cta p { margin-bottom: 16px; }
.footer-bottom { margin-top: 58px; border-top: 1px solid #1c1c1c; padding-top: 20px; display: flex; justify-content: space-between; color: #565653; font-size: .75rem; }


@media (min-width: 981px) and (max-height: 850px) {
  .hero { min-height: 100svh; padding: 122px 0 56px; }
  .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(3rem, 4.7vw, 4.475rem); }
  .hero-lead { margin-top: 20px; font-size: clamp(1rem, 1.25vw, 1.12rem); }
  .hero-actions { margin-top: 24px; }
  .hero-proof { margin-top: 30px; padding-top: 18px; }
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid #303030; background: #111; color: white; border-radius: 6px; }
  .main-nav { position: fixed; top: 66px; left: 20px; right: 20px; margin: 0; padding: 22px; display: none; flex-direction: column; align-items: stretch; background: #0d0d0d; border: 1px solid #2c2c2c; }
  .main-nav.is-open { display: flex; }
  .mobile-cta { display: inline-flex; margin-top: 10px; }
  .header-actions { margin-left: auto; }
  .hero { min-height: auto; padding-top: 160px; }
  .hero-layout,.product-feature-grid,.process-grid,.contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-console { transform: none; max-width: 680px; }
  .service-grid,.pricing-grid { grid-template-columns: repeat(2,1fr); }
  .split-heading,.cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-copy { position: static; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 72px; }
  .site-header.is-scrolled { height: 60px; }
  .brand { width: 155px; }
  .site-header.is-scrolled .brand { width: 145px; }
  .main-nav { top: 60px; left: 14px; right: 14px; }
  .hero { padding: 130px 0 78px; }
  h1 { font-size: clamp(2.5rem, 11vw, 3.7rem); }
  .hero h1, .page-hero h1 { font-size: clamp(2.525rem, 11.5vw, 3.75rem); }
  .hero-lead, .page-hero p { font-size: 1rem; }
  .hero-proof { gap: 18px; flex-wrap: wrap; }
  .hero-proof div { min-width: calc(50% - 18px); }
  .strip-inner { gap: 16px; justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .section { padding: 80px 0; }
  .page-hero { padding: 140px 0 72px; }
  .service-grid,.pricing-grid,.two-col-products,.service-detail-grid,.feature-columns { grid-template-columns: 1fr; }
  .service-grid,.service-detail-grid { border-left: 0; }
  .service-card,.service-detail { border-left: 1px solid var(--line); }
  .inline-cta { align-items: stretch; flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label:nth-child(3),.contact-form label:nth-child(4) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand,.footer-cta { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
/* Static-site additions */
.icon { width: 26px; height: 26px; color: var(--orange); margin: 28px 0 22px; }
.menu-toggle { font-size: 1.5rem; line-height: 1; }
.main-nav .active { color: #fff; }
.main-nav .active::after { right: 0; }
.simple-form-note { color:#666; font-size:.78rem; grid-column:1/-1; }

/* Product-local pricing and work */
.purchase-note { margin: 24px 0; padding: 16px 0; border-top: 1px solid #242424; border-bottom: 1px solid #242424; display: grid; gap: 4px; }
.purchase-note strong { font-family: 'Space Grotesk'; font-size: .92rem; color: var(--text); }
.purchase-note span { color: #777; font-size: .85rem; }
.compact-products .product-card { min-height: 350px; }
.plugin-pricing { grid-template-columns: repeat(2, 1fr); }
.price-card-ghost { background: linear-gradient(145deg, #101010, #0a0a0a); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.work-card { min-height: 340px; padding: 34px; border: 1px solid var(--line); background: #0d0d0d; display: flex; flex-direction: column; justify-content: space-between; }
.work-card-featured { background: radial-gradient(circle at 85% 15%, rgba(255,122,0,.14), transparent 38%), #0d0d0d; }
.work-card-meta { display: flex; justify-content: space-between; gap: 16px; color: #666; font-size: .75rem; }
.work-card h3 { font-size: 2rem; margin-bottom: 14px; }
.work-card p { max-width: 560px; }
.work-card .text-link { display: inline-block; margin-top: 22px; }

@media (min-width: 981px) and (max-height: 850px) {
  .hero { min-height: 100svh; padding: 122px 0 56px; }
  .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(3rem, 4.7vw, 4.475rem); }
  .hero-lead { margin-top: 20px; font-size: clamp(1rem, 1.25vw, 1.12rem); }
  .hero-actions { margin-top: 24px; }
  .hero-proof { margin-top: 30px; padding-top: 18px; }
}

@media (max-width: 980px) { .hero-layout { grid-template-columns: 1fr; } .hero h1 { max-width: 850px; } .work-grid { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .plugin-pricing { grid-template-columns: 1fr; } }


/* v4: keep homepage CTA visible on common laptop/desktop viewports */
@media (min-width: 981px) and (max-height: 900px) {
  .hero {
    min-height: 100svh;
    padding: 118px 0 44px;
    align-items: flex-start;
  }

  .hero-layout {
    align-items: start;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 4.175vw, 4.15rem);
    line-height: 1.01;
    max-width: 720px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 660px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-proof {
    margin-top: 24px;
    padding-top: 16px;
  }
}

/* v6: RWExec Reservations product page */
.reservations-hero {
  padding-bottom: 70px;
}

.reservations-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 54px;
  align-items: center;
}

.reservations-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
}

.reservations-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.reservations-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reservations-hero-actions .button:not(.button-primary) {
  border-color: #343434;
  background: #131313;
  color: #fff;
}

.reservations-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reservations-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid #303030;
  border-radius: 999px;
  color: #a7a7a3;
  background: #111;
  font-size: .82rem;
  line-height: 1;
}

.reservations-purchase-card {
  padding: 30px;
  border: 1px solid #323232;
  border-radius: 12px;
  background: radial-gradient(circle at 90% 5%, rgba(255,122,0,.12), transparent 36%), #101010;
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.reservations-purchase-card .price {
  margin: 18px 0;
}

.reservations-purchase-card .price strong {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

.reservations-purchase-card ul {
  margin: 22px 0 26px;
  padding: 20px 0 0;
  border-top: 1px solid #272727;
  list-style: none;
}

.reservations-purchase-card li {
  margin: 10px 0;
  color: #bcbcb8;
  font-size: .9rem;
}

.reservations-purchase-card .button {
  width: 100%;
}

.reservation-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.reservation-feature {
  min-height: 185px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.reservation-feature h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.reservation-feature p {
  margin: 0;
  font-size: .91rem;
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #232323;
  color: #aaa9a5;
  text-align: left;
  vertical-align: middle;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  width: 180px;
  text-align: center;
}

.comparison-table thead th {
  background: #121212;
  color: #fff;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: .88rem;
  letter-spacing: .02em;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody tr:hover td {
  background: #101010;
}

.comparison-yes,
.comparison-business {
  color: var(--orange) !important;
  font-weight: 700;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  align-items: stretch;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  margin-top: 24px;
  border: 1px solid #303030;
  border-radius: 999px;
  background: #0e0e0e;
}

.billing-toggle button {
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8f8f8b;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.billing-toggle button:hover {
  color: #fff;
}

.billing-toggle button.is-active {
  background: var(--orange);
  color: #080808;
}

.purchase-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.purchase-plan--featured {
  border-color: rgba(255,122,0,.8);
  background: radial-gradient(circle at 90% 0%, rgba(255,122,0,.12), transparent 40%), #0d0d0d;
  box-shadow: inset 0 3px 0 var(--orange);
}

.purchase-plan--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--orange);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.plan-sites {
  margin: 11px 0 0;
  font-size: 2rem;
  line-height: 1.05;
}

.plan-name {
  display: block;
  margin-top: 8px;
  color: #7b7b77;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.purchase-plan .price {
  margin: 24px 0 0;
}

.purchase-plan .price strong {
  color: #fff;
  font-size: clamp(2.2rem, 3vw, 2.9rem);
  line-height: 1;
}

.billing-saving {
  display: block;
  min-height: 22px;
  margin-top: 7px;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
}

.purchase-plan > p {
  min-height: 72px;
  margin-top: 18px;
  font-size: .9rem;
}

.purchase-plan ul {
  flex: 1;
  margin: 22px 0;
  padding: 20px 0 0;
  border-top: 1px solid #242424;
  list-style: none;
}

.purchase-plan li {
  padding: 7px 0;
  color: #bcbcb8;
  font-size: .88rem;
}

.purchase-plan .button {
  width: 100%;
  margin-top: auto;
}

.purchase-plan .button[aria-disabled="true"] {
  opacity: .58;
  cursor: default;
}

.purchase-plan .button[aria-disabled="true"]:hover {
  transform: none;
}

#reservations-pricing .pricing-note {
  margin-top: 20px;
  color: #62625f;
  text-align: center;
}

.licensing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.licensing-step {
  min-height: 160px;
  padding: 24px;
  background: #0d0d0d;
}

.licensing-step strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Space Grotesk', Inter, sans-serif;
}

.licensing-step span {
  color: var(--muted);
  font-size: .89rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-item {
  min-height: 180px;
  padding: 26px;
  background: #0d0d0d;
}

.faq-item h3 {
  margin-bottom: 11px;
  font-size: 1.15rem;
}

.faq-item p {
  font-size: .9rem;
}

.faq-item code {
  color: #d0d0cd;
}

.reservations-final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.reservations-final-cta h2 {
  max-width: 790px;
}

.reservations-final-cta p {
  margin-top: 18px;
}

.reservations-final-cta .button {
  flex: none;
}

@media (max-width: 980px) {
  .reservations-hero-grid {
    grid-template-columns: 1fr;
  }

  .reservations-purchase-card {
    max-width: 640px;
  }

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

  .purchase-plan--featured {
    order: -1;
  }

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

@media (max-width: 680px) {
  .reservations-hero {
    padding-bottom: 58px;
  }

  .reservations-hero-grid {
    gap: 34px;
  }

  .reservations-purchase-card,
  .purchase-plan,
  .reservation-feature,
  .faq-item,
  .licensing-step {
    padding: 22px;
  }

  .reservation-feature-grid,
  .purchase-grid,
  .licensing-steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .purchase-plan > p {
    min-height: 0;
  }

  .billing-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .billing-toggle button {
    padding-inline: 10px;
  }

  .reservations-final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .reservations-final-cta .button {
    width: 100%;
  }
}


/* v7: launch review contact/footer refinements */
.contact-panel { border: 1px solid var(--line); background: #0d0d0d; padding: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-panel h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.contact-panel p { margin: 18px 0 28px; max-width: 620px; }
.contact-panel .eyebrow { margin-bottom: 16px; }
.footer-bottom a { color: #777773; transition: color .2s ease; }
.footer-bottom a:hover { color: #fff; }
