/* ================================================================
   Glideep Landing Page — style.css
   ================================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --accent:       #5046e5;
  --accent-dark:  #4338ca;
  --dark:         #0d0e14;
  --muted:        #6b7080;
  --muted-lt:     #9ea3b5;
  --border:       #e4e6ef;
  --hero-bg:      #eef0f7;
  --white:        #ffffff;
  --green:        #22c55e;
  --red:          #ef4444;
  --radius:       14px;
  --nav-h:        56px;
  --sh-card:      0 4px 32px rgba(13,14,20,.10), 0 1px 3px rgba(0,0,0,.06);
  --sh-lg:        0 16px 56px rgba(13,14,20,.14);
}

html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 14px; }


/* ================================================================
   HEADER
   ================================================================ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
          backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .35s ease, box-shadow .35s ease,
              border-color .35s ease, backdrop-filter .35s ease;
}
/* Subtle elevation once the user scrolls */
header.elevated {
  background: rgba(255,255,255,0.86);
  box-shadow: 0 1px 0 rgba(13,14,20,.04), 0 12px 30px -14px rgba(13,14,20,.22);
}
/* Homepage only: float transparently over the aurora hero until scrolled */
body.home header:not(.elevated) {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.4px;
  flex-shrink: 0;
}
.nav-logo img { width: 28px; height: 28px; border-radius: 8px; display: block; }

/* Platforms nav dropdown */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-caret { transition: transform .2s ease; }
.nav-dd::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-dd-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 236px; background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease; z-index: 300;
}
.nav-dd:hover .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dd:hover .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-panel a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--dark); text-decoration: none; }
.nav-dd-panel a:hover { background: var(--hero-bg); }
.nav-dd-panel img { width: 20px; height: 20px; border-radius: 5px; }
.nav-dd-all { margin-top: 4px; border-top: 1px solid var(--border); color: var(--accent) !important; font-weight: 700 !important; }

/* Centered nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;          /* pushes to centre */
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14.5px; font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--dark); background: rgba(13,14,20,.05); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

/* Action buttons (right) */
.nav-actions {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.nav-signin {
  color: var(--dark); font-size: 14.5px; font-weight: 500;
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  transition: color .18s;
}
.nav-signin:hover { color: var(--accent); }
.nav-getstarted {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--dark); color: #fff;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: -.15px;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.nav-getstarted:hover {
  background: #1e2030;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13,14,20,.22);
}

/* Mobile burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: 4px; position: relative; z-index: 1001;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile full-screen nav overlay ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: var(--hero-bg);
  display: flex; flex-direction: column;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity .28s ease, transform .32s cubic-bezier(.16,1,.3,1), visibility .28s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

/* Header row: logo + X close */
.mob-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px; height: var(--nav-h);
  background: #fff; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mob-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; letter-spacing: -.4px;
  color: var(--dark); text-decoration: none;
}
.mob-logo img { border-radius: 8px; }
.mob-x {
  width: 36px; height: 36px; border: none; cursor: pointer;
  background: rgba(13,14,20,.06); color: var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
.mob-x:hover { background: rgba(13,14,20,.12); }

/* Scrollable main content */
.mob-content { flex: 1; padding: 6px 14px 10px; display: flex; flex-direction: column; gap: 2px; }

/* Section labels — "Product", "Resources" */
.mob-sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase;
  color: var(--muted-lt); padding: 0 10px; margin: 14px 0 4px;
  display: flex; align-items: center; gap: 10px;
}
.mob-sec-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Nav links with icon */
.mob-link {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 14px; border-radius: 12px;
  font-size: 15.5px; font-weight: 600; color: var(--dark);
  text-decoration: none; transition: background .15s, color .15s;
}
.mob-link:hover { background: rgba(80,70,229,.07); color: var(--accent); }
.mob-link:active { transform: scale(.985); }
.mob-ico {
  width: 34px; height: 34px; border-radius: 9px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--muted);
  transition: background .15s, border-color .15s, color .15s;
}
.mob-link:hover .mob-ico { background: rgba(80,70,229,.08); border-color: rgba(80,70,229,.22); color: var(--accent); }

/* Resources row */
.mob-res-row {
  display: flex; align-items: stretch;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin: 2px 0 6px;
}
.mob-res-row a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 14px 6px;
  font-size: 14px; font-weight: 600; color: var(--dark);
  text-decoration: none; transition: background .15s, color .15s;
}
.mob-res-row a:hover { background: rgba(80,70,229,.06); color: var(--accent); }
.mob-res-sep { width: 1px; background: var(--border); flex-shrink: 0; }

/* Bottom CTA strip */
.mob-footer-btns {
  padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 10px;
  background: #fff; border-top: 1px solid var(--border); flex-shrink: 0;
}
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--accent); color: #fff !important;
  font-size: 15px; font-weight: 700; padding: 15px;
  border-radius: 100px; text-decoration: none; transition: background .18s;
}
.mob-cta:hover { background: var(--accent-dark); }
.mob-contact-btn {
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--dark) !important;
  padding: 14px; border-radius: 100px;
  border: 1.5px solid var(--border); text-decoration: none;
  transition: background .18s, border-color .18s;
}
.mob-contact-btn:hover { background: var(--hero-bg); border-color: rgba(80,70,229,.4); }

/* Backdrop no longer needed (full-screen menu covers everything) */
.nav-backdrop { display: none; }
body.nav-open { overflow: hidden; }
body.nav-open header {
  background: rgba(255,255,255,.92) !important;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: var(--border) !important;
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--hero-bg);
  padding-top: 72px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 0;
}

/* Left — content */
.hero-content { padding-top: 20px; padding-bottom: 72px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px 4px 4px;
  font-size: 13px; color: #4a4f65; font-weight: 500;
  margin-bottom: 28px;
}
.badge-pill {
  background: var(--dark); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: .3px;
}

/* Headline — very heavy & large */
.hero-title {
  font-size: clamp(52px, 6.8vw, 92px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }

/* Cycling word wrapper — clips the slide so it doesn't bleed into adjacent lines */
.title-cycle-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}
.title-word {
  display: inline-block;
}
.title-word.word-exit {
  animation: wordOut 0.32s cubic-bezier(0.4, 0, 1, 1) forwards;
}
.title-word.word-enter {
  animation: wordIn 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wordOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-110%); }
}
@keyframes wordIn {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 17px;
  color: #4a4f65;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-desc strong { color: var(--dark); font-weight: 700; }

/* URL input bar */
.hero-url-bar {
  display: flex; align-items: center;
  background: #fff;
  border: 1.5px solid #d8dbe9;
  border-radius: 14px;
  padding: 7px 7px 7px 20px;
  max-width: 520px;
  box-shadow: 0 2px 16px rgba(13,14,20,.06);
  margin-bottom: 20px;
  gap: 8px;
}
.url-prefix {
  color: #9ea5be;
  font-size: 14px; font-weight: 500;
  font-family: 'Courier New', 'Consolas', monospace;
  white-space: nowrap;
  flex-shrink: 0;
}
.url-input {
  flex: 1; min-width: 0;
  border: none; outline: none;
  font-size: 16px; font-weight: 600;
  color: var(--dark);
  background: transparent;
  font-family: 'Inter', sans-serif;
}
.url-input::placeholder { color: #b0b5c8; font-weight: 500; }
.url-btn {
  background: var(--dark); color: #fff;
  text-decoration: none;
  font-size: 15px; font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
  letter-spacing: -.2px;
}
.url-btn:hover { background: #1e2030; transform: translateY(-1px); }

/* Trust bullets */
.hero-trust {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }


/* ── Hero Visual (right) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px 20px 60px 0;
  overflow: visible;
}

/* Wrapper so the iPhone can escape the card */
.dash-card-wrap {
  position: relative;
  width: 100%;
}

/* ── Dashboard card ── */
.dash-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(13,14,20,.16), 0 2px 8px rgba(13,14,20,.06);
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  /* Entrance animation */
  animation: dashEntrance 0.9s cubic-bezier(0.16,1,0.3,1) both;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.dash-card:hover {
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg) scale(1.01);
  box-shadow: 20px 20px 72px rgba(13,14,20,.18), 0 4px 16px rgba(13,14,20,.08);
}

/* Browser chrome */
.dash-chrome {
  display: flex; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f1f5;
  background: #fafafa;
  gap: 12px;
}
.chrome-dots { display: flex; gap: 7px; }
.chrome-dots i {
  display: block; width: 12px; height: 12px; border-radius: 50%;
  font-style: normal;
}
.chrome-brand {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: var(--dark);
}
.chrome-brand img { width: 18px; height: 18px; border-radius: 5px; }

/* Dashboard body */
.dash-body { padding: 22px 24px; }

.dash-greeting {
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-bottom: 16px;
}

/* Stats row */
.dash-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #eef0f5;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 16px;
}
.ds { padding: 14px 16px; border-right: 1px solid #eef0f5; }
.ds:last-child { border-right: none; }
.ds-lbl {
  font-size: 10px; font-weight: 700; color: var(--muted-lt);
  letter-spacing: .7px; text-transform: uppercase; margin-bottom: 4px;
}
.ds-val {
  font-size: 34px; font-weight: 800; color: var(--dark);
  letter-spacing: -1px; line-height: 1;
}
.ds-val.green { color: var(--green); }
.ds-val.red   { color: var(--red); }
.ds-sub { font-size: 11px; color: var(--muted-lt); margin-top: 4px; }

/* App list */
.dash-apps {
  border: 1px solid #eef0f5;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 14px;
}
.app-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef0f5;
  transition: background .18s;
}
.app-row:last-child { border-bottom: none; }
.app-row:hover { background: #fafbff; }

.app-av {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.app-av.dark   { background: var(--dark); }
.app-av.orange { background: #f97316; }

.live-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--dark); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
  flex-shrink: 0; letter-spacing: .3px;
  white-space: nowrap;
}
.live-dot {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: livePulse 2s ease infinite;
}

.app-info { flex: 1; min-width: 0; }
.app-nm  { font-size: 14px; font-weight: 700; color: var(--dark); }
.app-url { font-size: 12px; color: var(--muted-lt); margin-top: 2px; }

.app-open-btn {
  font-size: 12px; font-weight: 600; color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(91,92,246,.2);
  padding: 5px 11px; border-radius: 7px;
  background: rgba(91,92,246,.05);
  flex-shrink: 0; white-space: nowrap;
  transition: background .18s;
}
.app-open-btn:hover { background: rgba(91,92,246,.12); }

/* Build list */
.dash-builds { display: flex; flex-direction: column; gap: 9px; }
.build-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); font-weight: 500;
  animation: buildFade 0.4s ease both;
}
.build-item:nth-child(1) { animation-delay: 1.2s; }
.build-item:nth-child(2) { animation-delay: 1.5s; }
.build-item:nth-child(3) { animation-delay: 1.8s; }
.bd { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bd.blue  { background: #818cf8; }
.bd.green { background: var(--green); }


/* ══════════════════════════════════════
   REAL iPHONE FRAME
══════════════════════════════════════ */
.iphone-wrap {
  position: absolute;
  bottom: -32px;
  right: -32px;    /* ~80% of phone (≈205px) overlaps inside the card area */
  z-index: 10;
  width: 200px;
  animation: phoneEntrance 1s cubic-bezier(0.16,1,0.3,1) 0.35s both,
             floatPhone 5s ease-in-out 1.35s infinite;
  filter: drop-shadow(0 32px 64px rgba(13,14,20,.50));
}
.iphone-wrap img { display: block; width: 100%; height: auto; }

/* Outer titanium frame — ultra thin */

/* Volume up */
/* Volume down */
/* Silent switch */
/* Power / side button */

/* Dynamic Island */
/* Facecam dot inside island */

/* Screen area */

/* Home indicator bar */

/* Screen content */


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */

/* Dashboard slides in from right */
@keyframes dashEntrance {
  0%   { opacity: 0; transform: translateX(40px) translateY(16px); }
  100% { opacity: 1; transform: translateX(0) translateY(0); }
}

/* Phone rises up and settles with clockwise tilt */
@keyframes phoneEntrance {
  0%   { opacity: 0; transform: translateY(60px) rotate(12deg); }
  100% { opacity: 1; transform: translateY(0) rotate(12deg); }
}

/* Continuous gentle float — keeps 12° clockwise tilt */
@keyframes floatPhone {
  0%, 100% { transform: translateY(0px)  rotate(12deg); }
  50%       { transform: translateY(-18px) rotate(12deg); }
}

/* LIVE BUILD dot pulse */
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(91,92,246,0.8); }
  60%  { box-shadow: 0 0 0 8px rgba(91,92,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,92,246,0); }
}

/* Build items fade in staggered */
@keyframes buildFade {
  0%   { opacity: 0; transform: translateX(-10px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Fade-in helper for sections */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* LIVE BUILD pill slides in from the left */
@keyframes liveSlideIn {
  0%   { opacity: 0; transform: translateX(-24px); }
  100% { opacity: 1; transform: translateX(0); }
}


/* ================================================================
   TRUST BAR — infinite marquee
   ================================================================ */

/* Left stat block */

/* Vertical divider */

/* Marquee container */
.marquee-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 26px;
  white-space: nowrap;
  cursor: default;
}
.marquee-av {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.marquee-name {
  font-size: 15px; font-weight: 600; color: var(--dark);
  letter-spacing: -.2px;
}
.marquee-name.bold { font-weight: 800; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
section { padding: 96px 0; }
.sec-chip {
  display: inline-block;
  background: rgba(91,92,246,.09); color: var(--accent);
  font-size: 11px; font-weight: 700;
  padding: 5px 13px; border-radius: 50px;
  letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900; letter-spacing: -1px;
  color: var(--dark); margin-bottom: 14px;
}
.sec-sub {
  font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 560px;
}
.sec-hdr { text-align: center; margin-bottom: 64px; }
.sec-hdr .sec-sub { margin: 0 auto; }


/* ================================================================
   PRODUCT SHOWCASE
   ================================================================ */
.product-showcase {
  background: var(--hero-bg);
  padding: 100px 0 80px;
}

/* Section header — 2-col: text left, store + steps right */
.ps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.ps-header-left { /* inherits flex-column from children */ }

/* 3-step product flow illustration */
.ps-3step-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(13, 14, 20, .12));
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.ps-header-right:hover .ps-3step-img { transform: translateY(-5px); }

/* Per-step illustrations (Configure / Build / Ship) */
.ps-step-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 16px 40px rgba(13, 14, 20, .13));
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.ps-step-visual:hover .ps-step-img { transform: translateY(-5px); }
@media (prefers-reduced-motion: reduce) {
  .ps-3step-img, .ps-step-img { transition: none; }
  .ps-header-right:hover .ps-3step-img,
  .ps-step-visual:hover .ps-step-img { transform: none; }
}

/* Store badges */

/* Step flow */

@media (max-width: 900px) {
  .ps-header { grid-template-columns: 1fr; gap: 36px; }
    }

.ps-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 100px;
  padding: 4px 16px 4px 4px;
  font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: .6px; text-transform: uppercase;
  margin-bottom: 28px;
}
.ps-badge-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark); color: #fff;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ps-title {
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.0;
  color: var(--dark); margin-bottom: 22px; max-width: 680px;
}
.ps-sub {
  font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 540px;
}

/* Step row */
.ps-step {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: center;
}

/* Step left */
.ps-step-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.ps-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ps-step-lbl {
  font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: .7px; text-transform: uppercase;
}
.ps-step-title {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.06;
  color: var(--dark); margin-bottom: 18px;
}
.ps-step-desc {
  font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 26px;
}
.ps-checks {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.ps-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--dark);
}

/* Editor mockup */
.ps-step-visual { position: relative; }


.editor-sidebar-item.active {
  background: rgba(91,92,246,.09);
  color: var(--dark); font-weight: 600;
}
.editor-dot.active { background: var(--accent); }



.editor-tab.active { background: var(--dark); color: #fff; }


/* Spacing between consecutive steps */
.ps-step ~ .ps-step { margin-top: 72px; }

/* Flipped step — visual left, content right */
.ps-step--flip {
  grid-template-columns: 1.5fr 1fr;
}
.ps-step--flip .ps-step-visual { order: -1; }

/* Build cards mockup */

/* ── Ship mockup ── */

@media (max-width: 1080px) {
  .ps-step { grid-template-columns: 1fr; gap: 40px; }
  .ps-step--flip { grid-template-columns: 1fr; }
  .ps-step--flip .ps-step-visual { order: 0; }
}


/* ================================================================
   COMPATIBILITY SECTION
   ================================================================ */

.compat-header .sec-sub { margin: 0 auto; }

/* Compatibility band — ultra-thin: small title left, platform rows right */
.compat-band {
  background: #fff;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.compat-band-inner {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 32px;
  align-items: center;
}
.compat-band-text { text-align: left; }
.compat-band-text .sec-chip { margin-bottom: 8px; }
.compat-band-text .sec-title {
  font-size: 18px; line-height: 1.22; letter-spacing: -.4px; margin: 0; max-width: 320px;
}
.compat-band-rows { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.compat-band-rows .compat-row-wrap { margin-bottom: 0; }
@media (max-width: 860px) {
  .compat-band { padding: 18px 0; }
  .compat-band-inner { grid-template-columns: 1fr; gap: 16px; }
  .compat-band-text { text-align: center; }
  .compat-band-text .sec-title { max-width: none; }
}

/* Testimonials app marquee (moved from old trust bar) */
.tst-section .sec-hdr { margin-bottom: 22px; }
.tst-marquee {
  margin: 10px 0 36px;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.tst-marquee + .tst-rating { margin-top: 0; }

/* Marquee rows */
.compat-row-wrap {
  overflow: hidden;
  margin-bottom: 14px;
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.compat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}
.compat-row--left  { animation: compatLeft  38s linear infinite; }
.compat-row--right { animation: compatRight 42s linear infinite; }
.compat-row-wrap:hover .compat-row { animation-play-state: paused; }

@keyframes compatLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes compatRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Individual badge */
.compat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hero-bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px 9px 9px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.compat-badge:hover {
  background: #fff;
  border-color: rgba(91,92,246,.3);
  box-shadow: 0 4px 20px rgba(91,92,246,.12);
  transform: translateY(-2px);
}
.compat-ico {
  width: 28px; height: 28px;
  border-radius: 7px;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.compat-name {
  font-size: 14px; font-weight: 600; color: var(--dark);
  letter-spacing: -.2px;
}

/* Bottom catch-all line */


/* ================================================================
   FEATURES
   ================================================================ */
.features { background: #fff; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card {
  background: var(--hero-bg); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--border); transition: all .3s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(91,92,246,.2);
}
.feat-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg,#6b6cf8,#4337d0);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 9px; letter-spacing: -.3px; }
.feat-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 31px;
  left: calc(16.7% + 16px); right: calc(16.7% + 16px);
  height: 2px;
  background: linear-gradient(90deg,#6b6cf8,#4337d0);
  opacity: .18;
}
.step-card { text-align: center; }
.step-num {
  width: 62px; height: 62px;
  background: linear-gradient(135deg,#6b6cf8,#4337d0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: #fff;
  margin: 0 auto 22px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(91,92,246,.38);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 7px; letter-spacing: -.3px; }
.step-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }


/* ================================================================
   WHAT YOU GET
   ================================================================ */


/* ================================================================
   STUDIO — BEYOND THE BUILDER
   ================================================================ */
.studio-section {
  background: var(--hero-bg);
  padding: 100px 0;
}

/* Header */
.studio-header { margin-bottom: 48px; }

.studio-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); background: #fff;
  border-radius: 100px; padding: 4px 16px 4px 4px;
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: 24px;
}
.studio-badge-plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff7ed; border: 1.5px solid #fed7aa;
  color: #ea580c; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.studio-title {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.0;
  color: var(--dark); margin-bottom: 18px;
}
.studio-sub {
  font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 560px;
}

/* Hero feature card */
.studio-hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(13,14,20,.06);
}
.studio-hero-left {
  padding: 36px 40px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.studio-hero-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.studio-hero-title {
  font-size: 22px; font-weight: 800; color: var(--dark);
  letter-spacing: -.5px; line-height: 1.2;
}
.studio-hero-desc {
  font-size: 14px; color: var(--muted); line-height: 1.75;
}
.studio-cta-link {
  font-size: 14px; font-weight: 700; color: var(--dark);
  text-decoration: none; transition: color .18s;
  margin-top: 4px;
}
.studio-cta-link:hover { color: var(--accent); }

.studio-hero-right {
  background: rgba(91,92,246,.05);
  display: flex; align-items: center; justify-content: center;
  padding: 36px 32px;
  border-left: 1px solid var(--border);
}
.studio-url-demo {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.studio-url-field {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 18px;
  display: flex; align-items: center; gap: 4px;
  font-size: 14px;
}
.studio-url-prefix { color: var(--muted-lt); font-family: 'Courier New', monospace; }
.studio-url-val    { font-weight: 700; color: var(--dark); }
.studio-url-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(91,92,246,.14); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.studio-url-app {
  width: 58px; height: 58px; border-radius: 17px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: -1px;
  box-shadow: 0 8px 24px rgba(91,92,246,.35);
}

/* Service cards */
.studio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.studio-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .22s, transform .22s;
}
.studio-card:hover {
  box-shadow: 0 8px 32px rgba(13,14,20,.10);
  transform: translateY(-3px);
}
/* 4th and 5th cards span wider to fill 2-col second row */
.studio-card:nth-child(4),
.studio-card:nth-child(5) {
  grid-column: span 1;
}
.studio-grid::after {
  content: ''; /* keeps 3-col grid balanced with 5 items */
}
.studio-card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.studio-card-title {
  font-size: 16px; font-weight: 800; color: var(--dark);
  letter-spacing: -.3px;
}
.studio-card-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1;
}

@media (max-width: 1080px) {
  .studio-hero-card { grid-template-columns: 1fr; }
  .studio-hero-right { border-left: none; border-top: 1px solid var(--border); }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .studio-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   NO MAC — NO PROBLEM
   ================================================================ */
.nomac-section {
  background: linear-gradient(145deg, #0b0c18 0%, #0f1024 60%, #0d0e14 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.nomac-glow {
  position: absolute;
  top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(91,92,246,.18) 0%, transparent 68%);
  pointer-events: none;
}

/* Header */
.nomac-header { text-align: center; margin-bottom: 60px; }
.nomac-chip {
  display: inline-block;
  background: rgba(91,92,246,.18); color: #a5b4fc;
  font-size: 11px; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 20px;
  border: 1px solid rgba(91,92,246,.25);
}
.nomac-title {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.0;
  color: #fff; margin-bottom: 20px;
}
.nomac-accent { color: var(--accent); }
.nomac-sub {
  font-size: 16px; color: rgba(255,255,255,.55);
  line-height: 1.75; max-width: 540px; margin: 0 auto;
}

/* Cards grid */
.nomac-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 40px;
}
.nomac-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s, border-color .25s;
}
.nomac-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(91,92,246,.35);
}

/* Visuals */
.nomac-visual {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 22px 20px;
  margin-bottom: 4px;
  display: flex; flex-direction: column; gap: 16px;
}
.nomac-vis-row {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.nomac-device {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  position: relative; flex-shrink: 0;
}
.nomac-block-x {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #1a1a2e; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.nomac-vis-arrow {
  color: rgba(255,255,255,.3);
}
.nomac-published {
  display: flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 700; color: #4ade80;
}
.nomac-vis-tags {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.nv-tag {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px; border-radius: 100px;
}

/* Cert list */
.nomac-cert-list { display: flex; flex-direction: column; gap: 8px; }
.nomac-cert-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 10px 14px;
}
.nomac-cert-icon {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nomac-cert-info { flex: 1; min-width: 0; }
.nomac-cert-name { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85); }
.nomac-cert-sub  { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.nomac-cert-badge {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.nomac-cert-badge.green { background: rgba(34,197,94,.2); color: #4ade80; }

/* Card text */
.nomac-card-title {
  font-size: 20px; font-weight: 800; color: #fff;
  letter-spacing: -.4px; line-height: 1.2;
}
.nomac-card-desc {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.75; flex: 1;
}
.nomac-cta {
  font-size: 14px; font-weight: 700; color: #a5b4fc;
  text-decoration: none; transition: color .18s;
}
.nomac-cta:hover { color: #fff; }

/* Bottom bar */
.nomac-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nomac-bottom-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
  .nomac-grid { grid-template-columns: 1fr; }
  .nomac-bottom { gap: 20px; flex-direction: column; }
}


/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-wrap {
  background: var(--dark); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(107,108,248,.22) 0%,transparent 70%);
  pointer-events: none;
}
.cta-wrap .sec-chip { background: rgba(107,108,248,.2); color: #a5b4fc; }
.cta-wrap .sec-title { color: #fff; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.58); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark);
  text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 100px; transition: all .2s;
}
.btn-white:hover { background: var(--hero-bg); transform: translateY(-2px); }
.btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.22); transition: all .2s;
}
.btn-outline-w:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}


/* ================================================================
   FOOTER
   ================================================================ */
footer { background: #fff; border-top: 1px solid var(--border); padding: 52px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.foot-brand {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--dark);
  font-weight: 800; font-size: 18px; letter-spacing: -.5px;
  margin-bottom: 12px;
}
.foot-brand img { width: 30px; height: 30px; border-radius: 8px; }
.foot-tag { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 270px; }
.foot-col-t {
  font-size: 11px; font-weight: 700; color: var(--dark);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { text-decoration: none; color: var(--muted); font-size: 14px; transition: color .18s; }
.foot-links a:hover { color: var(--accent); }
.foot-btm {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted-lt);
}
.foot-btm-links { display: flex; gap: 22px; }
.foot-btm-links a { color: var(--muted-lt); text-decoration: none; font-size: 13px; transition: color .18s; }
.foot-btm-links a:hover { color: var(--accent); }
.foot-social { display: flex; align-items: center; gap: 16px; }
.foot-social a { color: var(--muted-lt); display: flex; align-items: center; transition: color .18s; }
.foot-social a:hover { color: var(--accent); }

/* Mobile-only footer CTA — hidden on desktop */
.foot-mob-cta { display: none; }


/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Tablet (≤1080px) ── */
@media (max-width: 1080px) {
  .hero-inner      { gap: 24px; }
  .hero-visual     { padding-right: 16px; }
  .iphone-wrap     { width: 160px; right: -20px; bottom: -24px; }
  .feat-grid       { grid-template-columns: repeat(2, 1fr); }
    .foot-grid       { grid-template-columns: 1fr 1fr; }
    .studio-hero-card  { grid-template-columns: 1fr; }
  .studio-hero-right { border-left: none; border-top: 1px solid var(--border); }
  .studio-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section    { padding: 64px 0; }

  /* ── Header ── */
  .nav-links               { display: none; }
  .nav-actions             { display: none; }
  .burger                  { display: flex; margin-left: auto; }

  /* ── Hero ── */
  .hero            { padding-top: 68px; padding-bottom: 0; }
  .hero-inner      { grid-template-columns: 1fr; gap: 0; }
  .hero-visual     { display: none; }
  .iphone-wrap     { display: none; }
  .hero-content    { padding-top: 12px; padding-bottom: 44px; }
  .hero-title      { font-size: 62px; letter-spacing: -2.5px; }
  .hero-desc       { font-size: 15px; }
  .hero-url-bar    { max-width: 100%; flex-wrap: wrap; gap: 8px; padding: 8px; }
  .url-btn         { width: 100%; text-align: center; border-radius: 8px; }
  .hero-trust      { gap: 12px; }
  .hero-badge      { font-size: 12px; margin-top: 24px; }

  /* ── Trust bar / Marquee ── */
        .marquee-wrap    { width: 100vw; margin-left: -16px; }

  /* ── Product showcase ── */
  .ps-header         { grid-template-columns: 1fr; gap: 28px; }
        .ps-step           { grid-template-columns: 1fr; gap: 28px; }
  .ps-step--flip     { grid-template-columns: 1fr; }
  .ps-step--flip .ps-step-visual { order: 0; }
  .ps-step ~ .ps-step { margin-top: 48px; }
  .ps-step-title     { font-size: 28px; }
  .ps-title          { font-size: 36px; letter-spacing: -1.5px; }
    
  /* ── Compatibility ── */
    .compat-header .sec-title { font-size: 26px; }
    
  /* ── Features ── */
  .feat-grid { grid-template-columns: 1fr; }

  /* ── How it works ── */
  .steps-grid       { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }

  /* ── What you get ── */
  
  /* ── Studio section ── */
  .studio-section   { padding: 72px 0; }
  .studio-title     { font-size: 34px; letter-spacing: -1.5px; }
  .studio-hero-card { grid-template-columns: 1fr; }
  .studio-hero-right{ border-left: none; border-top: 1px solid var(--border); }
  .studio-hero-left { padding: 24px 20px; }
  .studio-grid      { grid-template-columns: 1fr; }
  .studio-url-demo  { flex-wrap: wrap; gap: 10px; }

  /* ── No Mac section ── */
  .nomac-section    { padding: 72px 0; }
  .nomac-title      { font-size: 40px; letter-spacing: -2px; }
  .nomac-grid       { grid-template-columns: 1fr; gap: 14px; }
  .nomac-card       { padding: 22px; }
  .nomac-bottom     { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nomac-vis-row    { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* ── CTA ── */
  .cta-wrap    { padding: 72px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-w { width: 100%; max-width: 300px; justify-content: center; }

  /* ── Footer ── */
  footer { padding: 36px 0 20px; }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  /* Brand: spans full width, centered */
  .foot-grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
  }
  .foot-brand    { justify-content: center; }
  .foot-tag      { max-width: 290px; margin: 6px auto 0; }
  /* Mobile CTA inside footer brand */
  .foot-mob-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity .18s;
  }
  .foot-mob-cta:hover { opacity: .88; }
  /* Product column (left) */
  .foot-grid > div:nth-child(2) {
    padding: 0 12px 24px 0;
    border-right: 1px solid var(--border);
  }
  /* Account column (right) */
  .foot-grid > div:nth-child(3) {
    padding: 0 0 24px 16px;
  }
  /* Support: full width strip */
  .foot-grid > div:nth-child(4) {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .foot-grid > div:nth-child(4) .foot-col-t { margin-bottom: 0; flex-shrink: 0; }
  .foot-grid > div:nth-child(4) .foot-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .foot-btm {
    margin-top: 20px;
    padding-top: 16px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .foot-btm-links { justify-content: center; }
  .foot-social { justify-content: center; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-title   { font-size: 50px; letter-spacing: -2px; }
  .hero-badge   { font-size: 11px; padding: 3px 10px 3px 3px; margin-top: 24px; }
  .ps-title     { font-size: 30px; }
  .ps-step-title{ font-size: 24px; }
  .studio-title { font-size: 28px; }
  .nomac-title  { font-size: 32px; }
  .sec-title    { font-size: 24px; }
              .compat-badge { padding: 7px 12px 7px 7px; }
  .compat-name  { font-size: 12px; }
  }


/* ================================================================
   ★ MODERN POLISH LAYER (2026 refresh)
   ================================================================ */

/* ── Hero: aurora gradient mesh + subtle grid ── */
.hero { position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(48% 55% at 18% 12%, rgba(80,70,229,.20) 0%, transparent 60%),
    radial-gradient(42% 48% at 88% 8%,  rgba(124,58,237,.16) 0%, transparent 62%),
    radial-gradient(50% 50% at 70% 95%, rgba(34,197,94,.10) 0%, transparent 60%);
  filter: blur(6px);
  animation: auroraDrift 18s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(13,14,20,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,14,20,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
          mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }

@keyframes auroraDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2%,1.5%,0) scale(1.05); }
  100% { transform: translate3d(2%,-1%,0) scale(1.03); }
}

/* Badge: live shimmer dot */
.badge-pill { position: relative; overflow: hidden; }
.badge-pill::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shimmerSweep 3.4s ease-in-out infinite;
}
@keyframes shimmerSweep { 0%{left:-120%} 55%,100%{left:160%} }

/* Primary buttons: sheen on hover */
.url-btn, .nav-getstarted, .mob-cta { position: relative; overflow: hidden; }
.url-btn::after, .nav-getstarted::after {
  content: ''; position: absolute; top: 0; left: -150%;
  width: 60%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .6s ease;
}
.url-btn:hover::after, .nav-getstarted:hover::after { left: 160%; }

/* Card hover lift — unify feel across the page */
.feat-card, .studio-card, .nomac-card, .step-card {
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.feat-card:hover, .studio-card:hover, .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

/* Staggered reveal — when a grid is in view, children cascade */
.feat-grid .fade-in.visible,
.tst-grid  .fade-in.visible { transition-delay: var(--d, 0s); }


/* ================================================================
   TESTIMONIALS
   ================================================================ */
.tst-section { padding: 100px 0; background: var(--white); }
.tst-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin: -16px auto 44px;
}
.tst-stars { display: inline-flex; gap: 2px; }
.tst-rating-txt { font-size: 14px; color: var(--muted); }
.tst-rating-txt strong { color: var(--dark); font-weight: 800; }

.tst-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.tst-card {
  background: var(--hero-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
}
.tst-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.tst-quote {
  font-size: 16px; line-height: 1.7; color: #2c2f3d;
  font-weight: 500; margin: 0; flex: 1;
}
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.tst-meta { display: flex; flex-direction: column; line-height: 1.35; }
.tst-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.tst-role { font-size: 12.5px; color: var(--muted); }


/* ================================================================
   FAQ (homepage accordion)
   ================================================================ */
.faq-home { padding: 100px 0; background: var(--hero-bg); }
.faq-home-inner {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px;
  align-items: start;
}
.faq-home-left .sec-chip { margin-bottom: 16px; }
.faq-home-left .sec-title { text-align: left; }
.faq-home-left .sec-sub   { text-align: left; margin: 0 0 24px; }
.faq-home-cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 700; font-size: 15px;
  text-decoration: none; transition: gap .2s;
}
.faq-home-cta:hover { gap: 10px; }

.faq-home-right { display: flex; flex-direction: column; gap: 12px; }
.faq-acc {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 0 20px;
  transition: border-color .2s, box-shadow .2s;
}
.faq-acc[open] { border-color: #cdd0e0; box-shadow: var(--sh-card); }
.faq-acc:hover { border-color: #cdd0e0; }
.faq-q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 700; color: var(--dark);
  padding: 18px 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q em { font-style: italic; color: var(--accent); }
.faq-ic {
  position: relative; width: 16px; height: 16px; flex-shrink: 0;
}
.faq-ic::before, .faq-ic::after {
  content: ''; position: absolute; background: var(--accent);
  border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}
.faq-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ic::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-acc[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  font-size: 15px; line-height: 1.7; color: var(--muted);
  padding: 0 0 20px; margin-top: -4px;
  animation: faqReveal .3s ease;
}
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Responsive: testimonials + FAQ ── */
@media (max-width: 1080px) {
  .tst-grid { grid-template-columns: 1fr 1fr; }
  .tst-grid .tst-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .faq-home-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .tst-section, .faq-home { padding: 64px 0; }
  .tst-grid { grid-template-columns: 1fr; }
  .tst-grid .tst-card:last-child { grid-column: auto; }
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .badge-pill::after { animation: none; }
  .url-btn::after, .nav-getstarted::after { display: none; }
}

/* ════════ Video demo — lazy YouTube facade ════════ */
.video-demo {
  padding: 96px 0;
  background: #eef0f7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Desktop: text left, video right */
.video-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.video-demo-text { text-align: left; }
.video-demo-text .sec-sub { margin-top: 0; }
.video-frame {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;          /* reserves space → zero CLS */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: #0d0e14;
}
.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
  cursor: pointer;
  background: #0d0e14;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,14,20,.05), rgba(13,14,20,.45));
  transition: background .3s ease;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(80,70,229,.45);
  transition: transform .25s ease, background .25s ease;
}
.video-play svg { width: 16px; height: 16px; margin-left: 2px; }
.video-facade:hover .video-thumb { transform: scale(1.04); }
.video-facade:hover::after { background: linear-gradient(180deg, rgba(13,14,20,.05), rgba(13,14,20,.32)); }
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--accent-dark, #4337d0); }
.video-facade:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Lightbox modal — enlarged player on click */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13,14,20,.84);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.video-modal.open { display: flex; animation: videoFade .2s ease; }
@keyframes videoFade { from { opacity: 0; } to { opacity: 1; } }
.video-modal-box {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.video-modal-holder, .video-modal-holder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.3); transform: scale(1.08); }
.video-modal-close:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Mobile: stack text over video (top/bottom) */
@media (max-width: 860px) {
  .video-demo-inner { grid-template-columns: 1fr; gap: 30px; }
  .video-demo-text { text-align: center; }
  .video-demo-text .sec-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .video-demo { padding: 56px 0; }
  .video-play { width: 36px; height: 36px; }
  .video-modal { padding: 14px; }
  .video-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }
}
