/* =========================================================================
   ONQUE DESIGN SYSTEM
   ========================================================================= */

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

:root {
  --text-primary: #0b1220;
  --text-secondary: #3b475a;
  --text-tertiary: #6b7689;
  --text-muted: #9aa3b3;
  --text-on-dark: #f1f4f9;
  --text-on-dark-secondary: #b8c2d1;
  --text-on-dark-muted: #6b7689;
  --bg-page: #ffffff;
  --bg-card: #f6f8fb;
  --bg-card-hover: #eef2f8;
  --bg-dark: #0f172a;
  --bg-dark-card: #172033;
  --border-light: #dde3ec;
  --border-subtle: #e5eaf2;
  --border-dark: #1e293b;
  --border-dark-subtle: rgba(255,255,255,0.07);
  --blue: #5b8def;
  --blue-deep: #2c5fd6;
  --blue-accent: #2563EB;
  --blue-soft: #e8efff;
  --lime: #c5f04a;
  --lime-deep: #a8d12c;
  --btn-dark: #0b1220;
  --btn-dark-hover: #1a2540;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --font-sans: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-italic: 'Newsreader', 'Times New Roman', Georgia, serif;
  --shadow-card: 0 1px 2px rgba(11,18,32,0.04), 0 4px 12px rgba(11,18,32,0.04);
  --shadow-card-hover: 0 2px 4px rgba(11,18,32,0.06), 0 12px 32px rgba(11,18,32,0.08);
  --shadow-pop: 0 8px 32px rgba(11,18,32,0.10);
  --shadow-screenshot: 0 1px 2px rgba(11,18,32,0.04), 0 24px 64px -24px rgba(11,18,32,0.30);
}

/* Scope all landing styles to avoid Tailwind conflicts */
.landing-page, .landing-page * { box-sizing: border-box; }
.landing-page {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-page);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: 'ss01' on, 'cv11' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-page a { color: inherit; text-decoration: none; }
.landing-page button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
.landing-page img, .landing-page svg { display: block; max-width: 100%; }
.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4, .landing-page h5, .landing-page h6, .landing-page p { margin: 0; }

.t-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-deep); }
.t-eyebrow--muted { color: var(--text-tertiary); }
.t-eyebrow--on-dark { color: var(--blue); }
.t-display-xl { font-family: var(--font-display); font-size: clamp(48px, 6.5vw, 88px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; text-wrap: balance; }
.t-display-l { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 600; text-wrap: balance; }
.t-display-m { font-family: var(--font-display); font-size: clamp(32px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 600; text-wrap: balance; }
.t-h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; letter-spacing: -0.015em; font-weight: 600; }
.t-h4 { font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
.t-body-l { font-size: 18px; line-height: 1.6; color: var(--text-secondary); }
.t-body { font-size: 16px; line-height: 1.55; color: var(--text-secondary); }
.t-meta { font-size: 13px; color: var(--text-tertiary); }

.it { font-family: var(--font-italic); font-style: italic; font-weight: 500; letter-spacing: -0.01em; background: linear-gradient(120deg, #14B8A6, #F9736A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Tide-gradient text — used on the "q" in the onque wordmark */
.tq { background: linear-gradient(135deg, #2563EB, #14B8A6, #F9736A, #6366F1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.shell { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
.shell--narrow { max-width: 980px; }
.section { padding: 128px 0; }
.section--sm { padding: 80px 0; }
.section.dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section.dark .t-body, .section.dark .t-body-l { color: var(--text-on-dark-secondary); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding: 2px 22px 0; border-radius: 999px; font-size: 14.5px; font-weight: 600; letter-spacing: -0.005em; line-height: 1; transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; border: 1px solid transparent; white-space: nowrap; }
.btn:active { transform: translateY(0.5px); }
.btn--primary { background: var(--btn-dark); color: #fff; }
.btn--primary:hover { background: var(--btn-dark-hover); }
.btn--lime { background: var(--lime); color: var(--btn-dark) !important; -webkit-text-fill-color: var(--btn-dark); }
.btn--lime:hover { background: var(--lime-deep); }
.btn--ghost { background: transparent; color: var(--text-primary); border-color: var(--border-light); }
.btn--ghost:hover { background: var(--bg-card); border-color: var(--text-muted); }
.btn--ghost-dark { background: transparent; color: var(--text-on-dark); border-color: var(--border-dark); }
.btn--ghost-dark:hover { background: var(--bg-dark-card); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13.5px; }
.btn--lg { height: 52px; padding: 0 28px; font-size: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-deep); font-weight: 600; font-size: 14.5px; transition: gap 160ms ease; }
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 14px; height: 14px; }

.pill { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 2px 10px 0; border-radius: 999px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.pill--live { background: var(--lime); color: var(--btn-dark); }
.pill--soon { background: var(--blue-soft); color: var(--blue-deep); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--border-subtle); transform: translateY(0); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav--hidden { transform: translateY(-100%); transition: transform 0.25s cubic-bezier(0.55, 0, 1, 0.45); }
.nav__tabs { border-bottom: 1px solid var(--border-subtle); }
.nav__tabs-inner { display: flex; align-items: center; justify-content: center; gap: 4px; height: 60px; }
.nav__tab { position: relative; display: inline-flex; align-items: center; gap: 8px; height: 60px; padding: 0 18px; font-size: 14.5px; font-weight: 500; color: var(--text-tertiary); letter-spacing: -0.005em; transition: color 160ms ease; }
.nav__tab:hover { color: var(--text-primary); }
.nav__tab--active { color: var(--text-primary); font-weight: 600; }
.nav__tab--active::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 2px; background: var(--text-primary); }
.nav__tab-mark { width: 24px; height: 24px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; }
.nav__tab-mark--home { background: var(--btn-dark); }
.nav__tab-mark--trades { background: linear-gradient(135deg, #5b8def, #2c5fd6); }
.nav__tab-mark--sales { background: linear-gradient(135deg, #ff8a4c, #ef5a3c); }
.nav__tab-mark--roofing { background: linear-gradient(135deg, #c5f04a, #8eb52f); color: var(--btn-dark); }
.nav__tab-mark--d2d { background: linear-gradient(135deg, #a78bfa, #7c4dff); }

.nav__main { display: flex; align-items: center; height: 72px; gap: 32px; }
.nav__logo { display: inline-flex; align-items: center; color: var(--text-primary); }
.nav__logo-text { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.nav__links { display: flex; align-items: stretch; gap: 2px; margin-left: 8px; align-self: stretch; }
.nav__link { position: relative; padding: 0 16px; display: inline-flex; align-items: center; font-size: 16.5px; font-weight: 500; color: var(--text-secondary); transition: color 160ms ease; }
.nav__link:hover { color: var(--text-primary); }
.nav__link--toggle { font-family: inherit; background: transparent; border: none; cursor: pointer; }
.nav__link--toggle[aria-expanded="true"] { color: var(--text-primary); }
/* Center-out underline that rides the nav's bottom line, in the blue accent */
.nav__link::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 2.5px; background: var(--blue-accent); border-radius: 2px; transition: left 240ms cubic-bezier(0.4,0,0.2,1), right 240ms cubic-bezier(0.4,0,0.2,1); }
.nav__link:hover::after { left: 16px; right: 16px; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__search { position: relative; width: 240px; }
.nav__search input { width: 100%; height: 40px; border-radius: 999px; border: 1px solid var(--border-light); padding: 0 14px 0 38px; background: #fff; font-family: inherit; font-size: 13.5px; color: var(--text-primary); outline: none; transition: border-color 160ms, box-shadow 160ms; }
.nav__search input::placeholder { color: var(--text-muted); }
.nav__search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91,141,239,0.18); }
.nav__search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--text-muted); }

@media (max-width: 1180px) { .nav__search { width: 160px; } .nav__main { gap: 20px; } .nav__link { padding: 0 12px; } }
@media (max-width: 1020px) { .nav__search { display: none; } }
/* Hamburger button — hidden on desktop */
.nav__burger { display: none; width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease; }

/* Mobile menu — full-screen slide-in with staggered links */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  z-index: 300;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.55s cubic-bezier(0.83, 0, 0.17, 1), visibility 0s linear 0.55s;
}
.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.55s cubic-bezier(0.83, 0, 0.17, 1), visibility 0s linear 0s;
}
.nav-mobile__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.nav-mobile__close svg { width: 24px; height: 24px; }
.nav-mobile__close:hover { background: rgba(255,255,255,0.22); transform: scale(1.06); }
.nav-mobile__header { display: flex; align-items: center; justify-content: space-between; position: absolute; top: 0; left: 0; right: 0; padding: 24px; }
.nav-mobile__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.03em; color: #fff !important; -webkit-text-fill-color: #fff; }
.nav-mobile__content { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.nav-mobile__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-text-fill-color: #ffffff;
}
.nav-mobile__link:hover { color: var(--blue) !important; -webkit-text-fill-color: var(--blue); }
.nav-mobile__cta {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  background: #c5f04a !important;
  color: #0b1220 !important;
  -webkit-text-fill-color: #0b1220;
  text-align: center;
  display: block;
}
.nav-mobile.is-open .nav-mobile__link,
.nav-mobile.is-open .nav-mobile__cta { opacity: 1; transform: translateY(0); }
.nav-mobile.is-open .nav-mobile__link:nth-child(1) { transition-delay: 0.10s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(2) { transition-delay: 0.16s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(3) { transition-delay: 0.22s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(4) { transition-delay: 0.28s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(5) { transition-delay: 0.34s; }
.nav-mobile.is-open .nav-mobile__cta { transition-delay: 0.42s; }

@media (max-width: 880px) { .nav__links { display: none; } .nav__burger { display: flex; } .nav__signin { display: none; } .nav__tabs-inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; } .nav__tabs-inner::-webkit-scrollbar { display: none; } .nav__tab { flex-shrink: 0; padding: 0 14px; } }
@media (max-width: 560px) { .nav__tab span:not(.nav__tab-mark) { display: none; } .nav__tab { padding: 0 10px; } .nav__main { gap: 12px; } }

/* Footer */
.footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 80px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; align-items: start; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }
.footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer__brand-logo { display: inline-flex; align-items: center; color: #fff; }
.footer__brand-name { font-size: 23px; font-weight: 700; letter-spacing: -0.03em; }
.footer__brand-tag { color: var(--text-on-dark-secondary); font-size: 14px; line-height: 1.5; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer__col-link { display: block; color: var(--text-on-dark-secondary); font-size: 14px; padding: 6px 0; transition: color 160ms; }
.footer__col-link:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; font-size: 13px; color: var(--text-on-dark-muted); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a:hover { color: #fff; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* Cards */
.cardgrid { display: grid; gap: 16px; }
.cardgrid--2 { grid-template-columns: repeat(2, 1fr); }
.cardgrid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .cardgrid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cardgrid--2, .cardgrid--3 { grid-template-columns: 1fr; } }

.card { background: var(--bg-card); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: background 160ms ease, transform 160ms ease; position: relative; overflow: hidden; }
.icon-tile { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: #0b1220; color: #fff; margin-bottom: 8px; }
.icon-tile svg { width: 20px; height: 20px; }
.icon-tile--lime { background: var(--lime); color: var(--btn-dark); }

/* Product cards */
.pcard { border-radius: var(--r-lg); padding: 32px; background: var(--bg-card); display: flex; flex-direction: column; gap: 16px; min-height: 360px; position: relative; overflow: hidden; transition: transform 200ms ease, box-shadow 200ms ease; }
/* On the grey products section, lift cards to white + soft border so they stay distinct */
#products .pcard { background: #fff; border: 1px solid var(--border-subtle); }
#products .pcard[style*="0f172a"] { border-color: transparent; }
.pcard:hover { transform: translateY(-2px); }
.pcard--blue { background: var(--blue); color: #fff; }
.pcard--blue .t-body { color: rgba(255,255,255,0.9); }
.pcard--blue .pcard__price-suffix { color: rgba(255,255,255,0.7); }
.pcard__mark { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; letter-spacing: -0.02em; }
.pcard__mark--trades { background: linear-gradient(135deg, #5b8def, #2c5fd6); }
.pcard__mark--sales { background: linear-gradient(135deg, #ff8a4c, #ef5a3c); }
.pcard__mark--roofing { background: linear-gradient(135deg, #c5f04a, #8eb52f); color: var(--btn-dark); }
.pcard__mark--d2d { background: linear-gradient(135deg, #a78bfa, #7c4dff); }
.pcard__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pcard__price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.pcard__price-num { font-family: var(--font-display); font-size: 36px; font-weight: 600; letter-spacing: -0.02em; }
.pcard__price-suffix { font-size: 13px; color: var(--text-tertiary); }
.pcard__cta { margin-top: 12px; display: flex; gap: 8px; align-items: center; }
.pcard__features { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.pcard__features li { padding-left: 22px; position: relative; opacity: 0.85; }
.pcard__features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 2px; background: currentColor; opacity: 0.5; }
.pcard--blue .pcard__features li { opacity: 0.95; }
.pcard--blue .pcard__features li::before { background: #fff; opacity: 0.7; }

/* Feature strip — bigger numbers for GlossGenius-scale impact */
.featurelist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.featurelist__item { padding: 44px 28px; border-right: 1px solid var(--border-light); }
.featurelist__item:last-child { border-right: none; }
.featurelist__item .num { font-family: var(--font-display); font-size: clamp(48px, 5vw, 68px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--blue-deep); }
.featurelist__item .t-meta { font-size: 14px; max-width: 200px; }
@media (max-width: 800px) { .featurelist { grid-template-columns: repeat(2, 1fr); } .featurelist__item:nth-child(2) { border-right: none; } .featurelist__item:nth-child(1), .featurelist__item:nth-child(2) { border-bottom: 1px solid var(--border-light); } }

/* Section soft link (per-section quiet CTA) */
.softlink { display: inline-flex; align-items: center; gap: 6px; color: var(--blue-deep); font-weight: 600; font-size: 15px; transition: gap 160ms ease; }
.softlink:hover { gap: 10px; }
.softlink svg { width: 16px; height: 16px; }

/* Media frames — screenshot + lifestyle photo */
.media-frame { border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--border-light); box-shadow: var(--shadow-screenshot); }
.media-frame__bar { height: 32px; background: var(--bg-dark); display: flex; align-items: center; padding: 0 14px; gap: 7px; }
.media-frame__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.media-frame__shot { aspect-ratio: 16/10; width: 100%; object-fit: cover; display: block; }
.media-frame__placeholder { aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); background: repeating-linear-gradient(135deg, #f1f4f9, #f1f4f9 12px, #eef2f8 12px, #eef2f8 24px); font-size: 13px; font-weight: 500; }
.media-frame__placeholder svg { width: 32px; height: 32px; opacity: 0.6; }

.photo-frame { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-screenshot); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 0 16px; color: var(--text-muted); background: repeating-linear-gradient(135deg, #e8ede4, #e8ede4 12px, #e2e8de 12px, #e2e8de 24px); font-size: 13px; font-weight: 500; }
.photo-frame__placeholder svg { width: 32px; height: 32px; opacity: 0.6; }

/* On dark sections, recolor the placeholders */
.section.dark .media-frame { background: var(--bg-dark-card); border-color: var(--border-dark-subtle); }
.section.dark .media-frame__bar { background: var(--btn-dark); }
.section.dark .media-frame__placeholder { color: var(--text-on-dark-muted); background: repeating-linear-gradient(135deg, #172033, #172033 12px, #1c2740 12px, #1c2740 24px); }
.section.dark .photo-frame__placeholder { color: var(--text-on-dark-muted); background: repeating-linear-gradient(135deg, #1c2740, #1c2740 12px, #212d4a 12px, #212d4a 24px); }

/* Platform section */
.platform { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-top: 56px; align-items: stretch; }
@media (max-width: 900px) { .platform { grid-template-columns: 1fr; } }
.platform-engine { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 56px; }
@media (max-width: 900px) { .platform-engine { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) { .platform-engine { grid-template-columns: 1fr; } }
.engine-item__icon { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-accent); color: #fff; margin-bottom: 14px; }
.engine-item__icon svg { width: 20px; height: 20px; }
.engine-item__icon--lime { background: var(--lime); color: var(--btn-dark); }
.engine-item h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: #fff; margin-bottom: 6px; }
.engine-item p { font-size: 14px; line-height: 1.5; color: var(--text-on-dark-secondary); }

/* Section CTA row */
.section-cta { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }

/* Own-it / Bundle */
.ownit { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .ownit { grid-template-columns: 1fr; gap: 48px; } }
.ownit__bullets { display: flex; flex-direction: column; gap: 28px; }
.ownit__bullet { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.ownit__bullet-mark { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--blue-deep); letter-spacing: -0.02em; }

.bundle { background: var(--bg-card); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.bundle__head { display: flex; align-items: flex-end; justify-content: space-between; }
.bundle__total { display: flex; align-items: baseline; gap: 8px; }
.bundle__total-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.bundle__total-new { font-family: var(--font-display); font-size: 40px; font-weight: 600; letter-spacing: -0.025em; color: var(--text-primary); }
.bundle__list { display: flex; flex-direction: column; gap: 8px; }
.bundle__row { display: grid; grid-template-columns: 32px 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--border-subtle); }
.bundle__row--off { background: transparent; border-style: dashed; color: var(--text-tertiary); }
.bundle__row .nav__tab-mark { width: 32px; height: 32px; font-size: 13px; }
.bundle__row-label { font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.bundle__row--off .bundle__row-label { color: var(--text-tertiary); }
.bundle__row-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.01em; }
.bundle__row--off .bundle__row-price { color: var(--text-tertiary); }
.bundle__savings { display: flex; align-items: center; padding: 14px 16px; background: #fff; border-radius: var(--r-md); border: 1px dashed var(--blue); }

.finalcta { background: var(--bg-card); border-radius: var(--r-xl); padding: 72px 64px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.finalcta__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) { .finalcta { grid-template-columns: 1fr; padding: 48px 32px; } .finalcta__cta { justify-content: flex-start; } }

/* ═══ What we stand for — connected strip ═══ */
.standfor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.standfor-grid > div {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border-light);
}
.standfor-grid > div:last-child {
  border-right: none;
}
@media (max-width: 640px) {
  .standfor-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-radius: var(--r-lg);
  }
  .standfor-grid::-webkit-scrollbar { display: none; }
  .standfor-grid > div {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-bottom: none;
    position: relative;
    overflow: hidden;
  }
  .standfor-grid > div:nth-child(2),
  .standfor-grid > div:nth-child(3) {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
  .standfor-wrap {
    position: relative;
  }
  .standfor-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .standfor-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-light);
    transition: background 200ms;
  }
  .standfor-dots span.is-active {
    background: var(--blue-deep);
    width: 18px;
    border-radius: 3px;
  }
}
@media (min-width: 641px) {
  .standfor-wrap::after { display: none; }
  .standfor-dots { display: none; }
  #standfor-grad { display: none !important; }
}

/* ═══ What we believe — two column ═══ */
.believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 640px) {
  .believe-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}