:root {
  --burgundy: #6B1D2A;
  --burgundy-deep: #4A1019;
  --navy: #1B2A4A;
  --navy-light: #2A3D66;
  --gold: #C9A84C;
  --gold-light: #DFC372;
  --cream: #FAF6EF;
  --cream-warm: #F5EDE0;
  --offwhite: #FFFDF9;
  --charcoal: #2C2C2C;
  --warm-gray: #8A8279;
  --taupe: #B8AFA4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--gold-light); }

details p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, padding 0.5s ease;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
details[open] p {
  max-height: 200px;
  opacity: 1;
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.fold-section { max-width: 440px; width: 100%; padding: 0 1rem; margin: 0 auto; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 29, 42, 0.08);
  transition: all 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); text-shadow: 1px 1px 0 var(--navy), -1px -1px 0 var(--navy), 1px -1px 0 var(--navy), -1px 1px 0 var(--navy); }

.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--burgundy); }

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--burgundy-deep) !important;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.hero-left {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-brand-mark {
  display: block;
  width: 380px; max-width: 90%;
  height: auto;
  margin-bottom: 3rem; margin-top: 2rem;
  opacity: 0;
  animation: fadeSlideIn 0.6s ease 0.3s forwards;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  border-radius: 12px;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -30%;
  width: 80%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.3s forwards;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.5s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: slideUp 0.8s ease 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: slideUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 246, 239, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: var(--charcoal);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(27, 42, 74, 0.2), 0 8px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: phoneFloat 0.8s ease 0.6s forwards;
}

.phone-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}

.phone-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.phone-carousel img.active { opacity: 1; }

.carousel-steps {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(27, 42, 74, 0.6);
  border-radius: 20px;
  font-size: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-step.active { background: var(--burgundy); color: var(--cream); }
.carousel-step .step-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.hero-right::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid var(--gold);
  opacity: 0.15;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-right .deco-line { position: absolute; background: var(--burgundy); opacity: 0.06; }
.deco-line.h { width: 200px; height: 1px; top: 30%; right: 0; }
.deco-line.v { width: 1px; height: 200px; bottom: 10%; left: 20%; }

.stat-strip {
  background: var(--burgundy);
  padding: 3rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
  pointer-events: none;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--cream);
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 3rem; margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--burgundy); }

.section-problem {
  padding: 8rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
  background: var(--navy);
  border-radius: 12px;
}

.problem-sticky { position: sticky; top: 8rem; }

.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 3rem; margin-top: 2rem;
}
.problem-headline em { color: var(--gold); font-style: italic; }

.problem-intro { font-size: 1.05rem; color: var(--taupe); line-height: 1.8; }

.section-problem .section-label { color: var(--gold); }
.section-problem .section-label::before { background: var(--gold); }

.problem-scenarios { display: flex; flex-direction: column; gap: 2rem; }

.scenario {
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--cream-warm);
  transition: all 0.4s ease;
  position: relative;
}
.scenario:hover {
  border-left-color: var(--burgundy);
  background: var(--offwhite);
  padding-left: 3rem;
}

.scenario-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.scenario-reality { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.7; }
.scenario-reality strong { color: var(--burgundy); font-weight: 600; }

.problem-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.problem-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.problem-logo-mirror {
  display: block;
  width: 180px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .problem-logo-mirror { display: none; }
}

.storage-callout {
  background: var(--navy);
  margin: 0 5rem;
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.storage-callout::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -50%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(107, 29, 42, 0.15), transparent 70%);
  pointer-events: none;
}

.storage-big-number {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.9;
  white-space: nowrap;
}
.storage-big-number span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.storage-text { color: var(--cream); text-align: center; }
.storage-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.storage-text h3 em { color: var(--gold); font-style: italic; }
.storage-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 650px;
  margin: 0 auto;
}

.section-how {
  padding: 8rem 5rem;
  background: var(--offwhite);
  position: relative;
}

.section-how .section-label { text-align: center; justify-content: center; }
.section-how .section-label::before { display: none; }

.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 5rem;
}

.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.how-step {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.step-visual {
  background: var(--cream-warm);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.step-visual::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--burgundy);
  opacity: 0.06;
  line-height: 1;
  z-index: 0;
}

/* Step card flipper */
.step-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.step-frame.active {
  opacity: 1;
  pointer-events: auto;
}
.step-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.step-frame.text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.2rem;
  background: var(--navy);
}
.step-frame.text-card .sf-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.step-frame.text-card .sf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.step-frame.text-card .sf-desc {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.7;
}
.step-frame.text-card .sf-desc strong { color: var(--cream); }

/* Tap indicator bar */
.step-tap-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  background: rgba(10,8,20,0.72);
  backdrop-filter: blur(4px);
}
.step-tap-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.step-tap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250,246,239,0.25);
  transition: background 0.25s;
}
.step-tap-dot.active {
  background: var(--gold);
}
.step-tap-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(250,246,239,0.55);
  text-transform: uppercase;
}
.step-tap-label em {
  color: var(--gold);
  font-style: normal;
}
.step-tap-next {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: rgba(250,246,239,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.step-tap-next svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.step-desc { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.8; }
.step-desc strong { color: var(--charcoal); }

.section-demo {
  padding: 5rem 2rem;
  background: var(--offwhite);
}

.demo-carousel-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.demo-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.demo-set {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.demo-set-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 3rem; margin-top: 2rem;
}

.demo-images {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-images img {
  width: auto;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(27,42,74,0.12);
}

.demo-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.demo-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--taupe);
  cursor: pointer;
  transition: all 0.3s;
}

.demo-nav-dot.active { background: var(--burgundy); transform: scale(1.2); }

.section-diff {
  padding: 8rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.diff-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}
.diff-headline em { color: var(--burgundy); font-style: italic; }

.diff-intro {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  align-self: end;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  padding: 2.5rem;
  border: 1px solid rgba(27, 42, 74, 0.08);
  transition: all 0.4s ease;
  position: relative;
  background: var(--cream);
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.diff-card:hover::before { transform: scaleX(1); }
.diff-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 42, 74, 0.08);
}

.diff-card-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem; margin-top: 0;
  color: var(--gold);
}

.diff-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.diff-card p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.7; }

.diff-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--navy);
  border-color: var(--navy);
}
.diff-card.wide h3 { color: var(--cream); }
.diff-card.wide p { color: var(--taupe); }
.diff-card.wide .diff-card-icon { background: var(--burgundy); width: 64px; height: 64px; font-size: 1.5rem; }

.section-vs {
  background: var(--cream-warm);
  padding: 6rem 5rem;
}

.vs-inner { max-width: 900px; margin: 0 auto; }

.vs-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin-bottom: 4rem;
}

.vs-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(27, 42, 74, 0.08);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: baseline;
}

.vs-them {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
}

.vs-us { font-size: 1rem; color: var(--navy); line-height: 1.6; }
.vs-us strong { color: var(--burgundy); font-weight: 600; }

.section-who { padding: 8rem 5rem; background: var(--cream); }

.section-cta {
  background: var(--navy);
  padding: 8rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}
.section-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
}

.cta-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 3rem; margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.cta-tagline em { color: var(--gold); font-style: italic; }

.cta-sub {
  font-size: 1.1rem;
  color: var(--taupe);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-cta .btn-primary { font-size: 0.95rem; padding: 1.2rem 3rem; position: relative; z-index: 2; }

footer {
  background: var(--burgundy-deep);
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  opacity: 0.6;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 0.8; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneFloat {
  from { opacity: 0; transform: translateY(40px) rotate(2deg); }
  to { opacity: 1; transform: translateY(0) rotate(-1deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero > div { padding-left: 2rem !important; padding-right: 2rem !important; }
  .how-headline { font-size: 2rem !important; }
  .section-problem { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
  .problem-sticky { position: static; }
  .storage-callout { margin: 0 1rem; padding: 3rem 2rem; }
  .storage-callout > div > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 1.5rem; }
  nav { padding: 0.8rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-links { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.04em; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
  .how-step { padding: 0 1rem; }
  .step-visual { height: 460px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card.wide { grid-template-columns: 1fr; }
  .diff-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .vs-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .section-how, .section-diff, .section-vs, .section-cta { padding: 4rem 2rem; }
  .section-who { padding: 4rem 2rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
  .cta-tagline { font-size: 2.5rem; }
  
  .mobile-cta-float {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: var(--burgundy);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 30px rgba(107, 29, 42, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .mobile-cta-float:hover {
    background: var(--burgundy-deep);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 29, 42, 0.5);
  }
  .mobile-cta-float.hidden {
    opacity: 0;
    pointer-events: none;
  }
}

/* ===== HERO DEMO SLIDERS ===== */
.hero-demo-set { width: 100%; }
.hero-demo-slider { position: relative; overflow: hidden; border-radius: 12px; background: var(--charcoal); }
.hero-demo-track { display: flex; transition: transform 0.4s ease; }
.hero-demo-slide { position: relative; }
.hero-demo-slide img { width: 100%; height: auto; display: block; object-fit: contain; background: #111; }
.hero-demo-label {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream); background: rgba(10,8,20,0.7);
  padding: 0.35rem 1rem; border-radius: 20px; backdrop-filter: blur(4px);
}
.hero-demo-dots {
  display: flex; gap: 8px; justify-content: center; padding: 1rem 0;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,8,20,0.6));
}
.hero-demo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(250,246,239,0.3); cursor: pointer; transition: background 0.25s;
}
.hero-demo-dot.active { background: var(--gold); }

/* Desktop: 3 images side by side, no slider */
@media (min-width: 901px) {
  .hero-demo-track { transition: none; }
  .hero-demo-slide { min-width: 0; flex: 1; }
  .hero-demo-slide img { max-height: 550px; border-radius: 8px; }
  .hero-demo-track { gap: 1rem; }
  .hero-demo-dots { display: none; }
  .hero-demo-label { font-size: 0.6rem; bottom: 8px; }
}

/* Mobile: swipe slider */
@media (max-width: 900px) {
  .hero-demo-slide { min-width: 100%; }
  .hero-demo-slide img { max-height: 520px; }
}

/* ===== MARKETPLACE INLINE DROPDOWN ===== */
.marketplace-inline-dropdown > summary { list-style: none; }
.marketplace-inline-dropdown > summary::-webkit-details-marker { display: none; }
/* Desktop: show dropdown popover, hide mobile list */
@media (min-width: 901px) {
  .marketplace-mobile-list { display: none !important; }
}
/* Mobile: hide dropdown popover, show plain list */
@media (max-width: 900px) {
  .marketplace-desktop-roster { display: none !important; }
  .marketplace-mobile-list { display: block !important; }
  .marketplace-inline-dropdown > summary { pointer-events: none; text-decoration: none !important; color: var(--charcoal) !important; font-weight: 400 !important; cursor: default; }
}

/* ===== DEDUCTION SHOWCASE ===== */
.section-deduction { background: var(--navy); padding: 6rem 4rem; }
.deduction-inner { max-width: 1100px; margin: 0 auto; }
.deduction-eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 1rem; }
.deduction-headline { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--cream); text-align: center; margin-bottom: 0.75rem; line-height: 1.2; }
.deduction-sub { font-size: 1rem; color: rgba(250,246,239,0.6); text-align: center; max-width: 600px; margin: 0 auto 4rem; line-height: 1.6; }
.deduction-item { margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.deduction-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.deduction-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.deduction-item-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--cream); margin-bottom: 2rem; }
.deduction-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.deduction-orig img { width: 100%; border-radius: 6px; display: block; }
.deduction-screens { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.deduction-screens img { width: 100%; border-radius: 6px; display: block; }
.deduction-caption { font-size: 0.78rem; color: rgba(250,246,239,0.45); margin-top: 1.25rem; font-style: italic; line-height: 1.5; }
@media (max-width: 768px) { .section-deduction { padding: 4rem 1.5rem; } .deduction-layout { grid-template-columns: 1fr; } .deduction-headline { font-size: 1.6rem; } }

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-nav-drawer {
  display: none !important;
}
.drawer-overlay {
  display: none !important;
}
.nav-hamburger {
  display: none !important;
}

/* Hamburger disabled — inline nav on all sizes */



