:root {
  --bg: #071320;
  --bg-2: #0b1828;
  --bg-3: #0f2136;
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.11);
  --text: #f6fbff;
  --muted: #a6b8c9;
  --soft: #d7e5f1;
  --cyan: #6ce7ff;
  --blue: #4cb6ff;
  --dark: #08111d;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(64, 195, 255, 0.10), transparent 34%),
    linear-gradient(180deg, #071320 0%, #08131f 35%, #0a1624 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

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

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.12;
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.ambient-1 {
  width: 460px; height: 460px;
  background: rgba(108, 231, 255, 0.16);
  top: 40px; left: -120px;
  animation: floatA 14s ease-in-out infinite;
}
.ambient-2 {
  width: 420px; height: 420px;
  background: rgba(76, 182, 255, 0.16);
  top: 220px; right: -110px;
  animation: floatB 16s ease-in-out infinite;
}
.ambient-3 {
  width: 360px; height: 360px;
  background: rgba(76, 182, 255, 0.08);
  bottom: 60px; left: 50%; transform: translateX(-50%);
  animation: pulseGlow 12s ease-in-out infinite;
}

@keyframes floatA {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(24px, 32px, 0); }
}
@keyframes floatB {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-20px, -26px, 0); }
}
@keyframes pulseGlow {
  0%,100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}
@keyframes bob {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 13, 22, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
}
.brand-copy { min-width: 0; }
.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b9f3ff;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav a {
  color: #c3d3e2;
  font-size: 0.95rem;
  transition: color .22s ease, opacity .22s ease;
}
.nav a:hover { color: #fff; }

.nav-help {
  position: relative;
}

.nav-help summary {
  list-style: none;
  cursor: pointer;
  color: #c3d3e2;
  font-size: 0.95rem;
  transition: color .22s ease, opacity .22s ease;
}

.nav-help summary::-webkit-details-marker {
  display: none;
}

.nav-help summary:hover,
.nav-help[open] summary {
  color: #fff;
}

.nav-help-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 50%;
  min-width: 170px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
  transform: translateX(50%);
}

.nav-help-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}

.nav-help-menu a:hover {
  background: rgba(216,170,76,0.16);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 999px;
}

.section {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}
.hero.section {
  padding-top: 48px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #c8f6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero h1,
.section-intro h2,
.feature-copy h2,
.cta-copy h2 {
  margin: 18px 0 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  font-weight: 800;
}
.section-intro h2,
.feature-copy h2,
.cta-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 750;
}
.hero-lead,
.section-intro p,
.feature-copy p,
.cta-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.65;
  max-width: 48rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.pill {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  color: #dce8f3;
  font-size: 0.94rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #88f0ff 0%, #53d8ff 100%);
  color: #071320;
  box-shadow: 0 18px 34px rgba(83,216,255,0.24);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #9af3ff 0%, #70e1ff 100%);
}
.btn-secondary,
.btn-ghost {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
}
.btn-lg {
  min-height: 48px;
  padding: 0 26px;
}

.hero-visual {
  position: relative;
}
.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(152, 235, 255, 0.18);
  pointer-events: none;
}
.orbit-1 {
  width: 126px; height: 126px;
  right: 12px; top: -30px;
  animation: spinSlow 18s linear infinite;
}
.orbit-2 {
  width: 86px; height: 86px;
  left: -14px; bottom: 100px;
  animation: bob 5s ease-in-out infinite;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

.product-frame {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(8, 16, 28, 0.82);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.floating-card {
  animation: bob 5.5s ease-in-out infinite;
}
.window-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.window-dots {
  display: flex;
  gap: 8px;
}
.window-dots span {
  width: 11px; height: 11px; border-radius: 999px;
}
.window-dots span:nth-child(1) { background: rgba(248,113,113,0.8); }
.window-dots span:nth-child(2) { background: rgba(250,204,21,0.8); }
.window-dots span:nth-child(3) { background: rgba(74,222,128,0.8); }
.window-chip {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: var(--soft);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.77rem;
}
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
  padding: 18px;
}
.product-left,
.product-right {
  display: grid;
  gap: 16px;
}
.panel {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  padding: 16px;
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.panel-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8f6ff;
}
.panel-subtitle {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #93a8ba;
}
.status-chip {
  border: 1px solid rgba(108,231,255,0.18);
  background: rgba(108,231,255,0.10);
  color: #bcf5ff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat-box,
.roll-item,
.bullet,
.stack-point {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 15px;
  background: rgba(7,15,24,0.60);
}
.stat-box {
  padding: 12px;
}
.stat-box span {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7f93a5;
}
.stat-box strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
}
.mini-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #d8f4ff;
}
.diagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.diagram {
  position: relative;
  border: 1px solid rgba(108,231,255,0.20);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(108,231,255,0.12) 0%, rgba(76,182,255,0.10) 100%);
  overflow: hidden;
}
.diagram::before {
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}
.diagram::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: 28px; bottom: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.tall { height: 168px; }
.short { height: 110px; }
.mid { height: 145px; }
.short-2 { height: 105px; }
.short-3 { height: 120px; }
.roll-list,
.bullet-list,
.stack-points { display: grid; gap: 12px; }
.roll-item,
.bullet,
.stack-point { padding: 14px; }
.roll-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.86rem;
  color: #fff;
}
.roll-meta span:last-child {
  color: #bdf4ff;
  text-align: right;
}
.progress {
  margin-top: 12px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.progress div {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8df2ff 0%, #4dbdff 100%);
}
.bullet,
.stack-point {
  color: #dbe8f2;
  position: relative;
  padding-left: 42px;
}
.bullet::before,
.stack-point::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #91f3ff, #57dbff);
  box-shadow: 0 0 0 4px rgba(108,231,255,0.10);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 42px;
}
.section-intro.centered {
  text-align: center;
  margin-inline: auto;
}
.section-intro.centered .eyebrow { margin-inline: auto; }

.card-grid {
  display: grid;
  gap: 20px;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.glass-card,
.step-card,
.glass-panel,
.cta-panel,
.faq-list details {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.glass-card,
.step-card {
  border-radius: 28px;
  padding: 28px;
}
.glass-panel {
  border-radius: 32px;
  padding: 34px;
}
.glass-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.45rem;
}
.glass-card p,
.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.icon-badge {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(108,231,255,0.18);
  background: rgba(108,231,255,0.10);
  color: #bdf4ff;
  font-size: 1.3rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: start;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.step-no {
  color: #93f3ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}

.faq-section { padding-top: 54px; }
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-more {
  margin: 4px 0 0;
  padding: 4px 2px 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-more a {
  color: var(--premium-gold);
  font-weight: 800;
  text-decoration: none;
}

.faq-more a:hover {
  text-decoration: underline;
}

.cta-section {
  position: relative;
  z-index: 2;
  padding: 76px 0 96px;
  background:
    radial-gradient(circle at 18% 8%, rgba(216,170,76,0.10), transparent 28%),
    linear-gradient(180deg, #f7f5ef 0%, #ffffff 100%);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216,170,76,0.26);
  border-radius: 18px;
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(216,170,76,0.18), transparent 30%),
    linear-gradient(135deg, #111318 0%, #171a1f 58%, #272016 100%);
  box-shadow: 0 34px 100px rgba(17,19,24,0.18);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy .eyebrow {
  color: #d8aa4c;
  border-color: rgba(216,170,76,0.36);
  background: rgba(216,170,76,0.10);
}

.cta-copy h2 {
  max-width: 760px;
  color: #fff;
}

.cta-copy p {
  max-width: 680px;
  color: rgba(255,255,255,0.72);
}

.cta-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  margin-top: 0;
}

.btn-demo-dark {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.btn-demo-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.34);
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0 36px;
}

.upgraded-footer {
  background: #08111d;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-branding {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}

.upgraded-footer .footer-branding {
  flex-direction: column;
}

.footer-branding strong { color: #edf9ff; }

.footer-branding small,
.footer-right,
.footer-help {
  color: #a6b8c9;
}

.footer-right {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a {
  color: var(--muted);
  transition: color .2s ease;
}
.footer-links a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .hero-grid,
  .feature-layout,
  .faq-layout,
  .cta-panel,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 14ch; }
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }
  .menu-toggle { display: inline-block; justify-self: end; }
  .nav {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(9, 17, 27, 0.94);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav-help,
  .nav-help summary {
    width: 100%;
  }
  .nav-help-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    transform: none;
    background: rgba(255,255,255,0.05);
  }
  .nav-actions { justify-self: end; }
  .hero-pills,
  .three-up,
  .steps-grid,
  .two-up,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero.section { padding-top: 26px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
  }
  .brand-tagline { font-size: 0.68rem; }
  .nav-actions .btn-ghost { display: none; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .btn,
  .btn-lg { width: 100%; }
  .glass-card,
  .step-card,
  .glass-panel,
  .cta-panel { padding: 24px; }
  .window-bar,
  .product-grid { padding: 14px; }
  .panel-top,
  .roll-meta,
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-right { justify-items: start; }
  .panel-top { gap: 10px; }
}

/* Premium redesign pass: header + hero */
:root {
  --premium-black: #080808;
  --premium-ink: #101114;
  --premium-gold: #d8aa4c;
  --premium-gold-2: #f0cd76;
  --premium-gold-dark: #b9852d;
  --premium-border: rgba(15, 17, 20, 0.12);
}

body {
  color: #111318;
  background: #f7f7f4;
}

.site-shell {
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 170, 76, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f4 48%, #09101a 48%, #08111d 100%);
}

.grid-overlay,
.ambient { display: none; }

.premium-header {
  background: rgba(6, 7, 8, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.premium-nav-wrap {
  min-height: 96px;
  grid-template-columns: auto 1fr auto;
}

.premium-brand {
  max-width: 315px;
}

.brand-logo-horizontal {
  width: clamp(220px, 22vw, 315px);
  height: auto;
}

.premium-nav {
  gap: 38px;
}

.premium-nav a {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.premium-nav a:hover { color: #fff; }

.premium-nav .nav-help summary {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.premium-nav .nav-help summary:hover,
.premium-nav .nav-help[open] summary {
  color: #fff;
}

.btn-login {
  color: rgba(255,255,255,0.88);
  background: transparent;
  border: 1px solid transparent;
}

.btn-login:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-gold {
  background: linear-gradient(135deg, #efdcae 0%, var(--premium-gold) 58%, var(--premium-gold-dark) 100%);
  color: #081018;
  border: 1px solid color-mix(in srgb, var(--premium-gold) 60%, rgba(15,17,20,0.18));
  box-shadow: 0 14px 28px rgba(216,170,76,0.26), inset 0 1px 0 rgba(255,255,255,0.34);
  border-radius: 14px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f6e7bd 0%, #e2b95f 58%, #c89439 100%);
  box-shadow: 0 18px 36px rgba(216,170,76,0.34), inset 0 1px 0 rgba(255,255,255,0.42);
}

.premium-hero {
  min-height: min(640px, calc(100vh - 118px));
  display: grid;
  align-items: center;
  padding-top: 42px !important;
  padding-bottom: 40px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 48%, rgba(247,244,237,0.9) 100%),
    radial-gradient(circle at 78% 22%, rgba(216,170,76,0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ed 100%);
  color: #111318;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(17,19,24,0.08);
  pointer-events: none;
  z-index: 1;
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.5), transparent 34%),
    repeating-linear-gradient(90deg, rgba(17,19,24,0.04) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(180deg, rgba(216,170,76,0.07) 0 1px, transparent 1px 78px);
  opacity: 0.5;
  pointer-events: none;
}

.premium-hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(430px, 0.88fr) minmax(560px, 1.12fr);
  gap: 54px;
}

.premium-eyebrow {
  min-height: 34px;
  padding: 0 15px;
  background: rgba(216,170,76,0.06);
  border: 1px solid rgba(216,170,76,0.5);
  color: #a06f19;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.premium-hero .hero-copy { padding-top: 0; }

.premium-hero .premium-eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #a06f19;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.premium-hero h1 {
  max-width: 20.5ch;
  margin-top: 18px;
  color: #111318;
  font-size: 2.7rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-tagline {
  max-width: 34rem;
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 1.64rem;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
}

.premium-hero .hero-lead {
  color: #4b5563;
  max-width: 35rem;
  margin-top: 18px;
  line-height: 1.52;
  font-size: 1.08rem;
}

.hero-support {
  max-width: 35rem;
  margin: 16px 0 0;
  color: #2f3743;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 600;
}

.premium-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 174px));
  gap: 14px;
  margin-top: 16px;
  max-width: 372px;
}

.premium-hero .hero-actions .btn {
  width: 100%;
  min-height: 50px;
  padding-inline: 16px;
  white-space: nowrap;
}

.btn-video {
  border-radius: 8px;
  border: 1px solid rgba(17,17,17,0.24);
  background: rgba(255,255,255,0.78);
  color: #111318;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.btn-video:hover { background: #fff; }

.premium-hero .btn-video {
  border-color: rgba(17,19,24,0.16);
  background: rgba(255,255,255,0.78);
  color: #111318;
  box-shadow: 0 16px 34px rgba(17,19,24,0.08);
}

.premium-hero .btn-video:hover {
  background: #fff;
}

.premium-benefits {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 680px;
}

.premium-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(177,132,49,0.65);
  color: #b18431;
  border-radius: 999px;
  font-weight: 800;
}

.premium-benefit strong {
  color: #111318;
  font-size: 0.96rem;
  line-height: 1.1;
}

.premium-benefit small {
  grid-column: 2;
  color: #6b7280;
  margin-top: 4px;
}

.laptop-showcase {
  position: relative;
  transform: none;
  transform-origin: center;
  animation-duration: 6.5s;
}

.laptop-screen {
  position: relative;
  min-height: 0;
  border: 12px solid #121318;
  border-radius: 24px 24px 16px 16px;
  background: #f7f7f7;
  box-shadow:
    0 46px 90px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
}

.laptop-screen::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #30343c;
  z-index: 3;
}

.laptop-base {
  width: 86%;
  height: 24px;
  margin: 0 auto;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(180deg, #d9d9d9, #8d8d8d);
  box-shadow: 0 18px 24px rgba(0,0,0,0.18);
}

.laptop-shadow {
  width: 76%;
  height: 20px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.16);
  filter: blur(18px);
}

.mock-app {
  height: 100%;
  min-height: 0;
  display: block;
  background: #f1f0eb;
}

.hero-app-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.hero-app-screenshot ~ .mock-sidebar,
.hero-app-screenshot ~ .mock-main {
  display: none;
}

.mock-sidebar {
  background: linear-gradient(180deg, #090a0c, #151719);
  padding: 28px 18px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.mock-logo-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9px;
}

.mock-sidebar span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255,255,255,0.12);
}

.mock-main { padding: 28px 28px 34px; }

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  color: #111318;
}

.mock-topbar strong { font-size: 1.3rem; }

.mock-search {
  width: 280px;
  max-width: 44%;
  border: 1px solid #e5e7eb;
  color: #9ca3af;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.mock-stats div {
  min-height: 108px;
  padding: 22px;
  border-radius: 12px;
  background: #f8f8f7;
  border: 1px solid #eeeeec;
}

.mock-stats small {
  display: block;
  color: #7b8088;
  font-size: 0.76rem;
}

.mock-stats strong {
  display: block;
  color: #111318;
  font-size: 1.7rem;
  margin-top: 14px;
}

.mock-table {
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.mock-table div {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.42fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid #efefef;
  color: #25272d;
  font-size: 0.88rem;
}

.mock-table div:last-child { border-bottom: 0; }
.mock-table span:nth-child(2),
.mock-table span:nth-child(3) { color: #6b7280; }

/* Bring the existing lower sections into the new premium visual system without rebuilding them yet. */
.section:not(.premium-hero) {
  background: #08111d;
  color: #f6fbff;
}

#solution { padding-top: 96px; }

@media (max-width: 1140px) {
  .premium-hero {
    min-height: auto;
    padding-top: 54px !important;
    padding-bottom: 58px !important;
  }
  .premium-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .laptop-showcase { transform: none; }
  .premium-hero h1 {
    max-width: 20.5ch;
    font-size: 2.8rem;
  }
  .premium-hero::after {
    inset: 0;
    opacity: 0.28;
  }
}

@media (max-width: 920px) {
  .premium-nav-wrap { min-height: 82px; }
  .brand-logo-horizontal { width: 230px; }
  .premium-nav { top: 82px; background: rgba(8,8,8,0.96); }
  .premium-benefits { grid-template-columns: 1fr; gap: 18px; }
  .mock-stats { grid-template-columns: 1fr; }
  .mock-table div { grid-template-columns: 1fr; gap: 5px; }
  .premium-hero h1 { font-size: 2.48rem; }
  .hero-tagline { font-size: 1.46rem; }
}

@media (max-width: 720px) {
  .premium-nav-wrap { grid-template-columns: 1fr auto; }
  .premium-nav-actions { grid-column: 1 / -1; width: 100%; justify-content: stretch; }
  .premium-nav-actions .btn { width: 100%; }
  .brand-logo-horizontal { width: 205px; }
  .premium-hero {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }
  .premium-hero::before {
    inset: 0;
    border-radius: 0;
  }
  .premium-hero::after { display: none; }
  .premium-hero-grid { gap: 34px; }
  .premium-hero .hero-copy {
    text-align: center;
    max-width: 31rem;
    margin-inline: auto;
  }
  .premium-hero .premium-eyebrow {
    justify-content: center;
    margin-inline: auto;
    max-width: 24rem;
    line-height: 1.35;
  }
  .premium-hero h1 {
    max-width: 20.5ch;
    font-size: 1.86rem;
  }
  .hero-tagline { font-size: 1.16rem; }
  .premium-hero .hero-lead {
    max-width: 25rem;
    margin-inline: auto;
    margin-top: 14px;
    font-size: 0.96rem;
  }
  .hero-support {
    max-width: 22rem;
    margin: 12px auto 0;
    font-size: 0.78rem;
  }
  .premium-hero .hero-actions {
    margin: 12px auto 0;
    max-width: 330px;
  }
  .premium-hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .premium-hero .hero-actions .btn {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.92rem;
  }
  .mock-app { grid-template-columns: 54px 1fr; }
  .mock-sidebar { padding: 24px 12px; }
  .mock-main { padding: 22px 18px; }
  .mock-topbar { align-items: flex-start; flex-direction: column; }
  .mock-search { max-width: none; width: 100%; }
  .premium-hero .laptop-base,
  .premium-hero .laptop-shadow {
    display: none;
  }
}

/* Desktop hero refinement: keep the product visual from crowding/overlapping the copy. */
@media (min-width: 1141px) {
  .premium-hero-grid {
    grid-template-columns: minmax(480px, 0.92fr) minmax(0, 1.08fr);
    gap: 54px;
    align-items: center;
  }

  .premium-hero .hero-visual {
    min-width: 0;
    justify-self: end;
    width: 100%;
  }

  .laptop-showcase {
    max-width: 760px;
    margin-left: auto;
    transform: none;
    transform-origin: right center;
  }

  .laptop-screen {
    min-height: 0;
  }

  .mock-app {
    min-height: 0;
  }

  .mock-main {
    padding: 24px 24px 30px;
  }

  .mock-stats div {
    min-height: 96px;
    padding: 18px;
  }

  .mock-app {
    display: block;
    min-height: 0;
    background: #f1f0eb;
  }

  .hero-app-screenshot {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-app-screenshot ~ .mock-sidebar,
  .hero-app-screenshot ~ .mock-main {
    display: none;
  }
}


/* Premium no-icon benefits section */
.premium-problem {
  position: relative;
  padding: 112px 0 !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(216,170,76,0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f3ec 100%) !important;
  color: #111318 !important;
  overflow: hidden;
}

.premium-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,19,24,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.45;
  pointer-events: none;
}

.problem-shell {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(17,19,24,0.10);
  border-radius: 34px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 34px 90px rgba(17,19,24,0.10);
  overflow: hidden;
}

.problem-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(34px, 5vw, 58px);
  right: clamp(34px, 5vw, 58px);
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(216,170,76,0.92), transparent);
}

.problem-intro {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 44px;
  text-align: center;
}

.problem-intro h2 {
  color: #101216;
  font-size: clamp(2.35rem, 3.15vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.problem-intro p {
  color: #5c6470;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .problem-intro h2 {
    white-space: normal;
  }
}

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

.problem-card {
  position: relative;
  min-height: 214px;
  padding: 30px 28px;
  border: 1px solid rgba(17,19,24,0.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
  box-shadow: 0 18px 46px rgba(17,19,24,0.07);
}

.problem-card.featured {
  border-color: rgba(177,132,49,0.32);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,238,0.88));
  box-shadow: 0 24px 58px rgba(177,132,49,0.14);
}

.problem-number {
  display: inline-block;
  margin-bottom: 42px;
  color: #b18431;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.problem-card h3 {
  margin: 0;
  color: #111318;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.problem-card p {
  margin: 14px 0 0;
  color: #606873;
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .premium-problem { padding: 78px 0 !important; }
  .problem-intro h2 {
    white-space: normal;
  }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; }
  .problem-number { margin-bottom: 26px; }
}

/* Premium split product proof section */
.product-proof {
  background:
    radial-gradient(circle at 86% 16%, rgba(202, 161, 75, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ee 100%);
  color: #101114;
  padding: 108px 0;
  border-top: 1px solid rgba(16, 17, 20, 0.07);
  border-bottom: 1px solid rgba(16, 17, 20, 0.07);
}

.product-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.product-proof-copy {
  max-width: 560px;
}

.product-proof-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: #090a0d;
}

.product-proof-copy > p {
  margin: 0;
  max-width: 520px;
  color: #555b67;
  font-size: 1.08rem;
  line-height: 1.78;
}

.proof-list {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 16, 22, 0.11);
}

.proof-item span {
  color: #b9852d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.proof-item h3 {
  margin: 0 0 6px;
  color: #0d0f14;
  font-size: 1.03rem;
  letter-spacing: -0.015em;
}

.proof-item p {
  margin: 0;
  color: #6a707b;
  line-height: 1.65;
  font-size: 0.97rem;
}

.product-proof-visual {
  position: relative;
}

.product-proof-visual::before {
  content: "";
  position: absolute;
  inset: 12% -4% -8% 12%;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(202, 161, 75, 0.22), rgba(12, 18, 28, 0.12));
  filter: blur(34px);
  opacity: 0.78;
  pointer-events: none;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(7, 12, 21, 0.12);
  background: #080d15;
  box-shadow: 0 34px 78px rgba(8, 12, 20, 0.22), 0 1px 0 rgba(255,255,255,0.55) inset;
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  transform-origin: center;
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 980px) {
  .product-proof {
    padding: 82px 0;
  }

  .product-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-proof-copy {
    max-width: none;
  }

  .screen-frame {
    transform: none;
    border-radius: 22px;
  }
}

@media (max-width: 620px) {
  .product-proof-copy h2 {
    font-size: 2.35rem;
  }

  .proof-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* HOW IT WORKS SECTION */

.how-it-works {
  background: #f8f9fb;
  padding: 100px 0;
}

.how-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.how-left {
  max-width: 520px;
}

.how-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.how-sub {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #d4af37;
  margin-top: 4px;
}

.how-step h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RIGHT SIDE MOCKUP */

.how-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.how-mockup {
  max-width: 520px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.how-mockup img {
  width: 100%;
  display: block;
}

/* MOBILE */

@media (max-width: 900px) {
  .how-inner {
    flex-direction: column;
    text-align: center;
  }

  .how-heading {
    font-size: 28px;
  }

  .how-right {
    justify-content: center;
  }

  .how-step {
    justify-content: center;
    text-align: left;
  }
}

/* PAIN SECTION */

.pain-section {
  position: relative;
  z-index: 2;
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(216,170,76,0.13), transparent 30%),
    linear-gradient(180deg, #f7f7f4 0%, #ffffff 100%);
  color: #101114;
  overflow: hidden;
}

.pain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,19,24,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,19,24,0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.4;
  pointer-events: none;
}

.pain-header {
  position: relative;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.pain-header h2 {
  margin: 18px 0 0;
  color: #101114;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.pain-header p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #5c6470;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.pain-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.pain-before,
.pain-after {
  position: relative;
  border: 1px solid rgba(17,19,24,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 30px 80px rgba(17,19,24,0.10);
  overflow: hidden;
}

.pain-before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(246,242,236,0.86)),
    repeating-linear-gradient(0deg, rgba(105,91,76,0.08) 0 1px, transparent 1px 18px);
  border-color: rgba(79,65,54,0.14);
}

.pain-before img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.pain-card-copy {
  padding: 26px;
}

.pain-card-copy-new {
  padding: 26px 26px 0;
}

.pain-card-copy h3 {
  margin: 0;
  color: #111318;
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pain-card-copy p {
  margin: 12px 0 0;
  color: #606873;
  line-height: 1.65;
}

.manual-load-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.manual-load-list div {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid rgba(95,70,54,0.16);
}

.manual-load-list div::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #9b6a45;
  box-shadow: 0 0 0 4px rgba(155,106,69,0.10);
}

.manual-load-list span {
  display: block;
  color: #8b5e42;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.manual-load-list strong {
  display: block;
  margin-top: 6px;
  color: #2f2d2a;
  font-size: 1rem;
  line-height: 1.45;
}

.pain-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,19,24,0.82);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-label.gold {
  background: #d8aa4c;
  color: #111318;
}

.pain-after {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-color: rgba(216,170,76,0.32);
  background:
    radial-gradient(circle at 80% 0%, rgba(216,170,76,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,250,238,0.86));
}

.pain-app-preview {
  border: 0;
  border-radius: 0;
  background: #101722;
  box-shadow: none;
  overflow: hidden;
}

.pain-app-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.pain-feature-list {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding: 0 26px 26px;
}

.pain-feature-list div {
  padding: 16px 0;
  border-top: 1px solid rgba(17,19,24,0.10);
}

.pain-feature-list span {
  display: block;
  color: #8a6a21;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pain-feature-list strong {
  display: block;
  margin-top: 6px;
  color: #111318;
  font-size: 1rem;
  line-height: 1.45;
}


/* BUILT FOR SECTION */

.built-for {
  position: relative;
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(216,170,76,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
  overflow: hidden;
}

.built-for::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.80), transparent 42%, rgba(255,255,255,0.56));
  pointer-events: none;
}

.built-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.built-intro {
  position: sticky;
  top: 110px;
}

.built-heading {
  max-width: 560px;
  margin: 14px 0 18px;
  color: #101114;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.built-intro p {
  max-width: 520px;
  margin: 0;
  color: #5f6872;
  font-size: 1.05rem;
  line-height: 1.72;
}

.built-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 470px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(17,19,24,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 22px 60px rgba(17,19,24,0.07);
}

.built-brand img {
  display: block;
  flex: 0 0 auto;
  width: 118px;
  height: auto;
}

.built-brand strong {
  display: block;
  color: #111318;
  font-size: 1rem;
  line-height: 1.35;
}

.built-brand span {
  display: block;
  margin-top: 7px;
  color: #6a737d;
  font-size: 0.92rem;
  line-height: 1.5;
}

.built-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.built-item {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(17,19,24,0.10);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,251,252,0.88));
  box-shadow: 0 24px 70px rgba(17,19,24,0.08);
}

.built-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(216,170,76,0.16);
  color: #8a6a21;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.built-item h3 {
  margin: 32px 0 10px;
  color: #111318;
  font-size: 1.28rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.built-item p {
  margin: 0;
  color: #5f6872;
  line-height: 1.62;
}


/* MOBILE */

@media (max-width: 900px) {

  .pain-inner {
    grid-template-columns: 1fr;
  }

  .built-layout {
    grid-template-columns: 1fr;
  }

  .built-intro {
    position: static;
  }

  .built-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .built-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .pain-before img {
    height: 300px;
  }
}
/* PREMIUM WORKFLOW SHOWCASE */
.workflow-showcase {
  position: relative;
  z-index: 2;
  padding: 86px 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(108, 231, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #081320 0%, #0a1726 52%, #071320 100%);
  overflow: hidden;
}

.workflow-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.10;
  pointer-events: none;
}

.workflow-intro {
  position: relative;
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.workflow-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(2.05rem, 4vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 780;
  color: #f6fbff;
}

.workflow-intro p {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.65;
}

.workflow-rows {
  position: relative;
  display: grid;
  gap: 54px;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 4.6vw, 62px);
  align-items: center;
}

.workflow-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
}

.workflow-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 90px rgba(0,0,0,0.38);
}

.workflow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(0deg, rgba(7, 19, 32, 0.18), transparent 42%);
  pointer-events: none;
}

.workflow-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.workflow-copy {
  max-width: 560px;
}

.workflow-row-reverse .workflow-copy {
  justify-self: end;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(108, 231, 255, 0.08));
  color: #f3d777;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

.workflow-copy h3 {
  margin: 0;
  color: #f8fcff;
  font-size: clamp(1.85rem, 2.85vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 760;
}

.workflow-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.7;
}

.workflow-row .reveal-left {
  transform: translateX(-44px);
}

.workflow-row .reveal-right {
  transform: translateX(44px);
}

.workflow-row .reveal-left.visible,
.workflow-row .reveal-right.visible {
  transform: translateX(0);
}

@media (max-width: 980px) {
  .workflow-showcase {
    padding: 60px 0;
  }

  .workflow-intro {
    margin-bottom: 42px;
  }

  .workflow-rows {
    gap: 46px;
  }

  .workflow-row,
  .workflow-row-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-row-reverse .workflow-copy {
    justify-self: auto;
  }

  .workflow-row-reverse .workflow-copy {
    order: 2;
  }

  .workflow-row-reverse .workflow-media {
    order: 1;
  }

  .workflow-copy {
    max-width: 680px;
  }

  .workflow-media img {
    height: min(70vw, 500px);
    min-height: 360px;
  }

  .workflow-row .reveal-left,
  .workflow-row .reveal-right {
    transform: translateY(26px);
  }

  .workflow-row .reveal-left.visible,
  .workflow-row .reveal-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .workflow-showcase {
    padding: 60px 0;
  }

  .workflow-rows {
    gap: 40px;
  }

  .workflow-media {
    border-radius: 22px;
  }

  .workflow-media img {
    min-height: 320px;
    height: 92vw;
  }

  .workflow-step {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-bottom: 18px;
  }
}

/* SHOP WORKFLOW SLIDESHOW */
.shop-tools-section {
  position: relative;
  z-index: 2;
  padding: 94px 0;
  background:
    linear-gradient(135deg, rgba(220,176,87,0.34) 0%, rgba(12,12,11,0.96) 26%, #070707 70%),
    linear-gradient(180deg, #17130e 0%, #080808 62%, #050505 100%);
  color: #f7f2e7;
  overflow: hidden;
}

.shop-tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0 68%, rgba(218,176,91,0.08) 68% 68.5%, transparent 68.5%),
    repeating-linear-gradient(90deg, transparent 0 96px, rgba(255,255,255,0.035) 97px, transparent 98px);
  opacity: 0.58;
  pointer-events: none;
}

.shop-tools-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -7%;
  height: 42%;
  background:
    linear-gradient(8deg, rgba(0,0,0,0.42), rgba(255,255,255,0.09) 42%, rgba(0,0,0,0.42)),
    repeating-linear-gradient(126deg, transparent 0 32px, rgba(216,170,76,0.14) 33px, transparent 35px),
    linear-gradient(135deg, #15110d 0%, #2a241b 48%, #090807 100%);
  clip-path: polygon(0 34%, 100% 10%, 100% 100%, 0 100%);
  opacity: 0.72;
  pointer-events: none;
}

.shop-tools-section > .container {
  position: relative;
  z-index: 1;
}

.shop-tools-header {
  max-width: none;
  margin: 0 0 34px;
}

.shop-tools-header h2 {
  max-width: none;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(2.15rem, 3.6vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.shop-tools-header p {
  max-width: 1040px;
  margin: 16px 0 0;
  color: rgba(247,242,231,0.72);
  font-size: clamp(1.02rem, 1.55vw, 1.15rem);
  line-height: 1.72;
}

.feature-carousel,
.shop-flow {
  position: relative;
  border: 1px solid rgba(17,19,24,0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  box-shadow: 0 34px 94px rgba(17,19,24,0.1);
  overflow: hidden;
}

.feature-carousel--cinematic {
  border-color: rgba(216,170,76,0.58);
  background:
    linear-gradient(135deg, rgba(216,170,76,0.24) 0%, rgba(9,10,10,0.92) 24%, rgba(6,7,8,0.98) 100%),
    linear-gradient(180deg, #12110f 0%, #080808 100%);
  box-shadow:
    0 42px 120px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.feature-carousel--cinematic::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: 0;
  border: 1px solid rgba(216,170,76,0.44);
  border-radius: 14px;
  pointer-events: none;
}

.feature-carousel--cinematic::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: 68px;
  z-index: 0;
  height: 34%;
  background:
    linear-gradient(9deg, rgba(0,0,0,0.64), rgba(255,255,255,0.08) 54%, rgba(216,170,76,0.16)),
    repeating-linear-gradient(124deg, transparent 0 40px, rgba(216,170,76,0.18) 42px, transparent 45px),
    linear-gradient(135deg, #0a0908 0%, #2b251d 48%, #070707 100%);
  clip-path: polygon(0 30%, 100% 5%, 100% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
}

.feature-carousel-stage,
.shop-flow-stage {
  position: relative;
  z-index: 1;
}

.feature-carousel-slide,
.shop-flow-slide {
  display: none;
  grid-template-columns: minmax(380px, 0.84fr) minmax(0, 1.16fr);
  gap: 0;
  align-items: stretch;
  min-height: 680px;
}

.feature-carousel-slide.is-active,
.shop-flow-slide.is-active {
  display: grid;
}

.feature-carousel-media,
.shop-flow-media {
  position: relative;
  z-index: 1;
  order: 2;
  display: grid;
  place-items: center;
  min-height: 680px;
  padding: clamp(54px, 5vw, 86px) clamp(28px, 4vw, 60px) clamp(92px, 8vw, 128px) clamp(16px, 2vw, 34px);
  background: transparent;
  overflow: hidden;
}

.feature-carousel-media::before,
.shop-flow-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(216,170,76,0.16) 72% 72.4%, transparent 72.4%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  opacity: 0.56;
  pointer-events: none;
}

.feature-carousel-media::after,
.shop-flow-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background:
    linear-gradient(10deg, rgba(0,0,0,0.72), rgba(255,255,255,0.07) 46%, rgba(216,170,76,0.16)),
    repeating-linear-gradient(128deg, transparent 0 38px, rgba(216,170,76,0.18) 39px, transparent 42px),
    linear-gradient(135deg, #0a0908 0%, #30291f 52%, #080706 100%);
  clip-path: polygon(0 36%, 100% 10%, 100% 100%, 0 100%);
  pointer-events: none;
}

.feature-shot,
.feature-shot-grid {
  position: relative;
  z-index: 1;
}

.feature-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  background: #090a0c;
  box-shadow: 0 34px 80px rgba(0,0,0,0.42);
}

.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-shot--wide {
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
}

.feature-shot--laptop {
  width: min(100%, 900px);
  aspect-ratio: auto;
  overflow: visible;
  padding: 14px 14px 34px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), transparent 22%),
    linear-gradient(180deg, #111318 0%, #07080a 100%);
  box-shadow:
    0 44px 88px rgba(0,0,0,0.52),
    0 0 0 1px rgba(216,170,76,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transform: perspective(1300px) rotateY(-7deg) rotateX(1.2deg);
  transform-origin: center;
}

.feature-shot--laptop::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  pointer-events: none;
}

.feature-shot--laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -30px;
  height: 34px;
  border-radius: 0 0 42px 42px;
  background:
    linear-gradient(180deg, #2d2f33 0%, #141519 42%, #050506 100%);
  box-shadow:
    0 28px 42px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.24);
}

.feature-shot--laptop img {
  position: relative;
  z-index: 1;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 13px;
  background: #f5f2eb;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.feature-shot--focus {
  width: min(78%, 500px);
  aspect-ratio: 582 / 600;
}

.feature-shot--tablet {
  width: min(78%, 480px);
  aspect-ratio: auto;
  overflow: visible;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(216,170,76,0.28), transparent 22%),
    linear-gradient(180deg, #15181d, #07080a);
  box-shadow:
    0 46px 86px rgba(0,0,0,0.52),
    0 0 0 1px rgba(216,170,76,0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
  transform: perspective(1100px) rotateY(7deg) rotateX(1deg);
}

.feature-shot--tablet::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  pointer-events: none;
}

.feature-shot--tablet img {
  position: relative;
  z-index: 1;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

.feature-shot--document {
  width: min(92%, 620px);
  aspect-ratio: 1721 / 1230;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-shot--document img {
  filter: drop-shadow(0 42px 58px rgba(0,0,0,0.48));
}

.feature-shot-grid {
  display: grid;
  width: min(100%, 860px);
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.38fr);
  gap: 16px;
  align-items: center;
}

.feature-shot-grid--quote {
  width: min(100%, 900px);
  grid-template-columns: 1fr;
  padding-right: min(16%, 150px);
}

.feature-card-stack {
  display: grid;
  position: absolute;
  right: 0;
  bottom: 2%;
  width: min(31%, 245px);
  min-width: 0;
  gap: 14px;
  z-index: 3;
  transform: rotate(2deg);
}

.feature-shot--primary {
  width: 100%;
}

.feature-shot--card {
  width: 100%;
  aspect-ratio: 582 / 600;
  border-radius: 16px;
  background: #f8f5ef;
  box-shadow:
    0 24px 46px rgba(0,0,0,0.36),
    0 0 0 1px rgba(216,170,76,0.14);
}

.feature-carousel-copy,
.shop-flow-copy {
  position: relative;
  z-index: 2;
  display: flex;
  order: 1;
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 74px);
  background: transparent;
}

.feature-carousel-kicker,
.shop-flow-kicker {
  color: #d8aa4c;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-carousel-copy h3,
.shop-flow-copy h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(2.12rem, 2.75vw, 3.28rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-carousel-copy p,
.shop-flow-copy p {
  margin: 22px 0 0;
  color: rgba(247,242,231,0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.feature-carousel-controls,
.shop-flow-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid rgba(216,170,76,0.18);
  background: rgba(5,6,7,0.78);
}

.feature-carousel-arrow,
.shop-flow-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,170,76,0.32);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #f8f1df;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.feature-carousel-arrow:hover,
.shop-flow-arrow:hover {
  border-color: rgba(216,170,76,0.74);
  background: rgba(216,170,76,0.18);
}

.feature-carousel-dots,
.shop-flow-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-carousel-dots button,
.shop-flow-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
}

.feature-carousel-dots button.is-active,
.shop-flow-dots button.is-active {
  width: 34px;
  background: #d8aa4c;
}

@media (max-width: 1040px) {
  .shop-tools-header {
    max-width: 760px;
  }

  .feature-carousel-slide,
  .feature-carousel-slide.is-active,
  .shop-flow-slide,
  .shop-flow-slide.is-active {
    grid-template-columns: 1fr;
  }

  .feature-carousel-copy,
  .shop-flow-copy {
    order: 2;
  }

  .feature-carousel-media,
  .shop-flow-media {
    order: 1;
    padding: 44px 32px 86px;
  }

  .feature-carousel-media,
  .feature-carousel-copy,
  .feature-carousel-slide,
  .shop-flow-media,
  .shop-flow-copy,
  .shop-flow-slide {
    min-height: 0;
  }

  .feature-carousel-copy,
  .shop-flow-copy {
    padding: 34px;
  }

  .feature-shot--laptop,
  .feature-shot--tablet {
    transform: none;
  }

}

@media (max-width: 680px) {
  .shop-tools-section {
    padding: 64px 0;
  }

  .shop-tools-header h2 {
    font-size: 2.28rem;
    white-space: normal;
  }

  .shop-tools-header {
    margin-inline: auto;
    text-align: center;
  }

  .shop-tools-header .premium-eyebrow {
    justify-content: center;
    margin-inline: auto;
  }

  .shop-tools-header p {
    margin-inline: auto;
  }

  .feature-carousel,
  .shop-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-carousel-stage,
  .feature-carousel-slide.is-active,
  .shop-flow-stage,
  .shop-flow-slide.is-active {
    display: contents;
  }

  .feature-carousel-media,
  .shop-flow-media {
    order: 1;
    padding: 16px;
    height: 456px;
    min-height: 0;
  }

  .feature-shot--wide,
  .feature-shot--primary {
    width: min(100%, 420px);
  }

  .feature-shot--focus {
    width: min(100%, 330px);
  }

  .feature-shot--document {
    width: min(100%, 360px);
  }

  .feature-shot-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .feature-card-stack {
    display: none;
  }

  .feature-shot--laptop {
    padding: 10px 10px 24px;
    border-radius: 20px;
  }

  .feature-shot--laptop::before {
    border-radius: 17px;
  }

  .feature-shot--laptop::after {
    left: 12%;
    right: 12%;
    bottom: -20px;
    height: 22px;
  }

  .feature-shot--laptop img {
    border-radius: 9px;
  }

  .feature-shot--tablet {
    padding: 10px;
    border-radius: 26px;
  }

  .feature-shot--tablet::before {
    border-radius: 22px;
  }

  .feature-shot--tablet img {
    border-radius: 17px;
  }

  .feature-carousel-copy,
  .shop-flow-copy {
    order: 3;
    padding: 26px;
  }

  .feature-carousel-copy h3,
  .shop-flow-copy h3 {
    font-size: 2.08rem;
  }

  .feature-carousel-controls,
  .shop-flow-controls {
    order: 2;
    gap: 12px;
    padding: 16px;
    border-top: 0;
    border-bottom: 1px solid rgba(17,19,24,0.08);
  }
}

/* =========================
   HEADER SIZE FIX
========================= */

/* Reduce header height */
.site-header {
  padding: 12px 0; /* was likely ~20-30px */
}

/* Shrink logo */
.brand-logo-horizontal {
  height: 32px; /* desktop */
  width: auto;
}

/* Slightly increase nav text so it doesn't feel tiny */
.nav a {
  font-size: 15px;
}

/* Keep buttons aligned nicely */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* =========================
   MOBILE HEADER FIX
========================= */

@media (max-width: 768px) {

  /* Smaller logo on mobile */
  .brand-logo-horizontal {
    height: 26px;
  }

  /* Remove login + CTA buttons on mobile */
  .nav-actions {
    display: none;
  }

  /* Optional: tighten header spacing more on mobile */
  .site-header {
    padding: 10px 0;
  }
}
/* Make header feel tighter and sharper */
.premium-header {
  backdrop-filter: blur(8px);
}

/* =========================
   HARD HEADER HEIGHT FIX
========================= */

.site-header,
.premium-header {
  padding: 6px 0 !important;
  min-height: 0 !important;
}

.nav-wrap,
.premium-nav-wrap {
  min-height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center !important;
}

.brand,
.premium-brand {
  display: flex !important;
  align-items: center !important;
}

.brand-logo-horizontal {
  height: 30px !important;
  width: auto !important;
  display: block !important;
}

.nav,
.premium-nav {
  align-items: center !important;
}

.nav a,
.premium-nav a {
  font-size: 15px !important;
}

.nav-actions,
.premium-nav-actions {
  align-items: center !important;
}

.premium-nav {
  gap: clamp(18px, 2vw, 30px) !important;
}

@media (max-width: 768px) {
  .site-header,
  .premium-header {
    padding: 5px 0 !important;
  }

  .nav-wrap,
  .premium-nav-wrap {
    min-height: 46px !important;
  }

  .brand-logo-horizontal {
    height: 24px !important;
  }

  .nav-actions,
  .premium-nav-actions {
    display: none !important;
  }
}

/* Homepage rhythm tightening */
.premium-problem {
  padding: 88px 0 !important;
}

#solution {
  padding-top: 88px;
}

.shop-tools-section {
  padding: 72px 0;
}

.shop-tools-header {
  margin-bottom: 42px;
}

.pain-section,
.built-for {
  padding: 82px 0;
}

.pain-header {
  margin-bottom: 40px;
}

.faq-section {
  padding: 66px 0 !important;
}

.cta-section {
  padding: 62px 0 76px;
}

@media (max-width: 920px) {
  .premium-problem,
  .pain-section,
  .built-for,
  .faq-section {
    padding: 64px 0 !important;
  }

  .shop-tools-section {
    padding: 58px 0;
  }

  .cta-section {
    padding: 54px 0 64px;
  }
}

@media (min-width: 921px) {
  .premium-hero .laptop-screen {
    min-height: 0;
  }

  .premium-hero .mock-app {
    display: block;
    min-height: 0;
    background: #f1f0eb;
  }

  .premium-hero .hero-app-screenshot {
    display: block;
    width: 100%;
    height: auto;
  }

  .premium-hero .hero-app-screenshot ~ .mock-sidebar,
  .premium-hero .hero-app-screenshot ~ .mock-main {
    display: none;
  }
}
