:root {
  --teal: #0F4C5C;
  --teal-dark: #0B3742;
  --teal-light: #DDECEF;
  --amber: #D9922E;
  --amber-light: #F3D09F;
  --cream: #F7F4ED;
  --cream-deep: #EEE8DC;
  --ink: #111820;
  --ink-soft: #27333C;
  --muted: #66727A;
  --line: rgba(17, 24, 32, 0.14);
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.16);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--amber);
  color: var(--ink);
  transform: translateY(-150%);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 24, 32, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
}
.brand-mark img { width: 38px; height: 38px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-copy strong { color: var(--cream); font-size: 1.15rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand-copy small { color: var(--amber-light); margin-top: 4px; font-size: 0.72rem; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav > a:not(.button) {
  text-decoration: none;
  color: rgba(247,244,237,0.82);
  font-size: 0.94rem;
  font-weight: 650;
}
.primary-nav > a:not(.button):hover { color: var(--white); }
.menu-button { display: none; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible { outline: 3px solid var(--amber-light); outline-offset: 3px; }
.button-amber { background: var(--amber); color: var(--ink); box-shadow: 0 10px 30px rgba(217,146,46,0.18); }
.button-amber:hover { background: #E3A044; }
.button-outline { border-color: rgba(17,24,32,0.22); color: var(--ink); background: transparent; }
.button-outline:hover { border-color: var(--teal); color: var(--teal); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: 0.9rem; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--teal); text-decoration: none; }
.text-link:hover { gap: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(15,76,92,0.92), rgba(17,24,32,0.98) 68%),
    var(--ink);
  padding: 98px 0 88px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,146,46,.7), transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; opacity: .28; }
.hero-glow-one { width: 520px; height: 520px; background: var(--teal); top: -280px; left: -100px; }
.hero-glow-two { width: 420px; height: 420px; background: var(--amber); bottom: -330px; right: 5%; opacity: .12; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: 70px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  font-size: .76rem;
}
.hero h1, .section-heading h2, .included-intro h2, .audience-section h2, .faq-intro h2, .final-cta h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(3.7rem, 7vw, 6.5rem); max-width: 680px; }
.hero-lead { margin: 28px 0 0; max-width: 650px; font-size: clamp(1.08rem, 2vw, 1.28rem); color: rgba(247,244,237,.82); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero .text-link { color: var(--cream); }
.hero-proof { list-style: none; display: flex; gap: 22px; padding: 0; margin: 36px 0 0; flex-wrap: wrap; color: rgba(247,244,237,.75); font-size: .9rem; }
.hero-proof li { position: relative; padding-left: 19px; }
.hero-proof li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 900; }

.hero-visual { position: relative; padding: 34px 0 36px 20px; }
.browser-shell { overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; box-shadow: 0 34px 100px rgba(0,0,0,.4); transform: rotate(1.2deg); }
.browser-bar { height: 48px; display: grid; grid-template-columns: 80px 1fr 80px; align-items: center; padding: 0 14px; background: #F3F2EF; border-bottom: 1px solid #DDD9D0; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: #C7C1B6; }
.browser-address { justify-self: center; width: min(260px, 100%); height: 25px; border-radius: 7px; background: #FFFFFF; color: #7C7A73; display: grid; place-items: center; font-size: .72rem; border: 1px solid #E4E0D8; }
.demo-site { min-height: 465px; background: #F6F1E7; color: #182225; padding: 28px; position: relative; overflow: hidden; }
.demo-site::after { content: ""; position: absolute; width: 310px; height: 310px; border-radius: 50%; background: #D48E31; right: -90px; top: 55px; opacity: .9; }
.demo-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.demo-logo { font-weight: 900; letter-spacing: .08em; font-size: .82rem; display: flex; align-items: center; gap: 8px; }
.demo-logo span { width: 18px; height: 18px; border-radius: 50%; background: #143D47; }
.demo-links { display: flex; gap: 12px; }
.demo-links i { display: block; width: 35px; height: 5px; background: rgba(17,24,32,.28); border-radius: 5px; }
.demo-hero { position: relative; z-index: 2; width: 62%; padding-top: 72px; }
.demo-kicker { width: 105px; height: 8px; border-radius: 8px; background: #D48E31; margin-bottom: 20px; }
.demo-heading { width: 100%; height: 28px; border-radius: 5px; background: #143D47; margin-bottom: 8px; }
.demo-heading.short { width: 72%; }
.demo-copy { width: 86%; height: 8px; border-radius: 5px; background: rgba(17,24,32,.25); margin-top: 22px; }
.demo-copy.short { width: 64%; margin-top: 8px; }
.demo-buttons { display: flex; gap: 10px; margin-top: 28px; }
.demo-buttons span { width: 102px; height: 34px; border-radius: 18px; background: #143D47; }
.demo-buttons span + span { background: transparent; border: 2px solid rgba(17,24,32,.28); }
.demo-cards { position: relative; z-index: 2; margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.demo-cards > div { padding: 16px; background: rgba(255,255,255,.78); border: 1px solid rgba(17,24,32,.08); border-radius: 12px; }
.demo-cards b { display: block; width: 26px; height: 26px; border-radius: 8px; background: #D48E31; margin-bottom: 12px; }
.demo-cards span, .demo-cards em { display: block; height: 6px; border-radius: 5px; background: rgba(17,24,32,.28); margin-top: 7px; }
.demo-cards em { width: 70%; opacity: .65; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 14px; background: rgba(247,244,237,.96); color: var(--ink); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7); }
.floating-card strong { display: block; font-size: .88rem; }
.floating-card small, .floating-card span { display: block; color: var(--muted); font-size: .74rem; }
.floating-card-top { right: -18px; top: 8px; }
.floating-card-bottom { left: -14px; bottom: 0; display: block; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #37A56C; box-shadow: 0 0 0 6px rgba(55,165,108,.12); }

.trust-strip { background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 26px 24px; border-left: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 1px solid var(--line); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: .94rem; }
.trust-grid span { color: var(--muted); font-size: .82rem; margin-top: 3px; }

.section { padding: 105px 0; }
.section-soft { background: var(--cream-deep); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.narrow { max-width: 700px; }
.section-heading h2, .included-intro h2, .audience-section h2, .faq-intro h2, .final-cta h2 { font-size: clamp(2.45rem, 5vw, 4.2rem); }
.section-heading > p:last-child, .included-intro > p, .faq-intro > p, .audience-section > div > p { color: var(--muted); font-size: 1.05rem; margin-top: 20px; }
.section-dark .section-heading > p:last-child, .section-dark .audience-section p { color: rgba(247,244,237,.7); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 7px; color: rgba(247,244,237,.68); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-card { position: relative; padding: 34px 28px 38px; border-left: 1px solid var(--line); }
.step-card:last-child { border-right: 1px solid var(--line); }
.step-number { display: inline-flex; color: var(--amber); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.step-card h3 { margin: 46px 0 14px; font-size: 1.25rem; line-height: 1.2; letter-spacing: -.02em; }
.step-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.concept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.concept-card { min-height: 485px; border-radius: var(--radius); padding: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); overflow: hidden; }
.concept-browser { height: 100%; min-height: 455px; border-radius: 15px; padding: 30px; position: relative; overflow: hidden; }
.concept-label { display: inline-block; padding: 7px 10px; border-radius: 999px; font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; font-weight: 850; }
.concept-wordmark { margin-top: 55px; font-size: .78rem; font-weight: 900; letter-spacing: .18em; }
.concept-browser h3 { position: relative; z-index: 2; font-size: 2.1rem; line-height: 1.03; letter-spacing: -.045em; margin: 24px 0; }
.concept-cta { position: relative; z-index: 2; display: inline-flex; padding: 10px 16px; border-radius: 999px; font-weight: 800; font-size: .78rem; }
.concept-photo { position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -72px; bottom: -70px; }
.concept-photo::before, .concept-photo::after { content: ""; position: absolute; border-radius: 50%; }
.concept-photo::before { width: 140px; height: 140px; left: -62px; top: -20px; }
.concept-photo::after { width: 95px; height: 95px; left: 15px; top: -105px; }
.concept-home .concept-browser { background: #E9E4D7; color: #1B2A2B; }
.concept-home .concept-label { background: #1B4E55; color: #F6F0E5; }
.concept-home .concept-cta { background: #D78B36; color: #172125; }
.concept-photo-one { background: #1B4E55; }
.concept-photo-one::before { background: #D78B36; }
.concept-photo-one::after { background: #CABD9E; }
.concept-pro .concept-browser { background: #DCE8EA; color: #101A26; }
.concept-pro .concept-label { background: #101A26; color: #EDF5F6; }
.concept-pro .concept-cta { background: #B97531; color: #101A26; }
.concept-photo-two { background: #233B52; }
.concept-photo-two::before { background: #B97531; }
.concept-photo-two::after { background: #F3EEE5; }
.concept-local .concept-browser { background: #F1D7B4; color: #391C19; }
.concept-local .concept-label { background: #6B2D26; color: #FFF4E8; }
.concept-local .concept-cta { background: #2E5855; color: #FFF9ED; }
.concept-photo-three { background: #6B2D26; }
.concept-photo-three::before { background: #2E5855; }
.concept-photo-three::after { background: #E8A548; }

.included-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.included-intro { position: sticky; top: 118px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.feature-card { padding: 30px 28px 32px; border-bottom: 1px solid var(--line); }
.feature-card:nth-child(odd) { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.feature-card:nth-child(even) { border-right: 1px solid var(--line); }
.feature-icon { color: var(--amber); font-size: 1.35rem; font-weight: 900; }
.feature-card h3 { margin: 20px 0 10px; font-size: 1.12rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.comparison-wrap { overflow: hidden; }
.comparison-table { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.45); }
.comparison-row { display: grid; grid-template-columns: 1.6fr repeat(3, .8fr); }
.comparison-row > div { min-height: 62px; padding: 16px 18px; display: flex; align-items: center; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .9rem; }
.comparison-row > div:last-child { border-right: 0; }
.comparison-row:last-child > div { border-bottom: 0; }
.comparison-head { background: var(--ink); color: var(--cream); font-weight: 800; }
.comparison-row .highlight { background: rgba(15,76,92,.09); color: var(--teal-dark); font-weight: 800; }
.comparison-head .highlight { background: var(--teal); color: var(--cream); }

.pricing-section { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 950px; margin: 0 auto; align-items: stretch; }
.price-card { position: relative; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.52); }
.price-card.featured { background: var(--ink); color: var(--cream); box-shadow: var(--shadow); border-color: rgba(255,255,255,.06); }
.popular-tag { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: rgba(217,146,46,.17); color: var(--amber-light); font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.plan-name { margin: 0; color: var(--teal); text-transform: uppercase; letter-spacing: .13em; font-weight: 900; font-size: .75rem; }
.featured .plan-name { color: var(--amber); }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.price span { font-size: 4rem; font-weight: 900; letter-spacing: -.07em; line-height: 1; }
.price small { color: var(--muted); font-weight: 700; }
.featured .price small { color: rgba(247,244,237,.62); }
.plus-price { margin-top: 10px; font-weight: 850; color: var(--amber); }
.plus-price.muted { color: var(--teal); }
.plan-summary { color: var(--muted); margin: 24px 0; }
.featured .plan-summary { color: rgba(247,244,237,.7); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 30px; }
.price-card li { position: relative; padding: 10px 0 10px 25px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.featured li { border-color: rgba(255,255,255,.1); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 900; }
.featured .button-outline { color: var(--cream); border-color: rgba(255,255,255,.3); }
.price-note { margin: 18px 0 0; font-size: .76rem; color: var(--muted); text-align: center; }
.featured .price-note { color: rgba(247,244,237,.55); }
.scope-note { max-width: 950px; margin: 22px auto 0; border: 1px solid var(--line); border-radius: 15px; padding: 18px 20px; display: flex; gap: 14px; align-items: baseline; background: var(--cream-deep); }
.scope-note span { color: var(--muted); font-size: .9rem; }

.audience-section { padding: 90px 0; }
.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.audience-grid > div:first-child > p { color: rgba(247,244,237,.7); max-width: 590px; }
.audience-grid .button { margin-top: 18px; }
.audience-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.13); }
.audience-list span { padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,.13); font-weight: 750; }
.audience-list span:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.13); border-right: 1px solid rgba(255,255,255,.13); }
.audience-list span:nth-child(even) { border-right: 1px solid rgba(255,255,255,.13); }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro a { color: var(--teal); font-weight: 800; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 23px 44px 23px 0; font-weight: 820; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 18px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--teal); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { margin: -3px 40px 24px 0; color: var(--muted); }

.final-cta { background: var(--teal); color: var(--cream); padding: 82px 0; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.final-cta p:not(.eyebrow) { max-width: 650px; color: rgba(247,244,237,.72); }

.site-footer { background: #0A1015; color: var(--cream); padding: 68px 0 22px; }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child > p { max-width: 440px; color: rgba(247,244,237,.6); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { color: var(--amber); margin-bottom: 6px; }
.footer-links a { text-decoration: none; color: rgba(247,244,237,.68); font-size: .9rem; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: rgba(247,244,237,.46); font-size: .77rem; }

/* Internal pages */
.page-hero { background: var(--ink); color: var(--cream); padding: 82px 0 70px; }
.page-hero h1 { margin: 0; font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -.05em; line-height: 1; }
.page-hero p { color: rgba(247,244,237,.68); max-width: 720px; font-size: 1.08rem; }
.legal-content { padding: 80px 0 105px; }
.prose { width: min(100%, 820px); }
.prose h2 { margin: 45px 0 12px; font-size: 1.65rem; letter-spacing: -.02em; }
.prose h3 { margin: 30px 0 8px; }
.prose p, .prose li { color: #45525B; }
.prose a { color: var(--teal); font-weight: 750; }
.prose .notice { border-left: 4px solid var(--amber); background: var(--cream-deep); padding: 18px 20px; border-radius: 0 10px 10px 0; }
.start-section { min-height: 66vh; display: grid; align-items: center; padding: 80px 0; }
.start-card { max-width: 760px; margin: 0 auto; padding: 44px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.start-card .brand-mark { margin: 0 auto 18px; width: 64px; height: 64px; border-color: var(--line); }
.start-card h1 { margin: 0; font-size: clamp(2.3rem, 6vw, 4rem); letter-spacing: -.045em; line-height: 1.03; }
.start-card p { color: var(--muted); }
.start-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.form-status { display: none; margin-top: 22px; padding: 14px; background: var(--cream-deep); border-radius: 10px; color: var(--muted); }
.form-status.visible { display: block; }

@media (max-width: 1020px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; width: 100%; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card:nth-child(3), .step-card:nth-child(4) { border-top: 1px solid var(--line); }
  .concept-grid { grid-template-columns: 1fr 1fr; }
  .concept-card:last-child { grid-column: 1 / -1; }
  .included-grid, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .included-intro, .faq-intro { position: static; }
  .audience-grid { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .63rem; }
  .brand-mark { width: 40px; height: 40px; border-radius: 10px; }
  .brand-mark img { width: 34px; height: 34px; }
  .menu-button { display: flex; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.18); background: transparent; border-radius: 10px; padding: 10px; flex-direction: column; justify-content: center; gap: 4px; }
  .menu-button span:not(.sr-only) { width: 100%; height: 2px; background: var(--cream); border-radius: 2px; }
  .primary-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 20px 14px 24px; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.1); flex-direction: column; align-items: stretch; }
  .primary-nav.open { display: flex; }
  .primary-nav > a:not(.button) { display: block; padding: 9px 8px; }
  .hero { padding: 72px 0 66px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-visual { padding: 18px 0 38px; }
  .browser-shell { transform: none; }
  .browser-bar { grid-template-columns: 60px 1fr 20px; }
  .demo-site { min-height: 370px; padding: 20px; }
  .demo-hero { width: 74%; padding-top: 50px; }
  .demo-cards { margin-top: 50px; }
  .demo-cards > div { padding: 10px; }
  .floating-card-top { right: -3px; top: -8px; }
  .floating-card-bottom { left: 8px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { border-top: 0; }
  .section { padding: 78px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
  .step-card:first-child { border-top: 0; }
  .step-card h3 { margin-top: 24px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-card:last-child { grid-column: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 700px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 30px 24px; }
  .scope-note { flex-direction: column; gap: 4px; }
  .audience-list { grid-template-columns: 1fr; }
  .audience-list span { border-left: 1px solid rgba(255,255,255,.13); border-right: 1px solid rgba(255,255,255,.13); }
  .final-cta-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
  .final-cta .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .start-card { padding: 34px 22px; }
}

@media (max-width: 470px) {
  .brand-copy small { display: none; }
  .hero h1 { font-size: 3.15rem; }
  .floating-card { display: none; }
  .demo-site::after { width: 250px; height: 250px; right: -120px; }
  .demo-hero { width: 85%; }
  .footer-links { grid-template-columns: 1fr; }
}

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

/* ==========================================================
   Sightmade premium interaction system
   ========================================================== */

/* Separate moving gear from the fixed checkmark. */
.brand-mark.brandmark-animated {
  position: relative;
  isolation: isolate;
}
.brand-gear,
.brand-check {
  position: absolute;
  inset: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.brand-gear {
  background-image: url("/assets/spin-gear.png");
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.brand-check { background-image: url("/assets/spin-check.png"); }
.brand:hover .brand-gear,
.brand:focus-visible .brand-gear,
.brand-mark:hover .brand-gear { transform: rotate(150deg); }
.start-card .brand-gear,
.start-card .brand-check { inset: 6px; }

/* Page loader. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 43%, rgba(15,76,92,.52), transparent 34%),
    var(--ink);
  color: var(--cream);
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__inner { display: grid; justify-items: center; gap: 18px; }
.page-loader__mark { position: relative; width: 86px; height: 86px; }
.page-loader__gear,
.page-loader__check {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-loader__gear {
  background-image: url("/assets/loader-gear.png");
  animation: sightmade-loader-spin 1.15s linear infinite;
}
.page-loader__check { background-image: url("/assets/spin-check.png"); inset: 8px; }
.page-loader p { margin: 0; color: rgba(247,244,237,.7); font-weight: 750; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; }
@keyframes sightmade-loader-spin { to { transform: rotate(360deg); } }

/* Scroll progress and condensed sticky navigation. */
.scroll-progress {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  pointer-events: none;
}
.site-header,
.header-inner,
.brand-mark,
.brand-copy strong,
.brand-copy small { transition: min-height .25s ease, width .25s ease, height .25s ease, font-size .25s ease, box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(0,0,0,.24); background: rgba(17,24,32,.97); }
.site-header.is-scrolled .header-inner { min-height: 68px; }
.site-header.is-scrolled .brand-mark { width: 39px; height: 39px; }
.site-header.is-scrolled .brand-copy strong { font-size: 1.04rem; }
.site-header.is-scrolled .brand-copy small { font-size: .66rem; }
.primary-nav > a.active:not(.button) { color: var(--amber-light); }
.primary-nav > a.active:not(.button)::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 5px;
  border-radius: 2px;
  background: var(--amber);
}

/* Scroll-driven bottom-right gear. */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 170;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(217,146,46,.55);
  border-radius: 50%;
  background: rgba(247,244,237,.96);
  box-shadow: 0 16px 44px rgba(17,24,32,.26);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, border-color .25s ease;
}
.back-to-top.is-visible { opacity: .96; visibility: visible; transform: none; }
.back-to-top:hover { border-color: var(--amber); transform: translateY(-3px); }
.back-to-top__gear,
.back-to-top__check {
  position: absolute;
  inset: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.back-to-top__gear { background-image: url("/assets/spin-gear.png"); will-change: transform; }
.back-to-top__check { background-image: url("/assets/spin-check.png"); }

/* Reveal polish. Content remains visible until JS explicitly enables it. */
.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s ease var(--reveal-delay, 0ms);
}
.reveal-enabled .reveal-item.is-revealed { opacity: 1; transform: none; }

/* Better mobile nav states. */
.menu-button span:not(.sr-only) { transition: transform .22s ease, opacity .22s ease; }
.menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* FAQ live search. */
.faq-search { position: relative; margin: 0 0 22px; }
.faq-search > span { position: absolute; left: 16px; top: 13px; color: var(--teal); font-weight: 900; font-size: 1.12rem; }
.faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 108px 12px 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
}
.faq-search input:focus { outline: 3px solid var(--amber-light); border-color: var(--amber); }
.faq-search small { position: absolute; right: 15px; top: 15px; color: var(--muted); font-size: .76rem; }
.faq-list details[hidden] { display: none; }

/* Fixed mobile preview action. */
.mobile-preview-cta { display: none; }

/* ==========================================================
   Live work / Ven company sites
   ========================================================== */
.portfolio-teaser { background: #E9E3D7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.portfolio-teaser-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.portfolio-teaser-copy h2 { margin: 0; font-size: clamp(2.45rem,5vw,4.1rem); letter-spacing: -.045em; line-height: 1.02; }
.portfolio-teaser-copy > p:not(.eyebrow) { color: var(--muted); margin: 22px 0 28px; }
.portfolio-teaser-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.portfolio-teaser-card {
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 60px rgba(17,24,32,.14);
}
.portfolio-teaser-card img { width: 100%; height: 52px; object-fit: contain; object-position: left center; }
.portfolio-teaser-card p { color: rgba(247,244,237,.62); font-size: .82rem; margin: 16px 0 0; }
.portfolio-teaser-card a { display: inline-flex; margin-top: 14px; color: var(--amber-light); font-weight: 800; text-decoration: none; font-size: .84rem; }

.work-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 88px;
  color: var(--cream);
  background: linear-gradient(128deg, var(--ink), var(--teal-dark));
}
.work-hero::after { content: ""; position: absolute; width: 540px; height: 540px; border: 1px solid rgba(217,146,46,.17); border-radius: 50%; right: -160px; top: -250px; box-shadow: 0 0 0 80px rgba(217,146,46,.025), 0 0 0 160px rgba(217,146,46,.018); }
.work-hero .container { position: relative; z-index: 1; }
.work-hero h1 { margin: 0; max-width: 900px; font-size: clamp(3.15rem,7vw,6.1rem); line-height: .98; letter-spacing: -.055em; }
.work-hero .lead { max-width: 760px; margin: 28px 0 0; color: rgba(247,244,237,.76); font-size: 1.16rem; }
.work-hero-note { max-width: 780px; margin-top: 34px; padding: 15px 18px; border-left: 3px solid var(--amber); background: rgba(255,255,255,.06); color: rgba(247,244,237,.68); font-size: .88rem; }

.portfolio-stack { display: grid; gap: 42px; }
.portfolio-entry {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
  gap: 50px;
  align-items: center;
  padding: 34px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  box-shadow: 0 26px 70px rgba(17,24,32,.09);
}
.portfolio-entry:nth-child(even) .site-window { order: 2; }
.portfolio-entry:nth-child(even) .portfolio-entry-copy { order: 1; }
.portfolio-entry-copy .site-category { color: var(--teal); font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.portfolio-entry-copy h2 { margin: 12px 0 15px; font-size: clamp(2.2rem,4vw,3.45rem); letter-spacing: -.04em; line-height: 1.04; }
.portfolio-entry-copy > p { color: var(--muted); }
.portfolio-entry-copy ul { list-style: none; padding: 0; margin: 25px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.portfolio-entry-copy li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: .88rem; }
.portfolio-entry-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 900; }
.portfolio-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.portfolio-actions .text-link { padding: 10px 4px; }

.site-window { overflow: hidden; border-radius: 19px; border: 1px solid rgba(17,24,32,.18); background: #151925; box-shadow: 0 28px 80px rgba(17,24,32,.23); }
.site-window__bar { height: 43px; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; padding: 0 13px; background: #EDE9E1; border-bottom: 1px solid #D5D0C6; }
.site-window__dots { display: flex; gap: 6px; }
.site-window__dots i { display: block; width: 8px; height: 8px; border-radius: 50%; background: #B7B0A4; }
.site-window__address { justify-self: center; min-width: 190px; max-width: 290px; width: 70%; padding: 4px 12px; text-align: center; color: #777166; background: white; border: 1px solid #DDD7CD; border-radius: 7px; font-size: .68rem; }
.site-window__body { min-height: 430px; padding: 24px; position: relative; overflow: hidden; }
.site-window__body::before { content: ""; position: absolute; inset: 0; opacity: .18; background: radial-gradient(circle at 82% 20%, var(--amber), transparent 29%); }
.site-window--scdp .site-window__body { background: #181A26; }
.site-window--cic .site-window__body { background: #181A26; }
.site-window__logo { position: relative; z-index: 1; height: 55px; width: 100%; object-fit: contain; object-position: left center; }
.site-window__hero { position: relative; z-index: 1; margin-top: 52px; max-width: 79%; }
.site-window__hero small { color: #C8A860; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; font-size: .62rem; }
.site-window__hero h3 { margin: 13px 0; color: white; font-family: Georgia, serif; font-size: clamp(1.8rem,3.6vw,3rem); line-height: 1.05; }
.site-window__hero p { color: rgba(255,255,255,.62); font-size: .8rem; max-width: 430px; }
.site-window__buttons { display: flex; gap: 9px; margin-top: 22px; }
.site-window__buttons span { height: 31px; width: 105px; border-radius: 6px; background: #C8A860; }
.site-window__buttons span + span { width: 82px; background: transparent; border: 1px solid rgba(255,255,255,.25); }
.site-window__tiles { position: relative; z-index: 1; margin-top: 42px; display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.site-window__tiles div { height: 54px; border-radius: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); }

.work-proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.work-proof { padding: 26px; background: var(--cream); }
.work-proof strong { display: block; font-size: 1rem; }
.work-proof span { display: block; margin-top: 5px; color: var(--muted); font-size: .83rem; }

.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.capability-card { padding: 28px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.55); }
.capability-card span { color: var(--amber); font-size: 1.4rem; }
.capability-card h3 { margin: 15px 0 8px; font-size: 1.15rem; }
.capability-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.company-services { background: var(--ink); color: var(--cream); }
.company-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.company-service { padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(255,255,255,.035); }
.company-service small { color: var(--amber); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.company-service h3 { margin: 13px 0 10px; font-size: 1.45rem; }
.company-service p { color: rgba(247,244,237,.62); font-size: .88rem; }
.company-service a { color: var(--amber-light); font-weight: 800; text-decoration: none; }

@media (max-width: 1020px) {
  .portfolio-teaser-grid { grid-template-columns: 1fr; gap: 38px; }
  .portfolio-entry { grid-template-columns: 1fr; }
  .portfolio-entry:nth-child(even) .site-window,
  .portfolio-entry:nth-child(even) .portfolio-entry-copy { order: initial; }
  .work-proof-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid,
  .company-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body.has-mobile-cta { padding-bottom: 78px; }
  .mobile-preview-cta {
    display: block;
    position: fixed;
    z-index: 160;
    left: 12px;
    right: 12px;
    bottom: 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-preview-cta .button { width: 100%; min-height: 52px; box-shadow: 0 14px 38px rgba(17,24,32,.28); }
  .mobile-preview-cta.is-suppressed { opacity: 0; transform: translateY(90px); pointer-events: none; }
  .back-to-top { width: 48px; height: 48px; right: 16px; bottom: 78px; }
  .portfolio-teaser-cards { grid-template-columns: 1fr; }
  .work-hero { padding: 78px 0 65px; }
  .portfolio-entry { padding: 19px; gap: 30px; border-radius: 20px; }
  .portfolio-entry-copy ul { grid-template-columns: 1fr; }
  .site-window__body { min-height: 345px; padding: 18px; }
  .site-window__hero { max-width: 92%; margin-top: 42px; }
  .site-window__tiles { margin-top: 31px; }
  .work-proof-grid,
  .capability-grid,
  .company-services-grid { grid-template-columns: 1fr; }
  .faq-search input { padding-right: 16px; }
  .faq-search small { position: static; display: block; margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__gear { animation: none; }
  .brand-gear,
  .back-to-top__gear { transition: none !important; transform: none !important; }
  .reveal-enabled .reveal-item { opacity: 1 !important; transform: none !important; }
}

@media print {
  .page-loader,
  .scroll-progress,
  .back-to-top,
  .mobile-preview-cta { display: none !important; }
}

.portfolio-entry-copy h2 { overflow-wrap: anywhere; }
.portfolio-entry:nth-child(2) .portfolio-entry-copy h2 { font-size: clamp(1.9rem, 3.25vw, 2.95rem); }

/* Final SCDP-inspired interaction details. */
::selection { background: var(--amber); color: var(--ink); }

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

.brand:hover .brand-gear,
.brand:focus-visible .brand-gear,
.brand-mark:hover .brand-gear {
  animation: sightmade-cog-spin 1.8s linear infinite;
}

.button::before {
  content: "";
  width: 0;
  height: 15px;
  flex: 0 0 auto;
  margin-right: 0;
  opacity: 0;
  background: url("/assets/spin-gear.png") center / contain no-repeat;
  transition: width .2s ease, margin-right .2s ease, opacity .2s ease;
}
.button:hover::before,
.button:focus-visible::before {
  width: 15px;
  margin-right: 8px;
  opacity: .9;
  animation: sightmade-cog-spin 1.5s linear infinite;
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(217,146,46,.24);
  border-radius: 50%;
  pointer-events: none;
  transition: border-color .2s ease;
}
.back-to-top:hover::after { border-color: var(--amber); }
.back-to-top:hover .back-to-top__gear { animation: sightmade-cog-spin 1.6s linear infinite; }

/* The SCDP loading asset already contains the clock hands; a second check overlay would clutter it. */
.page-loader__check { display: none; }
.page-loader__gear { animation-duration: 2.2s; }

@media (prefers-reduced-motion: reduce) {
  .brand-gear,
  .button::before,
  .back-to-top__gear { animation: none !important; }
  .button:hover::before,
  .button:focus-visible::before { width: 15px; margin-right: 8px; }
}

/* Simple Netlify form pages */
.simple-form { display: grid; gap: 12px; max-width: 680px; }
.simple-form label { font-weight: 800; color: var(--ink); }
.simple-form input,
.simple-form textarea,
.simple-form select { width: 100%; border: 1px solid rgba(17,24,32,.22); border-radius: 12px; background: #fff; color: var(--ink); padding: 13px 14px; font: inherit; }
.simple-form input:focus,
.simple-form textarea:focus,
.simple-form select:focus { outline: 3px solid rgba(15,76,92,.22); border-color: var(--teal); }
.simple-form .button { justify-self: start; margin-top: 6px; }
.hidden-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ==========================================================
   Sightmade dark redesign — permanent theme
   ========================================================== */
:root {
  --teal: #2b6c73;
  --teal-dark: #102f37;
  --teal-light: #6fb5bb;
  --amber: #d78f2e;
  --amber-light: #efc47e;
  --cream: #efe7d7;
  --cream-deep: #201c13;
  --ink: #0d151e;
  --ink-soft: #c9c1b2;
  --muted: #9e9688;
  --line: rgba(239, 231, 215, 0.14);
  --white: #f7f1e5;
  --shadow: none;
}
html { color-scheme: dark; }
body { color: var(--cream); background: #0d151e; }
.browser-shell,.floating-card,.portfolio-teaser-card,.price-card.featured,.start-card,.portfolio-entry,.site-window,.back-to-top,.mobile-preview-cta .button { box-shadow: none !important; }
.site-header { background: rgba(8,14,20,.96); border-bottom-color: var(--line); }
.site-header.is-scrolled { background: rgba(8,14,20,.985); box-shadow: none; }
.brand-copy strong { color: var(--cream); }
.brand-copy small { color: var(--amber-light); }
.brand-mark { background: var(--cream); border-color: rgba(239,231,215,.22); }
.primary-nav > a:not(.button) { color: rgba(239,231,215,.78); }
.primary-nav > a:not(.button):hover { color: var(--cream); }
.button-amber { background: var(--amber); color: #101820; box-shadow: none; }
.button-amber:hover { background: #e19b3a; }
.button-outline { color: var(--cream); border-color: rgba(239,231,215,.24); background: transparent; }
.button-outline:hover { color: var(--amber-light); border-color: var(--amber); }
.text-link { color: var(--teal-light); }
.hero { background: linear-gradient(115deg,#0e414c 0%,#0d202a 43%,#0d151e 78%); color: var(--cream); }
.hero::after { background: linear-gradient(90deg,transparent,rgba(215,143,46,.62),transparent); }
.hero-glow { display: none !important; }
.hero-lead { color: rgba(239,231,215,.76); }
.hero-proof { color: rgba(239,231,215,.68); }
.hero .text-link { color: var(--cream); }
.browser-shell { background: #101821; border: 1px solid rgba(239,231,215,.22); transform: rotate(.55deg); }
.browser-bar { background: #161912; border-bottom-color: rgba(239,231,215,.14); }
.browser-dots span { background: #777266; }
.browser-address { background: #0f1821; color: #8f887b; border-color: rgba(239,231,215,.13); }
.demo-site { background: #1f1b11; color: var(--cream); }
.demo-site::after { background: #b97622; opacity: .9; }
.demo-logo span,.demo-heading,.demo-buttons span { background: #16515a; }
.demo-links i,.demo-copy,.demo-cards span,.demo-cards em { background: rgba(239,231,215,.18); }
.demo-buttons span + span { background: transparent; border-color: rgba(239,231,215,.32); }
.demo-cards > div { background: #171914; border-color: rgba(239,231,215,.12); }
.demo-cards b { background: var(--amber); }
.floating-card { background: #211d14; color: var(--cream); border-color: rgba(239,231,215,.15); }
.floating-card small,.floating-card span { color: var(--muted); }
.trust-strip { background: #211d14; border-color: var(--line); }
.trust-grid > div { border-color: var(--line); }
.trust-grid strong { color: var(--cream); }
.trust-grid span { color: var(--muted); }
.section { background: #101922; }
.section-soft { background: #201c13; }
.section-dark { background: #0b131c; }
.pricing-section { background: #1d1a12; }
.portfolio-teaser { background: #211e15; border-color: var(--line); }
.section-heading > p:last-child,.included-intro > p,.faq-intro > p,.audience-section > div > p,.step-card p,.feature-card p,.plan-summary,.price-note,.scope-note span,details p,.portfolio-teaser-copy > p:not(.eyebrow),.portfolio-entry-copy > p,.capability-card p,.work-proof span,.prose p,.prose li,.start-card p { color: var(--muted); }
.steps-grid,.step-card,.features-grid,.feature-card,.comparison-table,.comparison-row > div,.price-card,.scope-note,.faq-list,details,.portfolio-entry,.capability-card,.work-proof-grid,.work-proof,.company-service { border-color: var(--line); }
.concept-card { background: #151d25; border-color: rgba(239,231,215,.15); }
.concept-home .concept-browser { background: #282414; color: var(--cream); }
.concept-pro .concept-browser { background: #183033; color: var(--cream); }
.concept-local .concept-browser { background: #5a3710; color: var(--cream); }
.concept-home .concept-label { background: #16515a; }
.concept-pro .concept-label { background: #0e1d2c; }
.concept-local .concept-label { background: #742921; }
.portfolio-teaser-card { background: #0d151e; border-color: rgba(239,231,215,.14); }
.portfolio-teaser-card p { color: var(--muted); }
.portfolio-teaser-card a { color: var(--teal-light); }
.included-intro h2,.section-heading h2,.audience-section h2,.faq-intro h2,.final-cta h2,.portfolio-teaser-copy h2,.work-hero h1,.portfolio-entry-copy h2,.start-card h1,.page-hero h1 { color: var(--cream); }
.feature-card h3,.step-card h3,.price-card,.price-card h3,.faq-list summary,.portfolio-entry-copy li,.capability-card h3,.work-proof strong { color: var(--cream); }
.comparison-table { background: #151a17; }
.comparison-head { background: #090f16; }
.comparison-row .highlight { background: rgba(43,108,115,.22); color: var(--teal-light); }
.comparison-head .highlight { background: #16434a; color: var(--cream); }
.price-card { background: #171912; border-color: rgba(239,231,215,.15); }
.price-card.featured { background: #0d151e; border-color: rgba(239,231,215,.16); }
.plan-name,.plus-price.muted { color: var(--teal-light); }
.featured .plan-name,.plus-price { color: var(--amber); }
.price small,.featured .price small { color: var(--muted); }
.price-card li { border-color: rgba(239,231,215,.11); }
.scope-note { background: #121a21; }
.addon-callout { margin: -6px 0 28px; padding: 16px 17px; border: 1px solid rgba(215,143,46,.48); border-radius: 14px; background: rgba(215,143,46,.08); }
.addon-callout small,.addon-callout strong,.addon-callout span { display: block; }
.addon-callout small { color: var(--amber); text-transform: uppercase; letter-spacing: .1em; font-size: .66rem; font-weight: 900; }
.addon-callout strong { margin-top: 4px; color: var(--cream); font-size: 1.02rem; }
.addon-callout span { margin-top: 4px; color: var(--muted); font-size: .82rem; }
.audience-section { background: #0a121a; }
.final-cta { background: #143d45; }
.site-footer { background: #080d12; }
.page-hero,.work-hero { background: linear-gradient(120deg,#0d151e,#102e36); }
.work-hero::after { display: none; }
.legal-content,.start-section { background: #101922; }
.prose a,.faq-intro a { color: var(--teal-light); }
.prose .notice { background: #201c13; border-left-color: var(--amber); }
.start-card { background: #121b24; border-color: rgba(239,231,215,.15); }
.form-status { background: #201c13; color: var(--muted); }
.simple-form label { color: var(--cream); }
.simple-form input,.simple-form textarea,.simple-form select { background: #0c141c; color: var(--cream); border-color: rgba(239,231,215,.2); }
.live-brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.live-brand-card { display: flex; flex-direction: column; min-height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #111a23; }
.live-brand-card img { width: 100%; height: 74px; object-fit: contain; object-position: left center; }
.live-brand-card h2 { margin: 25px 0 10px; font-size: clamp(1.75rem,3vw,2.5rem); }
.live-brand-card p { color: var(--muted); }
.live-brand-card ul { margin: 12px 0 26px; padding-left: 20px; color: var(--ink-soft); }
.live-brand-card .button { margin-top: auto; align-self: flex-start; }
.lang-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 11px; border: 1px solid rgba(239,231,215,.2); border-radius: 999px; background: transparent; color: var(--amber-light); font: inherit; font-size: .78rem; font-weight: 850; cursor: pointer; }
.lang-toggle:hover { border-color: var(--amber); color: var(--cream); }
.lang-modal { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 20px; background: rgba(5,9,13,.82); backdrop-filter: blur(8px); }
.lang-modal[hidden] { display: none; }
.lang-modal__card { width: min(100%,440px); padding: 34px; border: 1px solid rgba(239,231,215,.18); border-radius: 20px; background: #111a23; text-align: center; }
.lang-modal__brand { color: var(--cream); font-size: 1.45rem; font-weight: 900; }
.lang-modal__byline { margin-top: 3px; color: var(--amber-light); font-size: .76rem; }
.lang-modal__rule { width: 54px; height: 2px; margin: 23px auto; background: var(--amber); }
.lang-modal__title { margin: 0; color: var(--cream); font-size: 1.55rem; }
.lang-modal__subtitle { margin: 5px 0 24px; color: var(--muted); font-size: 1.1rem; }
.lang-modal__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lang-modal__button { min-height: 50px; border: 1px solid rgba(239,231,215,.2); border-radius: 999px; background: transparent; color: var(--cream); font: inherit; font-weight: 850; cursor: pointer; }
.lang-modal__button--primary { background: var(--amber); color: #101820; border-color: var(--amber); }
.lang-modal__button:hover { border-color: var(--amber); }
.optout-card { max-width: 720px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #121b24; }
.optout-card .button { margin-top: 14px; }
.reveal-enabled .reveal-item,.reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
.back-to-top { background: var(--cream); border-color: var(--amber); }
@media (max-width:1020px) { .live-brand-grid { grid-template-columns: 1fr; } }
@media (max-width:760px) { .primary-nav { background: #080e14; } .lang-toggle { width: 100%; } .lang-modal__buttons { grid-template-columns: 1fr; } }
.work-proof,.capability-card { background: #111a23; }
.faq-search input { background: #0c141c; color: var(--cream); border-color: rgba(239,231,215,.2); }
.faq-search input::placeholder { color: #817a6e; }
.faq-search > span { color: var(--amber); }
