:root {
  --ink: #000000;
  --ink-soft: #000000;
  --panel: #080808;
  --panel-light: #111111;
  --ivory: #ffffff;
  --muted: #8f8f8f;
  --muted-2: #676767;
  --champagne: #dd1e4b;
  --champagne-2: #ff214f;
  --jade: #dd1e4b;
  --coral: #dd1e4b;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: none;
  mix-blend-mode: screen;
  opacity: 0.75;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 46px);
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid rgba(221, 30, 75, 0.75);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--champagne);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0 18px;
  color: var(--ivory);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  background: rgba(221, 30, 75, 0.08);
  border-color: rgba(221, 30, 75, 0.58);
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.header-cta:hover,
.btn:hover,
.header-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(221, 30, 75, 0.78);
}

.btn-primary {
  background: transparent;
  color: var(--ivory);
  border-color: var(--champagne);
  box-shadow: inset 0 0 0 1px rgba(221, 30, 75, 0.18), 0 0 28px rgba(221, 30, 75, 0.12);
  font-weight: 800;
}

.btn-primary i,
.btn-primary svg {
  color: var(--champagne);
}

.btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--ivory);
}

.btn-buy {
  width: 100%;
  background: rgba(221, 30, 75, 0.12);
  color: var(--champagne-2);
  border-color: rgba(221, 30, 75, 0.58);
}

.btn.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 92svh;
  padding: calc(var(--header-h) + 34px) clamp(18px, 5vw, 68px) 0;
  display: grid;
  align-content: end;
  position: relative;
}

.hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  padding-bottom: clamp(22px, 4vw, 42px);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--champagne-2);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--jade);
  box-shadow: 0 0 0 0 rgba(221, 30, 75, 0.62);
  animation: pulse 1800ms infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(221, 30, 75, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(221, 30, 75, 0);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.1vw, 6.05rem);
  line-height: 0.92;
  font-weight: 950;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, #dd1e4b 0%, #dd1e4b 62%, #e33b63 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 950;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 12px;
}

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions,
.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  max-width: 700px;
  border: 1px solid var(--line);
  background: var(--line);
}

.metric-row div {
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.metric-row dt {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  color: var(--ivory);
  font-weight: 900;
}

.metric-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  perspective: 1400px;
}

.visual-shell {
  position: relative;
  min-height: clamp(420px, 36vw, 500px);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(221, 30, 75, 0.08), transparent 38%),
    #000000;
  border: 1px solid rgba(221, 30, 75, 0.52);
  border-radius: 2px;
  box-shadow: 0 30px 110px rgba(221, 30, 75, 0.12), var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-founder .visual-shell {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  overflow: visible;
  min-height: clamp(480px, 42vw, 620px);
}

.visual-shell::before,
.visual-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(221, 30, 75, 0.2);
  pointer-events: none;
}

.hero-founder .visual-shell::before,
.hero-founder .visual-shell::after {
  display: none;
}

.visual-shell::after {
  inset: auto 18px 18px;
  height: 34%;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
  border-top: 0;
}

.system-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-founder .system-topline,
.hero-founder .console-map {
  display: none;
}

.portrait-stage {
  position: absolute;
  z-index: 2;
  inset: 70px 34px 138px;
  display: grid;
  place-items: center;
  background: transparent;
}

.hero-founder .portrait-stage {
  inset: 0;
  place-items: start end;
}

.portrait-stage img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 2px;
  filter: grayscale(18%) contrast(1.14) brightness(0.96);
  box-shadow: none;
  background: transparent;
}

.portrait-stage::before {
  content: "";
  position: absolute;
  width: min(380px, 82%);
  aspect-ratio: 1;
  border: 1px solid rgba(221, 30, 75, 0.42);
  transform: translate(20px, 18px);
}

.hero-founder .portrait-stage::before {
  display: none;
}

.hero-founder .portrait-caption,
.hero-founder .hero-stack {
  display: none;
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: min(270px, 74%);
  padding: 16px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(221, 30, 75, 0.72);
  backdrop-filter: blur(14px);
}

.portrait-caption span,
.portrait-caption strong {
  display: block;
}

.portrait-caption span {
  color: var(--champagne-2);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-bottom: 6px;
}

.portrait-caption strong {
  color: var(--ivory);
  font-size: 0.92rem;
  line-height: 1.4;
}

.console-map {
  position: absolute;
  inset: 68px 28px auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  opacity: 0.42;
}

.console-map span {
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  animation: tileSignal 4s ease-in-out infinite;
}

.console-map span:nth-child(3n) {
  background: rgba(221, 30, 75, 0.12);
  animation-delay: 500ms;
}

.console-map span:nth-child(5n) {
  background: rgba(221, 30, 75, 0.1);
  animation-delay: 900ms;
}

@keyframes tileSignal {
  50% {
    border-color: rgba(221, 30, 75, 0.34);
    transform: translateY(-2px);
  }
}

.console-stack {
  position: absolute;
  z-index: 3;
  left: 36px;
  right: 36px;
  bottom: 42px;
  display: grid;
  gap: 12px;
}

.hero-stack {
  left: 28px;
  right: 28px;
  bottom: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.console-stack article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.console-stack svg {
  width: 24px;
  height: 24px;
  color: var(--champagne);
}

.console-stack strong,
.console-stack span {
  display: block;
}

.console-stack span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 4px;
}

.console-stack em {
  color: var(--jade);
  font-style: normal;
  font-weight: 800;
  font-size: 0.86rem;
}

.marquee {
  margin: 0 calc(clamp(18px, 5vw, 68px) * -1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 18px 38px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(78px, 12vw, 150px) clamp(18px, 5vw, 68px);
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(30px, 6vw, 58px);
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.kicker),
.about-copy p,
.contact-copy p,
.schedule-card p,
.proof-panel p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 1rem;
}

.service-grid,
.product-grid,
.project-grid,
.process-track {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card,
.product-card,
.process-track article,
.contact-form,
.proof-panel,
.schedule-card,
.store-note {
  border-radius: var(--radius);
}

.service-card {
  min-height: 300px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(8, 8, 8, 0.96);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: rgba(18, 18, 18, 0.98);
  transform: translateY(-3px);
}

.service-card-highlight {
  border: 1px solid rgba(221, 30, 75, 0.42);
  background: linear-gradient(180deg, rgba(221, 30, 75, 0.08) 0%, rgba(8, 8, 8, 0.96) 100%);
}

.service-price {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-action-row {
  justify-content: flex-start;
}

.service-price strong {
  font-size: 1.25rem;
  color: var(--ivory);
}

.service-price small {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: normal;
}

.service-card svg {
  width: 30px;
  height: 30px;
  color: var(--champagne);
  margin-bottom: 52px;
}

.service-card p,
.product-card p,
.product-card li,
.process-track p,
.project-card p {
  color: var(--muted);
  line-height: 1.65;
}

.plugin-section {
  background: var(--ink-soft);
  border-block: 1px solid var(--line);
}

.global-section {
  padding-top: 0;
}

.global-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-block: clamp(46px, 7vw, 76px);
  border-block: 1px solid var(--line);
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(24px, 4vw, 36px);
  background: var(--line);
  border: 1px solid var(--line);
}

.global-grid article {
  min-height: 150px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(221, 30, 75, 0.08), rgba(8, 8, 8, 0.96) 74%);
}

.global-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--champagne-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.global-grid strong {
  display: block;
  color: var(--ivory);
  line-height: 1.45;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.plugin-layout {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: end;
}

.store-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.store-note svg {
  color: var(--jade);
}

.store-note strong,
.store-note span {
  display: block;
}

.store-note span {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.55;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.product-card.featured {
  border-color: rgba(221, 30, 75, 0.54);
  box-shadow: 0 24px 80px rgba(221, 30, 75, 0.12);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.08), transparent 62%);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.product-card:hover::before {
  transform: translateX(100%);
}

.product-card>* {
  position: relative;
  z-index: 1;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 52px;
  color: var(--champagne-2);
}

.product-topline span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.product-topline strong {
  font-size: 1.1rem;
}

.product-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--champagne);
}

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

.process-track article {
  padding: 26px;
  background: rgba(0, 0, 0, 0.82);
}

.process-track span {
  display: block;
  margin-bottom: 56px;
  color: var(--champagne);
  font-weight: 900;
}

.proof-section {
  padding-top: 0;
}

.proof-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 5vw, 42px);
  background: #000000;
  color: var(--ivory);
  border: 1px solid rgba(221, 30, 75, 0.52);
}

.proof-panel .kicker,
.proof-panel p {
  color: var(--muted);
}

.proof-panel h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.proof-panel .btn-secondary {
  background: transparent;
  color: var(--ivory);
  border-color: var(--champagne);
  white-space: nowrap;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  display: grid;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(221, 30, 75, 0.62);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--panel);
}

.project-card div {
  padding: 18px;
}

.project-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--champagne);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.about-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.founder-photo {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: grayscale(10%) contrast(1.08);
}

.founder-badge {
  position: absolute;
  right: 0;
  bottom: 34px;
  min-width: 220px;
  padding: 18px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.founder-badge span,
.founder-badge strong {
  display: block;
}

.founder-badge span {
  color: var(--muted-2);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.founder-badge strong {
  margin-top: 5px;
  font-size: 1.2rem;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

.about-list svg {
  width: 16px;
  height: 16px;
  color: var(--jade);
}

.schedule-section {
  padding-top: 0;
}

.schedule-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  background:
    linear-gradient(90deg, rgba(221, 30, 75, 0.1), transparent 42%),
    #000000;
  border: 1px solid var(--line);
}

.schedule-card h2 {
  max-width: 830px;
}

.schedule-card p {
  max-width: 640px;
  margin-bottom: 28px;
}

.contact-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(30px, 5vw, 70px);
}

.faq-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-top: clamp(54px, 8vw, 90px);
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(221, 30, 75, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 3vw, 26px);
  color: var(--ivory);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(221, 30, 75, 0.44);
  color: var(--champagne-2);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 clamp(18px, 3vw, 26px) 22px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne-2);
}

.contact-links svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.66);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 14px 13px;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(221, 30, 75, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--champagne-2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 68px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ivory);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--delay, 0ms);
}

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

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid rgba(221, 30, 75, 0.48);
  background: rgba(0, 0, 0, 0.92);
  color: var(--ivory);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.purchase-dialog {
  width: min(520px, calc(100vw - 28px));
  border: 1px solid rgba(221, 30, 75, 0.48);
  border-radius: var(--radius);
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.purchase-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.purchase-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
}

.purchase-form h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 3rem);
}

.purchase-form .kicker {
  color: var(--champagne);
  margin-bottom: 0;
}

.purchase-product {
  margin: 0 0 6px;
  color: var(--muted-2);
}

.purchase-form label {
  display: grid;
  gap: 8px;
  color: #5e574d;
  font-size: 0.9rem;
  font-weight: 700;
}

.purchase-form input {
  width: 100%;
  border: 1px solid #d8cebd;
  background: #fffaf1;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 14px 13px;
  outline: 0;
}

.purchase-form input:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(221, 30, 75, 0.2);
}

.purchase-form .btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--champagne);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d8cebd;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.dialog-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1080px) {

  .hero-grid,
  .plugin-layout,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-bottom: 58px;
  }

  .hero-visual {
    max-width: 760px;
  }

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

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

  .proof-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 12px auto;
    display: grid;
    gap: 0;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid var(--line);
    padding: 10px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  h1 {
    font-size: clamp(2.72rem, 12vw, 3.7rem);
    line-height: 0.96;
  }

  .hero {
    padding-top: calc(var(--header-h) + 36px);
  }

  .visual-shell {
    min-height: 500px;
  }

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

  .metric-row div {
    padding: 12px 10px;
  }

  .metric-row dt {
    font-size: 1.08rem;
  }

  .metric-row dd {
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  .brand-copy small {
    display: none;
  }

  .hero-actions,
  .schedule-actions {
    display: grid;
  }

  .hero-grid {
    gap: 18px;
    padding-bottom: 24px;
  }

  .hero-visual {
    display: none;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.58;
    margin-bottom: 22px;
  }

  .metric-row {
    margin-top: 20px;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .product-grid,
  .process-track,
  .project-grid,
  .global-grid {
    grid-template-columns: 1fr;
  }

  .console-stack {
    left: 26px;
    right: 26px;
  }

  .console-stack article {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .console-stack em {
    justify-self: start;
  }

  .founder-badge {
    position: static;
    margin-top: 12px;
  }

  .site-footer {
    display: grid;
  }
}

.legal-page {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-page h1 {
  margin-top: 42px;
}

.legal-page p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* AI Chat Widget */
.ai-chat-widget {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 100;
  font-family: inherit;
}

.ai-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ai-chat-toggle:hover {
  transform: scale(1.05);
  background: var(--champagne-2);
}

.ai-chat-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.ai-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 48px);
  background: var(--panel);
  border: 1px solid rgba(221, 30, 75, 0.46);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.ai-chat-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ai-chat-header {
  padding: 16px;
  background: var(--panel-light);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ivory);
}

.ai-chat-title i {
  color: var(--champagne);
}

.ai-chat-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}
.ai-chat-close:hover {
  color: var(--ivory);
}

.ai-chat-messages {
  padding: 16px;
  height: 350px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  padding: 10px 14px;
  border-radius: 8px;
  max-width: 85%;
  line-height: 1.4;
  font-size: 0.95rem;
  white-space: pre-line;
}

.ai-msg-system {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  align-self: flex-start;
  font-size: 0.85rem;
  border-radius: 8px;
}

.ai-msg-user {
  background: var(--line);
  color: var(--ivory);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-msg-assistant {
  background: rgba(221, 30, 75, 0.12);
  color: var(--ivory);
  border: 1px solid rgba(221, 30, 75, 0.26);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}

.ai-chat-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(221, 30, 75, 0.68);
  color: var(--ivory);
  background: rgba(221, 30, 75, 0.08);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.ai-chat-input-area {
  display: flex;
  padding: 12px;
  background: var(--panel-light);
  border-top: 1px solid var(--line);
  gap: 8px;
}

.ai-chat-input-area input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 2px;
  color: var(--ivory);
  outline: none;
}
.ai-chat-input-area input:focus {
  border-color: var(--champagne);
}

.ai-chat-send {
  background: var(--champagne);
  color: var(--ivory);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.ai-chat-send:hover {
  background: var(--champagne-2);
}

.ai-msg-loading {
  background: transparent;
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 10px 0;
}

.ai-msg-loading .dot {
  width: 6px;
  height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.ai-msg-loading .dot:nth-child(1) { animation-delay: -0.32s; }
.ai-msg-loading .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 640px) {
  .ai-chat-widget {
    right: 14px;
    bottom: 92px;
  }

  .ai-chat-window {
    width: calc(100vw - 28px);
    max-width: none;
    bottom: 76px;
  }

  .ai-chat-messages {
    height: min(390px, 54vh);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
