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

:root {
  --bg:      #F6F5F3;
  --dark:    #111111;
  --text:    #111111;
  --border:  #E0DED9;
  --mint:    #E8F2DF;
  --blush:   #EEC9CA;
  --lavender:#E2DEFC;
  --peach:   #FAD9B5;
  --steel:   #8A99AD;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  width: 83.333%;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 768px) { .wrap { width: 91.666%; } }

/* ── REVEALS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.stagger.in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(246,245,243,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  transition: padding 0.4s ease;
}
nav.scrolled .nav-inner { padding: 15px 0; }

.nav-logo { height: 42px; width: auto; display: block; transition: filter 0.45s ease; }
nav:not(.scrolled) .nav-logo { filter: brightness(0) invert(1); }
nav.scrolled .nav-logo { filter: brightness(0); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}

/* over dark hero */
nav:not(.scrolled) .nav-links a:not(.nav-cta) { color: rgba(255,255,255,0.55); }
nav:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: #fff; }
nav:not(.scrolled) .nav-cta {
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 9px 22px; border-radius: 4px;
}
nav:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.7); }

/* over white body */
nav.scrolled .nav-links a:not(.nav-cta) { color: var(--text); opacity: 0.45; }
nav.scrolled .nav-links a:not(.nav-cta):hover { opacity: 1; }
nav.scrolled .nav-cta {
  color: #fff;
  background: var(--dark);
  padding: 9px 22px; border-radius: 4px;
  border: 1.5px solid var(--dark);
}
nav.scrolled .nav-cta:hover { opacity: 0.8; }

@media (max-width: 640px) { .nav-links li:not(:last-child) { display: none; } }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  padding-bottom: 88px;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 22px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(76px, 13vw, 172px);
  font-weight: 800; line-height: 0.87;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 40px;
}
.hero-headline em { font-style: italic; font-weight: 400; }

.hero-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.hero-sub {
  font-size: 15px; font-weight: 400; line-height: 1.85;
  color: rgba(255,255,255,0.6); max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* hero stat row */
.hero-stats {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
}
.hero-stat {
  flex: 1; padding: 20px 0 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff; line-height: 1;
}
.hero-stat-l {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.38); margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-row { flex-direction: column; align-items: flex-start; }
  .hero-stats { display: none; }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn-white {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: #fff; color: var(--dark);
  padding: 13px 28px; text-decoration: none;
  border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
.btn-white svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.btn-white:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8);
  padding: 13px 28px; text-decoration: none;
  border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-ghost svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-dark {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--dark); color: #fff;
  padding: 13px 28px; text-decoration: none;
  border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.btn-dark::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.07) 52%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 5s ease 4s infinite;
}
@keyframes shine { 0%,62%,100% { transform: translateX(-100%); } 42% { transform: translateX(250%); } }
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.btn-dark:hover svg { transform: translateX(4px); }

.btn-outline {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--border); color: var(--text);
  padding: 13px 28px; text-decoration: none;
  border-radius: 4px; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s;
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--text); }
.btn-outline svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.btn-outline:hover svg { transform: translateX(4px); }

/* ── TICKER ───────────────────────────────────── */
.ticker-wrap { background: var(--dark); overflow: hidden; padding: 14px 0; }
.ticker { display: flex; white-space: nowrap; animation: ticker 34s linear infinite; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.t-item {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); padding: 0 28px; flex-shrink: 0;
}

/* ── SECTIONS SHARED ──────────────────────────── */
.section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text); opacity: 0.38; margin-bottom: 18px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.0; color: var(--text);
}
.section-title em { font-style: italic; font-weight: 400; }

/* ── SERVICES ─────────────────────────────────── */
.svc-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px; gap: 48px;
}
.svc-header-right {
  font-size: 14px; font-weight: 400; line-height: 1.85;
  color: var(--text); max-width: 380px; flex-shrink: 0;
}
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-card {
  border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 24px 52px rgba(0,0,0,0.1); }

.svc-video {
  aspect-ratio: 16/9; overflow: hidden;
  position: relative; background: rgba(0,0,0,0.07);
}
.svc-video video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.03);
  transition: transform 0.7s ease;
}
.svc-card:hover .svc-video video { transform: scale(1.08); }
.svc-video::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; pointer-events: none;
}
.svc-card[data-bg="mint"] .svc-video::after    { background: linear-gradient(to bottom, transparent, #E8F2DF); }
.svc-card[data-bg="blush"] .svc-video::after   { background: linear-gradient(to bottom, transparent, #EEC9CA); }
.svc-card[data-bg="lavender"] .svc-video::after{ background: linear-gradient(to bottom, transparent, #E2DEFC); }
.svc-card[data-bg="peach"] .svc-video::after   { background: linear-gradient(to bottom, transparent, #FAD9B5); }

.svc-body { padding: 20px 26px 28px; flex: 1; }
.svc-num {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text); opacity: 0.3; margin-bottom: 10px;
}
.svc-name {
  font-family: 'Syne', sans-serif;
  font-size: 23px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--text);
  margin-bottom: 10px; line-height: 1.05;
}
.svc-desc {
  font-size: 13px; font-weight: 400;
  line-height: 1.82; color: var(--text);
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.svc-tag {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); opacity: 0.6;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 5px 12px; border-radius: 20px;
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 540px; }
  .svc-header { flex-direction: column; align-items: flex-start; }
}

/* ── STAT / POSITIONING ───────────────────────── */
.position-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.big-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(110px, 20vw, 220px);
  font-weight: 800; letter-spacing: -0.05em;
  line-height: 0.82; color: var(--text);
}
.stat-note {
  font-size: 14px; font-weight: 400; line-height: 1.85;
  color: var(--text); margin-top: 20px; max-width: 300px;
}
.position-right h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; color: var(--text); margin-bottom: 20px;
}
.position-right p {
  font-size: 15px; font-weight: 400; line-height: 1.9; color: var(--text);
}
@media (max-width: 768px) { .position-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ── AI ARTIST FEATURE · DAYO ─────────────────── */
.ai-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .ai-grid { grid-template-columns: 1fr; gap: 32px; } }

.ai-card-visual {
  position: relative; display: block;
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  text-decoration: none;
}
.ai-card-visual:hover { transform: translateY(-6px); box-shadow: 0 38px 90px rgba(0,0,0,0.24); }
.ai-card-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.ai-card-visual:hover img { transform: scale(1.04); }
.ai-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.72) 100%);
  pointer-events: none;
}
.ai-live-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--dark);
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 50px;
}
.ai-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #E74C3C;
  box-shadow: 0 0 0 0 rgba(231,76,60,0.7);
  animation: ai-pulse 1.8s infinite;
}
@keyframes ai-pulse {
  0% { box-shadow: 0 0 0 0 rgba(231,76,60,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(231,76,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
}
.ai-view-link {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.ai-view-link svg {
  width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s;
}
.ai-card-visual:hover .ai-view-link svg { transform: translateX(5px); }

.ai-headline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(38px, 4.6vw, 60px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 14px 0 18px;
}
.ai-headline em { font-style: italic; font-weight: 500; }
.ai-sub {
  font-size: 17px; line-height: 1.55; color: #444; max-width: 540px;
}
.ai-powers {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px;
}
@media (max-width: 600px) { .ai-powers { grid-template-columns: 1fr; } }
.ai-powers li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.5; color: #333;
}
.ai-powers strong { color: var(--dark); font-weight: 600; display: block; margin-bottom: 2px; }
.ai-pn {
  flex-shrink: 0;
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark);
  background: var(--mint);
  padding: 4px 7px; border-radius: 3px;
  margin-top: 1px;
}
.ai-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── POWERED BY SYX SOLUTIONS ─────────────────── */
.pwr-header {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 70px;
}
@media (max-width: 900px) { .pwr-header { grid-template-columns: 1fr; gap: 24px; } }
.pwr-intro {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.pwr-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .pwr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pwr-grid { grid-template-columns: 1fr; } }
.pwr-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 32px 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pwr-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.pwr-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pwr-icon svg {
  width: 22px; height: 22px;
  stroke: #fff; fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.pwr-name {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 19px; color: #fff;
  margin-bottom: 10px;
}
.pwr-desc {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.62);
}
.pwr-foot {
  margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.pwr-foot-l { color: rgba(255,255,255,0.55); font-size: 15px; }
.pwr-foot-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 22px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pwr-foot-link:hover { border-color: #fff; transform: translateY(-2px); }
.pwr-foot-link svg {
  width: 13px; height: 13px;
  stroke: #fff; fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
}
.pwr-foot-link:hover svg { transform: translateX(4px); }

/* ── ADDONS ───────────────────────────────────── */
.addons-intro {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px; gap: 40px;
}
.addons-intro-right {
  font-size: 14px; font-weight: 400; line-height: 1.85;
  color: var(--text); max-width: 360px;
}
.addons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.addon-card {
  padding: 32px 26px 28px; border-radius: 10px;
  display: flex; flex-direction: column; gap: 10px;
  cursor: default; position: relative; overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.38s ease;
}
.addon-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,0.08); }
.addon-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2.5px; background: var(--dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
.addon-card:hover::after { transform: scaleX(1); }
.addon-icon svg {
  width: 22px; height: 22px; stroke: var(--text); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.addon-label {
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text); opacity: 0.38;
}
.addon-name {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  letter-spacing: -0.01em; color: var(--text); line-height: 1.15;
}
.addon-desc {
  font-size: 12px; font-weight: 400; line-height: 1.78; color: var(--text); flex: 1;
}
.addon-link {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); display: flex; align-items: center; gap: 6px;
  text-decoration: none; margin-top: 8px;
  transition: gap 0.22s;
}
.addon-card:hover .addon-link { gap: 11px; }
.addon-link svg {
  width: 12px; height: 12px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
@media (max-width: 900px) { .addons-grid { grid-template-columns: 1fr 1fr; } .addons-intro { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .addons-grid { grid-template-columns: 1fr; } }

/* ── INDUSTRIES ───────────────────────────────── */
.ind-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border); margin-top: 48px;
}
.ind-item {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 2.2vw, 26px); font-weight: 600; color: var(--text);
  padding: 24px 0; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  cursor: default; transition: opacity 0.22s;
}
.ind-item:hover { opacity: 0.4; }
.ind-item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
.ind-arrow {
  font-size: 18px; opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
}
.ind-item:hover .ind-arrow { opacity: 1; transform: translateX(4px); }
@media (max-width: 600px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-item:nth-child(odd) { padding-right: 0; border-right: none; }
}

/* ── PROOF STRIP ──────────────────────────────── */
.proof-strip { background: var(--steel); }
.proof-inner {
  display: flex; justify-content: space-between;
  align-items: center; padding: 52px 0; flex-wrap: wrap; gap: 32px;
}
.proof-left {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.proof-items { display: flex; gap: 52px; align-items: center; flex-wrap: wrap; }
.proof-item {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 800;
  color: #fff; letter-spacing: -0.01em;
}

/* ── CTA CINEMATIC ────────────────────────────── */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--dark);
}
.cta-vbg { position: absolute; inset: 0; z-index: 0; }
.cta-vbg video, .cta-vbg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-vbg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.88) 100%);
}
.cta-content {
  position: relative; z-index: 1;
  padding: 128px 0; text-align: center;
}
.cta-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 24px;
}
.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(50px, 9vw, 108px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 0.9; color: #fff; margin-bottom: 28px;
}
.cta-headline em { font-style: italic; font-weight: 400; }
.cta-body {
  font-size: 15px; font-weight: 400; line-height: 1.85;
  color: rgba(255,255,255,0.55); margin: 0 auto 44px; max-width: 500px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) { .cta-content { padding: 80px 0; } }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--dark); padding: 44px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 38px; width: auto; opacity: 0.5; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.15); letter-spacing: 0.04em; }

/* ── INNER PAGE HERO (dark, compact) ── */
.page-hero { position: relative; background: var(--dark); color:#fff; padding: 150px 0 80px; overflow:hidden; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero-eyebrow { font-family:'Syne',sans-serif; font-size:10px; font-weight:700; letter-spacing:0.28em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:20px; }
.page-hero h1 { font-family:'Syne',sans-serif; font-size:clamp(44px,7vw,92px); font-weight:800; letter-spacing:-0.035em; line-height:0.95; color:#fff; max-width:14ch; }
.page-hero h1 em { font-style:italic; font-weight:400; }
.page-hero-sub { font-size:16px; line-height:1.8; color:rgba(255,255,255,0.6); max-width:560px; margin-top:26px; }
.page-hero-glow { position:absolute; inset:0; background:radial-gradient(ellipse 60% 70% at 70% 0%, rgba(255,255,255,0.08), transparent 60%); z-index:0; }
/* prose for legal / narrative */
.prose { max-width: 760px; }
.prose h2 { font-family:'Syne',sans-serif; font-size:clamp(22px,3vw,30px); font-weight:800; letter-spacing:-0.02em; margin:2.4rem 0 0.9rem; }
.prose h3 { font-family:'Syne',sans-serif; font-size:19px; font-weight:700; margin:1.6rem 0 0.6rem; }
.prose p, .prose li { font-size:15px; line-height:1.85; color:var(--text); opacity:0.86; margin-bottom:1rem; }
.prose ul { padding-left:1.2rem; margin-bottom:1rem; }
.prose strong { opacity:1; font-weight:600; }
.prose .legal-meta { font-style:italic; opacity:0.6; margin-bottom:2rem; }


/* ── TOPSYXER SUBPAGE PATTERNS (lifted from offer.html) ── */
/* ── PAGE HEADER ──────────────────────────────── */
.page-header {background: var(--dark); padding: 80px 0 0;}
.ph-eyebrow {font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 18px;}
.ph-headline {font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 0.9; color: #fff;}
.ph-headline em {font-style: italic; font-weight: 400;}
.ph-right {font-size: 15px; font-weight: 400; line-height: 1.85;
  color: rgba(255,255,255,0.52); align-self: end;}
/* ── PROBLEM ──────────────────────────────────── */
.problem-card {background: var(--dark); border-radius: 10px; padding: 52px;}
.problem-card p {font-size: 18px; font-weight: 400; line-height: 1.82;
  color: rgba(255,255,255,0.58);}
.problem-card p strong {color: #fff; font-weight: 600;}
.problem-card {padding: 32px 28px;}
.problem-card p {font-size: 16px;}
/* ── PILLARS ──────────────────────────────────── */
.pillar {border-radius: 10px; overflow: hidden; margin-bottom: 16px;
  display: grid; grid-template-columns: 220px 1fr; align-items: stretch;
  transition: box-shadow 0.3s;}
.pillar:hover {box-shadow: 0 16px 40px rgba(0,0,0,0.07);}
.metric-tags {display: flex; flex-wrap: wrap; gap: 7px;}
.metric-tag {font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text); opacity: 0.65;
  border: 1px solid rgba(0,0,0,0.2); padding: 5px 13px; border-radius: 20px;}
.pillar {grid-template-columns: 1fr;}
/* ── METRICS ──────────────────────────────────── */
.metrics-grid {display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden;}
.metric-cell {background: var(--bg); padding: 36px 28px;}
.metric-stat {font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--text); line-height: 1; margin-bottom: 8px;}
.metric-label {font-family: 'Lora', Georgia, serif; font-size: 13px; font-weight: 400; line-height: 1.75; color: var(--text); opacity: 0.75;}
.metrics-grid {grid-template-columns: 1fr;}
/* ── HOW WE ENGAGE ────────────────────────────── */
.engage-grid {display: grid; grid-template-columns: 1fr 1fr; gap: 16px;}
.engage-card {border-radius: 10px; padding: 48px 40px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;}
.engage-card:hover {border-color: var(--dark); box-shadow: 0 16px 40px rgba(0,0,0,0.07);}
.engage-card.featured {background: var(--dark); border-color: var(--dark);}
.engage-tag {font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text); opacity: 0.38;}
.engage-card.featured .engage-tag {color: rgba(255,255,255,0.38); opacity: 1;}
.engage-name {font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -0.025em; color: var(--text); line-height: 1.05;}
.engage-card.featured .engage-name {color: #fff;}
.engage-desc {font-family: 'Lora', Georgia, serif;
  font-size: 14px; font-weight: 400; line-height: 1.9; color: var(--text); flex: 1;
  opacity: 0.75;}
.engage-card.featured .engage-desc {color: rgba(255,255,255,0.58);}
.engage-detail {font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding-top: 16px; border-top: 1px solid var(--border);
  color: var(--text);}
.engage-card.featured .engage-detail {border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5);}
.engage-grid {grid-template-columns: 1fr;}
@media (max-width: 768px) {
  .page-header-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) { .problem-card { padding: 32px 28px; } .problem-card p { font-size: 16px; } }
@media (max-width: 768px) {
  .pillar { grid-template-columns: 1fr; }
  .pillar-left { padding: 28px 28px 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .pillar-right { padding: 28px; }
}
@media (max-width: 640px) { .metrics-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .engage-grid { grid-template-columns: 1fr; } }
.footer-studio { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer-studio-label { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-right: 6px; }
.footer-studio a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; }
.footer-studio a:hover { color: #fff; }
