:root {
  --bg-main: #121212;
  --bg-deep: #0f0f0f;
  --bg-warm: #171310;
  --surface-main: #242424;
  --surface-elevated: #2b2b2b;
  --surface-dark: #1b1b1b;
  --surface-soft: #303030;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.06);
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --text-soft: #777777;
  --orange-main: #ff7a1a;
  --orange-hover: #ff8a2a;
  --orange-dark: #9a4d16;
  --orange-soft-bg: rgba(255, 122, 26, 0.16);
  --green-main: #22a559;
  --green-soft-bg: rgba(34, 165, 89, 0.18);
  --amber-main: #c47a12;
  --amber-soft-bg: rgba(196, 122, 18, 0.2);
  --shadow-soft: 0 22px 80px rgba(0, 0, 0, 0.36);
  --shadow-strong: 0 44px 140px rgba(0, 0, 0, 0.55);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
          radial-gradient(circle at 18% 8%, rgba(255, 122, 26, 0.16), transparent 28rem),
          radial-gradient(circle at 82% 6%, rgba(154, 77, 22, 0.16), transparent 26rem),
          linear-gradient(180deg, var(--bg-deep), var(--bg-main) 44rem, #111 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
          linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 70%);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, textarea { font: inherit; }

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hidden { display: none; }

.page-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one { background: rgba(255,122,26,.22); top: 6rem; right: -10rem; }
.page-glow-two { background: rgba(255,122,26,.12); bottom: 12rem; left: -12rem; }

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 0 10px;
}

.project-disclaimer {
  background: rgba(255, 122, 26, 0.09);
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-top: none;
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.disclaimer-content {
  text-align: center;
}

.disclaimer-content p {
  margin: 0;
  line-height: 1.5;
}

.disclaimer-content strong {
  color: var(--orange-main);
  font-weight: 750;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: rgba(18,18,18,.68);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #1b1009;
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(145deg, var(--orange-hover), var(--orange-main));
  box-shadow: 0 14px 36px rgba(255,122,26,.24);
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 18px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 4px; color: var(--text-muted); font-size: 11px; font-weight: 600; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 11px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.nav a:hover, .nav a:focus-visible { color: var(--text-main); background: rgba(255,255,255,.04); }

.nav .nav-cta {
  color: #fff;
  background: rgba(255,122,26,.14);
  border: 1px solid rgba(255,122,26,.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--text-main);
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  margin: 4px auto;
  border-radius: 999px;
}

.section-pad { padding: 78px 0; }
.section-pad.compact { padding-top: 44px; }

.hero {
  padding-top: 68px;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 12px;
  color: var(--orange-hover);
  background: var(--orange-soft-bg);
  border: 1px solid rgba(255,122,26,.20);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.small { font-size: 11px; padding: 7px 10px; }

.hero h1,
.section-heading h2,
.final-cta h2 {
  letter-spacing: -.065em;
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: .98;
  font-weight: 900;
  max-width: 11ch;
}

.lead {
  margin: 0;
  max-width: 660px;
  color: var(--text-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #170d07; background: linear-gradient(135deg, var(--orange-hover), var(--orange-main)); box-shadow: 0 18px 44px rgba(255,122,26,.24); }
.btn-secondary { color: var(--text-main); background: rgba(255,255,255,.035); border-color: rgba(255,122,26,.24); }

.product-stage {
  position: relative;
  min-height: 650px;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 9% -4% 8% 0;
  border-radius: 40px;
  background:
          radial-gradient(circle at 50% 16%, rgba(255,122,26,.26), transparent 30%),
          linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow-strong);
}

.stage-card,
.phone-frame,
.metric-float {
  position: absolute;
  z-index: 1;
}

.collar-showcase {
  top: 0;
  left: 3%;
  right: 5%;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(48,48,48,.92), rgba(27,27,27,.92));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.collar-showcase img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(1.02) contrast(1.02);
}

.floating-pill {
  position: absolute;
  left: 32px;
  bottom: 32px;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(18,18,18,.78);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.pill-orange { color: var(--orange-hover); }

.phone-cluster {
  position: absolute;
  inset: 265px 0 0 0;
  z-index: 2;
  pointer-events: none;
}

.phone-frame {
  padding: 8px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(48,48,48,.98), rgba(20,20,20,.98));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 24px 74px rgba(0,0,0,.56);
  overflow: hidden;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 23px;
}

.phone-main {
  width: 205px;
  height: 445px;
  left: 17%;
  top: 0;
}

.phone-secondary {
  width: 176px;
  height: 380px;
  right: 10%;
  top: 48px;
  opacity: .92;
}

.metric-float {
  display: grid;
  gap: 3px;
  width: 210px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(31,31,31,.72);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.metric-float strong { color: var(--text-main); font-size: 14px; }
.metric-float span { color: var(--text-muted); font-size: 12px; line-height: 1.35; }
.metric-top { top: 232px; right: -6px; }
.metric-bottom { bottom: 18px; left: 0; }

.section-heading { max-width: 780px; }
.section-heading.center { margin-inline: auto; text-align: center; display: grid; justify-items: center; }
.section-heading h2 { margin: 16px 0 0; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.03; font-weight: 900; }
.section-heading p { margin: 18px 0 0; color: var(--text-muted); line-height: 1.75; font-size: 17px; }
.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; max-width: none; align-items: end; }

.stats-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 16px;
  margin-top: 34px;
}

.stat-card,
.impact-card,
.feature-card,
.step-card,
.innovation-card,
.market-card,
.team-card,
.table-card,
.final-cta,
.solution-card {
  background: linear-gradient(180deg, rgba(43,43,43,.86), rgba(31,31,31,.92));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 26px;
  min-height: 188px;
}

.stat-card.large { display: grid; align-content: space-between; }
.stat-number { display: block; color: var(--orange-main); font-size: clamp(38px, 5vw, 68px); line-height: 1; font-weight: 900; letter-spacing: -.06em; }
.stat-card p { margin: 18px 0 0; color: var(--text-muted); line-height: 1.65; }

.consequence-panel {
  padding: clamp(26px, 5vw, 56px);
  border-radius: 34px;
  background:
          radial-gradient(circle at 50% 0%, rgba(255,122,26,.13), transparent 32rem),
          linear-gradient(180deg, rgba(36,36,36,.78), rgba(18,18,18,.92));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--shadow-strong);
}

.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.impact-card { padding: 28px; }
.impact-card span { display: block; color: var(--orange-main); font-size: clamp(44px, 7vw, 88px); font-weight: 900; line-height: .95; letter-spacing: -.07em; }
.impact-card p { margin: 18px 0 0; color: var(--text-muted); line-height: 1.65; }

.solution-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  grid-template-areas:
    "heading product"
    "steps steps";
  gap: 28px;
  align-items: start;
}

.solution-grid > .section-heading { grid-area: heading; align-self: start; }
.solution-card {
  grid-area: product;
  align-self: start;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 0;
  border-color: rgba(255,122,26,.22);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 14%),
    radial-gradient(circle at 24% 32%, rgba(255,122,26,.22), transparent 18rem),
    linear-gradient(180deg, #15120f 0%, #080706 68%, #17110d 100%);
  box-shadow: 0 34px 92px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.05);
}
.solution-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  margin: 0;
  object-fit: contain;
  object-position: center center;
  background: radial-gradient(circle at 46% 34%, rgba(255,122,26,.16), transparent 22rem), #050403;
  border-radius: inherit;
  box-shadow: none;
}
.steps-grid { grid-area: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
.step-card { padding: 22px; }
.step-card span { color: var(--orange-main); font-weight: 900; font-size: 13px; }
.step-card h3 { margin: 18px 0 10px; font-size: 18px; letter-spacing: -.03em; }
.step-card p { margin: 0; color: var(--text-muted); line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.feature-card { padding: 24px; transition: transform .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,122,26,.24); }
.icon-line { display: block; width: 42px; height: 42px; border-radius: 14px; margin-bottom: 28px; background: radial-gradient(circle at 65% 35%, var(--orange-hover), var(--orange-dark)); box-shadow: inset 0 0 0 10px rgba(255,255,255,.04), 0 14px 34px rgba(255,122,26,.16); }
.feature-card h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--text-muted); line-height: 1.65; }

.innovation-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: start; }
.sticky-heading { position: sticky; top: 118px; }
.innovation-cards { display: grid; gap: 16px; }
.innovation-card { padding: 26px; overflow: hidden; }
.innovation-card h3 { margin: 13px 0 10px; font-size: clamp(24px, 3vw, 38px); line-height: 1.08; letter-spacing: -.055em; }
.innovation-card p { color: var(--text-muted); line-height: 1.72; margin: 0; }
.scenario-card { display: grid; grid-template-columns: 1fr 205px; gap: 24px; align-items: center; }
.scenario-card img { max-height: 440px; width: 100%; object-fit: contain; border-radius: 24px; filter: drop-shadow(0 28px 52px rgba(0,0,0,.45)); }
.offline-card { background: radial-gradient(circle at 100% 0, rgba(255,122,26,.20), transparent 18rem), linear-gradient(180deg, rgba(43,43,43,.86), rgba(31,31,31,.92)); }

.table-card { margin-top: 32px; overflow-x: auto; border-radius: 26px; }
.concept-note,
.source-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.55;
}
.source-note {
  grid-column: 1 / -1;
}
table { width: 100%; border-collapse: collapse; min-width: 790px; }
th, td { padding: 17px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.06); color: var(--text-muted); }
th { color: var(--text-main); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
th:nth-child(2), td:nth-child(2) { background: rgba(255,122,26,.06); color: var(--text-main); font-weight: 800; }
th:nth-child(2) { color: var(--orange-hover); }
tr:last-child td { border-bottom: 0; }
.yes { color: var(--orange-main) !important; font-size: 21px; }

.market-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; align-items: stretch; }
.market-grid .section-heading { grid-row: span 2; align-self: center; }
.market-card { padding: 25px; min-height: 168px; display: grid; align-content: center; gap: 8px; }
.market-card strong { color: var(--orange-main); font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: -.06em; }
.market-card span { color: var(--text-muted); line-height: 1.55; }
.chart-card { grid-column: span 2; }
.bar-row { display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center; margin: 12px 0; }
.bar-row span, .bar-row strong { font-size: 14px; color: var(--text-muted); letter-spacing: 0; }
.bar { height: 12px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.06); }
.bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange-dark), var(--orange-main)); }
.cagr { margin-top: 18px; color: var(--text-main); font-size: 28px; font-weight: 900; letter-spacing: -.05em; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.team-card { padding: 24px; }
.team-card span { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 999px; margin-bottom: 20px; color: var(--orange-main); font-weight: 900; background: rgba(255,122,26,.11); border: 1px solid rgba(255,122,26,.20); }
.team-card h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -.03em; }
.team-card p { color: var(--text-muted); margin: 0; line-height: 1.55; }

.final-cta {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 34px;
  background:
          radial-gradient(circle at 10% 10%, rgba(255,122,26,.20), transparent 26rem),
          linear-gradient(180deg, rgba(43,43,43,.92), rgba(18,18,18,.95));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-strong);
}

.final-cta h2 { margin: 16px 0 16px; font-size: clamp(36px, 5vw, 66px); line-height: 1; font-weight: 900; }
.final-cta p { color: var(--text-muted); line-height: 1.7; margin: 0; }

.waitlist-form { display: grid; gap: 13px; }
.waitlist-form label { display: grid; gap: 7px; }
.waitlist-form label span { color: var(--text-muted); font-size: 13px; font-weight: 700; }
.waitlist-form em { color: var(--text-soft); font-style: normal; font-weight: 500; }

.form-disclaimer {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.15);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-disclaimer p {
  margin: 0;
}

.form-disclaimer a,
.consent a {
  color: var(--orange-main);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
}

.form-disclaimer a:hover,
.consent a:hover {
  color: var(--orange-hover);
}
input, textarea {
  width: 100%;
  color: var(--text-main);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 15px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
textarea { min-height: 104px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(255,122,26,.42); box-shadow: 0 0 0 4px rgba(255,122,26,.10); }
::placeholder { color: rgba(160,160,160,.68); }
.consent { display: flex !important; grid-template-columns: auto 1fr; gap: 10px !important; align-items: start; margin: 2px 0 6px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange-main); }

.site-footer { padding: 34px 0 48px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--text-muted); }
.footer-inner strong { display: block; color: var(--text-main); font-size: 18px; }
.footer-inner span { display: block; margin-top: 4px; font-size: 13px; }
.footer-inner nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-inner a { color: var(--text-muted); font-size: 13px; font-weight: 700; }
.footer-inner a:hover { color: var(--orange-hover); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s cubic-bezier(.16,.9,.34,1), transform .75s cubic-bezier(.16,.9,.34,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(255,122,26,.26); outline-offset: 3px; }

@media (max-width: 1020px) {
  .hero-grid, .solution-grid, .innovation-layout, .market-grid, .final-cta { grid-template-columns: 1fr; }
  .product-stage { min-height: 620px; max-width: 610px; margin-inline: auto; width: 100%; }
  .solution-grid { grid-template-areas: "heading" "product" "steps"; }
  .steps-grid, .features-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card.large { grid-column: span 2; }
  .sticky-heading { position: static; }
  .market-grid .section-heading { grid-row: auto; }
  .chart-card { grid-column: auto; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-header { top: 8px; }
  .header-inner { border-radius: 18px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(18,18,18,.96);
    box-shadow: var(--shadow-soft);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero h1 { max-width: none; }
  .product-stage { min-height: 590px; }
  .collar-showcase { left: 0; right: 0; }
  .phone-main { left: 10%; width: 185px; height: 398px; }
  .phone-secondary { right: 5%; width: 158px; height: 342px; }
  .metric-float { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 8px; }
  .impact-grid, .steps-grid, .features-grid, .team-grid, .stats-grid { grid-template-columns: 1fr; }
  .stat-card.large { grid-column: auto; }
  .scenario-card { grid-template-columns: 1fr; }
  .scenario-card img { max-height: 520px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .section-pad { padding: 54px 0; }
  .hero-actions, .btn { width: 100%; }
  .btn { min-height: 52px; }
  .brand-copy small { display: none; }
  .product-stage { min-height: 520px; }
  .collar-showcase { padding: 12px; border-radius: 24px; }
  .collar-showcase img { border-radius: 18px; }
  .phone-cluster { top: 230px; }
  .phone-main { left: 5%; width: 164px; height: 352px; }
  .phone-secondary { right: 0; width: 138px; height: 298px; top: 58px; }
  .floating-pill { left: 22px; bottom: 22px; }
  .impact-card, .feature-card, .innovation-card, .team-card, .stat-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}


/* CLEAN HERO FIX — no overlapping product images */
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(44px, 6vw, 86px);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(42px, 5.8vw, 74px);
}

.product-showcase {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 36px;
  background:
          radial-gradient(circle at 50% 0%, rgba(255,122,26,.16), transparent 28rem),
          linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.035);
  pointer-events: none;
}

.showcase-card,
.app-preview-card,
.showcase-notes span {
  position: relative;
  z-index: 1;
}

.showcase-card {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(43,43,43,.92), rgba(24,24,24,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.collar-hero-card {
  padding: 14px;
}

.collar-hero-card img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: 22px;
}

.showcase-label {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--orange-hover);
  background: rgba(18,18,18,.76);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.app-showcase-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.app-preview-card {
  margin: 0;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 18px 16px 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(43,43,43,.92), rgba(20,20,20,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 26px 78px rgba(0,0,0,.38);
}

.app-preview-card img {
  width: min(100%, 188px);
  max-height: 310px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.42));
}

.app-preview-card figcaption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.showcase-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .app-showcase-row {
    grid-template-columns: 1fr;
  }

  .app-preview-card {
    min-height: auto;
  }

  .app-preview-card img {
    width: min(100%, 210px);
    max-height: 360px;
  }

  .collar-hero-card img {
    max-height: 250px;
  }

  .showcase-label {
    left: 22px;
    top: 22px;
  }
}

/* FINAL HERO FIX — one clean product image at the top, app moved lower */
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: clamp(44px, 6vw, 86px);
}

.product-showcase.collar-product-stage {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 36px;
  background:
          radial-gradient(circle at 50% 0%, rgba(255,122,26,.15), transparent 28rem),
          linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.product-showcase.collar-product-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.035);
  pointer-events: none;
}

.collar-product-card {
  position: relative;
  z-index: 1;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(43,43,43,.92), rgba(24,24,24,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.collar-product-card img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 24px;
  filter: saturate(1.03) contrast(1.02);
}

.collar-copy-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.collar-copy-strip span,
.app-feature-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.app-later-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.app-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.app-visual-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 36px;
  background:
          radial-gradient(circle at 50% 10%, rgba(255,122,26,.14), transparent 24rem),
          linear-gradient(180deg, rgba(43,43,43,.86), rgba(18,18,18,.94));
  border: 1px solid rgba(255,255,255,.075);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.app-visual-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.04);
}

.app-visual-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 30px;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,.52));
}

@media (max-width: 1020px) {
  .hero-grid,
  .app-later-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase.collar-product-stage,
  .app-visual-card {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .solution-card {
    min-height: 420px;
    padding: 0;
    border-radius: 26px;
  }

  .solution-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    margin: 0;
    border-radius: inherit;
  }

  .collar-copy-strip {
    grid-template-columns: 1fr;
  }

  .collar-product-card img {
    max-height: 300px;
  }

  .app-visual-card {
    min-height: auto;
    padding: 24px;
  }

  .app-visual-card img {
    width: min(100%, 280px);
    max-height: 420px;
  }
}

/* HERO PRODUCT SHOWCASE — clean single-card version */
.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(48px, 6vw, 92px);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(44px, 6vw, 78px);
}

.product-showcase.collar-product-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 26px);
  min-height: clamp(500px, 45vw, 620px);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.8vw, 48px) clamp(24px, 3vw, 34px);
  border-radius: 42px;
  background:
          radial-gradient(circle at 62% 20%, rgba(255,122,26,.20), transparent 27rem),
          radial-gradient(circle at 34% 90%, rgba(255,255,255,.055), transparent 22rem),
          linear-gradient(140deg, rgba(255,255,255,.07), rgba(255,255,255,.025) 42%, rgba(255,122,26,.08));
  border: 1px solid rgba(255,122,26,.26);
  box-shadow: 0 44px 140px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

/* usuwamy poprzednią ramkę wewnętrzną, która dawała efekt zagnieżdżenia */
.product-showcase.collar-product-stage::before,
.product-showcase.collar-product-stage .collar-product-card {
  display: none !important;
}

.product-showcase.collar-product-stage::after {
  content: "";
  position: absolute;
  inset: auto -8% -34% 18%;
  height: 55%;
  border-radius: 999px;
  background: rgba(255,122,26,.17);
  filter: blur(72px);
  opacity: .78;
  z-index: -1;
  pointer-events: none;
}

.collar-product-image {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(116%, 820px);
  max-width: none;
  height: clamp(360px, 34vw, 510px);
  object-fit: contain;
  object-position: center;
  border-radius: 30px;
  opacity: .96;
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 34px 80px rgba(0,0,0,.55));
  transform: translateY(-2px) scale(1.04);
}

.collar-copy-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.collar-copy-strip span {
  min-height: 52px;
  padding: 12px 16px;
  color: rgba(245,245,245,.90);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 36px rgba(0,0,0,.20);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 820;
}

.collar-copy-strip span::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 9px;
  flex: 0 0 auto;
  border-radius: 8px;
  background:
          radial-gradient(circle at 50% 50%, rgba(255,138,42,.92) 0 2px, transparent 3px),
          linear-gradient(135deg, rgba(255,138,42,.28), rgba(255,122,26,.10));
  border: 1px solid rgba(255,122,26,.44);
  box-shadow: 0 0 24px rgba(255,122,26,.18);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase.collar-product-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .product-showcase.collar-product-stage {
    min-height: auto;
    padding: 22px;
    border-radius: 30px;
  }

  .collar-product-image {
    width: min(112%, 560px);
    height: clamp(250px, 64vw, 360px);
    border-radius: 22px;
    transform: scale(1.02);
  }

  .collar-copy-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .collar-copy-strip span {
    min-height: 44px;
  }
}

/* =========================================================
   FINAL VISUAL CLEANUP
   - hero product image blends with the website background
   - app dashboard has no nested card/frame around the image
   ========================================================= */

.transparent-product-stage {
  background:
          radial-gradient(circle at 58% 48%, rgba(255,122,26,.10), transparent 24rem),
          linear-gradient(140deg, rgba(18,18,18,.48), rgba(18,18,18,.18)) !important;
  border-color: rgba(255,122,26,.14) !important;
  box-shadow:
          0 34px 110px rgba(0,0,0,.42),
          inset 0 1px 0 rgba(255,255,255,.035) !important;
  backdrop-filter: none !important;
}

.transparent-product-stage::before {
  display: none !important;
}

.transparent-product-stage::after {
  opacity: .42 !important;
  filter: blur(84px) !important;
}

.collar-product-image-transparent {
  mix-blend-mode: lighten;
  opacity: .96;
  border-radius: 0 !important;
  filter:
          saturate(1.08)
          contrast(1.06)
          drop-shadow(0 34px 80px rgba(0,0,0,.48)) !important;
}

.app-visual-clean {
  min-height: clamp(360px, 42vw, 520px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.app-visual-clean::before,
.app-visual-clean::after {
  content: none !important;
  display: none !important;
}

.app-dashboard-image {
  width: min(100%, 340px) !important;
  max-height: 500px !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 34px 88px rgba(0,0,0,.55)) !important;
}

@media (max-width: 1020px) {
  .app-visual-clean {
    min-height: auto !important;
    max-width: 520px !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 620px) {
  .app-dashboard-image {
    width: min(100%, 280px) !important;
    max-height: 420px !important;
  }
}


/* =========================================================
   APP SECTION — final clean version
   two equal screens, single frame, no extra labels/tags
   ========================================================= */

.app-later-grid-premium {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr) !important;
  align-items: center;
  gap: clamp(40px, 6vw, 88px) !important;
}

.app-copy-block {
  max-width: 620px;
}

.app-showcase-stage {
  position: relative;
}

.app-showcase-shell-single-frame {
  position: relative;
  min-height: clamp(470px, 43vw, 590px);
  padding: clamp(20px, 2.4vw, 28px) !important;
  border-radius: 42px !important;
  background:
          radial-gradient(circle at 28% 18%, rgba(255,122,26,.16), transparent 18rem),
          radial-gradient(circle at 78% 82%, rgba(255,255,255,.04), transparent 18rem),
          linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018) 48%, rgba(255,122,26,.065)) !important;
  border: 1px solid rgba(255,122,26,.18) !important;
  box-shadow: 0 40px 120px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.05) !important;
  overflow: hidden;
  isolation: isolate;
}

.app-showcase-shell-single-frame::before {
  display: none !important;
  content: none !important;
}

.app-showcase-shell-single-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% -18% 18%;
  height: 38%;
  border-radius: 999px;
  background: rgba(255,122,26,.16);
  filter: blur(84px);
  opacity: .9;
  z-index: -1;
}

.app-screen-pair-clean {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px) !important;
  padding: 0 !important;
}

.app-screen-equal {
  margin: 0;
  width: min(48%, 350px) !important;
  display: grid;
  justify-items: center;
}

.app-screen-equal img {
  display: block;
  width: 100% !important;
  max-width: 350px !important;
  max-height: 560px !important;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.42));
}

.app-screen-card figcaption,
.app-showcase-badges {
  display: none !important;
}

@media (max-width: 1180px) {
  .app-later-grid-premium {
    grid-template-columns: 1fr !important;
  }

  .app-showcase-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .app-showcase-shell-single-frame {
    min-height: auto;
    padding: 16px !important;
    border-radius: 30px !important;
  }

  .app-screen-pair-clean {
    flex-direction: column;
    gap: 18px !important;
  }

  .app-screen-equal {
    width: min(100%, 320px) !important;
  }

  .app-screen-equal img {
    max-width: 320px !important;
    max-height: 520px !important;
  }
}
