:root {
  --red: #b6222a;
  --red-dark: #8e1118;
  --red-hot: #eb6c52;
  --cream: #fff7f2;
  --cream-2: #fdeee9;
  --ink: #fffaf7;
  --muted: rgba(255, 250, 247, 0.72);
  --soft: rgba(255, 250, 247, 0.11);
  --line: rgba(255, 255, 255, 0.15);
  --line-red: rgba(236, 108, 82, 0.28);
  --dark: #070101;
  --dark-2: #130306;
  --card: rgba(255, 246, 241, 0.06);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(182, 34, 42, 0.34), transparent 34rem),
    radial-gradient(circle at 82% 34%, rgba(235, 108, 82, 0.14), transparent 30rem),
    linear-gradient(140deg, #050000 0%, #120205 42%, #050000 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #1c0808;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.glow {
  position: fixed;
  z-index: -4;
  width: 44vw;
  height: 44vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-one {
  top: -12vw;
  left: -10vw;
  background: rgba(185, 30, 40, 0.52);
}

.glow-two {
  right: -16vw;
  top: 38vh;
  background: rgba(235, 108, 82, 0.26);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(15, 3, 5, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(139, 17, 24, .2), 0 12px 34px rgba(0,0,0,.26);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.brand-text em {
  margin-top: 2px;
  color: rgba(255, 250, 247, 0.68);
  font-size: 0.78rem;
  font-style: normal;
}

.desktop-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.06);
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 250, 247, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
  transition: 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 250, 247, .1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--red-dark), #dc3036 55%, var(--red-hot));
  box-shadow: 0 18px 34px rgba(214, 44, 44, .22);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 250, 247, 0.86);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 88px 16px auto;
  z-index: 90;
  display: none;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(15, 3, 5, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.mobile-menu a {
  display: block;
  padding: 15px 16px;
  border-radius: 16px;
  color: rgba(255, 250, 247, .85);
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, .08);
}

body.menu-open .mobile-menu {
  display: block;
}

.section-pad {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 116px 0;
  scroll-margin-top: 120px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.96fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #ff9b85;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-hot), transparent);
}

.eyebrow.centered {
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.072em;
  line-height: 0.93;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9.5vw, 8.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6.1vw, 6.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-subtitle {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

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

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.signal-strip div,
.mini-feature-grid div,
.value-grid article,
.layer-card,
.commerce-note,
.tool-cards article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 250, 247, 0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.signal-strip div {
  padding: 18px;
  border-radius: 20px;
}

.signal-strip strong,
.mini-feature-grid strong {
  display: block;
  margin-bottom: 4px;
  color: white;
  font-size: 0.95rem;
  letter-spacing: -0.035em;
}

.signal-strip span,
.mini-feature-grid span {
  display: block;
  color: rgba(255, 250, 247, .62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.phone-frame,
.screen-card {
  position: relative;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background: rgba(255, 247, 242, 0.055);
  box-shadow: var(--shadow);
}

.phone-frame::before,
.screen-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(236, 108, 82, .14), transparent);
}

.phone-frame img,
.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.hero-phone {
  position: absolute;
  width: min(58%, 330px);
  background: rgba(255, 248, 245, .08);
}

.hero-phone-main {
  top: 0;
  right: 16%;
  transform: rotate(-4deg);
}

.hero-phone-side {
  top: 190px;
  left: 0;
  transform: rotate(5deg);
}

.hero-phone-mini {
  right: 0;
  bottom: 0;
  width: min(54%, 310px);
  transform: rotate(-7deg);
}

.hero-pulse {
  position: absolute;
  right: 9%;
  top: 47%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: white;
  background: rgba(10, 2, 4, .78);
  box-shadow: 0 20px 50px rgba(0,0,0,.34);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.manifesto {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 22px;
}

.manifesto-card {
  min-height: 520px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line-red);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(182, 34, 42, .44), rgba(255, 250, 247, .05)),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.manifesto-card h2 {
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
}

.value-grid {
  display: grid;
  gap: 16px;
}

.value-grid article {
  min-height: 158px;
  padding: 28px;
  border-radius: 28px;
}

.value-grid span,
.layer-icon,
.tool-icon {
  display: inline-flex;
  color: #ff8e78;
  font-weight: 950;
}

.value-grid span {
  margin-bottom: 14px;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.responsive-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .52fr;
  align-items: end;
  gap: 18px;
}

.screen-card {
  padding: 10px;
  background: rgba(255, 255, 255, .08);
}

.screen-card img {
  border-radius: 22px;
}

.screen-card figcaption,
.access-phone figcaption {
  margin: 14px 4px 4px;
  color: rgba(255, 250, 247, .7);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.screen-card-phone {
  max-width: 260px;
  justify-self: center;
}

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

.layer-card {
  padding: 32px;
  border-radius: 30px;
}

.layer-card-hot {
  background: linear-gradient(145deg, rgba(182, 34, 42, .45), rgba(255, 255, 255, .065));
}

.layer-icon,
.tool-icon {
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: white;
  background: rgba(255, 255, 255, .1);
  font-size: 1.35rem;
}

.spotlight,
.product-section,
.tools-block,
.menu-block {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.spotlight-copy,
.product-copy,
.tools-copy,
.menu-copy {
  max-width: 560px;
}

.clean-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 250, 247, .78);
  line-height: 1.6;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-hot));
  box-shadow: 0 0 22px rgba(235, 108, 82, .62);
}

.feature-switcher {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 0%, rgba(182, 34, 42, .32), transparent 25rem),
    rgba(255, 250, 247, .06);
  box-shadow: var(--shadow);
}

.switcher-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.switcher-tab {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255, 250, 247, .72);
  background: rgba(255, 255, 255, .07);
  font-weight: 900;
  cursor: pointer;
}

.switcher-tab.is-active {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, var(--red-dark), var(--red-hot));
}

.switcher-display {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(180px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.feature-phone {
  max-width: 330px;
  justify-self: center;
}

#featureImage {
  transition: opacity 160ms ease, transform 160ms ease;
}

#featureImage.is-changing {
  opacity: 0.18;
  transform: scale(.985);
}

.switcher-caption {
  padding: 30px;
  border-radius: 28px;
  background: var(--cream);
  color: #231113;
}

.switcher-caption p {
  color: rgba(35, 17, 19, .67);
}

.sessions-block {
  width: min(calc(100% - 32px), 1250px);
}

.split-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(210px, .72fr);
  gap: 28px;
  align-items: start;
  min-height: 650px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.showcase-copy {
  position: relative;
  z-index: 2;
}

.light-card {
  color: #211013;
  background:
    radial-gradient(circle at 90% 8%, rgba(236, 108, 82, .16), transparent 24rem),
    linear-gradient(145deg, #fff8f4, #fbe8e4);
}

.light-card p {
  color: rgba(35, 17, 19, .62);
}

.light-card h3 {
  color: #231113;
}

.dark-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(182, 34, 42, .22), transparent 24rem),
    rgba(255, 255, 255, .045);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(182, 34, 42, .12);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.dark-card .mini-label {
  color: #ffc2b7;
  background: rgba(255, 255, 255, .08);
}

.inline-phone {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  align-self: start;
}

.product-section-alt {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .96fr);
}

.product-section-alt .product-copy,
.product-section-alt .tools-copy {
  order: 2;
}

.product-section-alt .phone-pair,
.product-section-alt .solo-phone {
  order: 1;
}

.solo-phone,
.tools-phone,
.menu-phone,
.access-phone {
  width: min(100%, 365px);
  justify-self: center;
}

.phone-pair {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 270px));
  justify-content: center;
  gap: 18px;
}

.phone-pair .solo-phone {
  width: 100%;
}

.pair-offset {
  transform: translateY(50px);
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mini-feature-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-feature-grid div {
  padding: 18px;
  border-radius: 20px;
}

.tools-block {
  grid-template-columns: minmax(0, .9fr) minmax(340px, .95fr);
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.tool-cards article {
  padding: 24px;
  border-radius: 24px;
}

.access-block {
  width: min(calc(100% - 32px), 1280px);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 18px;
  align-items: start;
}

.access-phone {
  width: 100%;
}

.menu-block {
  min-height: 660px;
}

.menu-phone {
  max-width: 380px;
}

.final-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 24px;
  border: 1px solid var(--line-red);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at 84% 0%, rgba(182, 34, 42, .42), transparent 29rem),
    linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
}

.final-card h2 {
  font-size: clamp(3.2rem, 6.8vw, 7rem);
}

.final-card p {
  max-width: 670px;
  margin-inline: auto;
}

.final-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 50px;
  color: rgba(255, 250, 247, .58);
  font-size: .9rem;
}

.footer-brand {
  color: white;
  font-weight: 900;
}

.site-footer span {
  text-align: center;
}

.site-footer nav {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer nav a {
  color: rgba(255, 169, 153, .9);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero,
  .manifesto,
  .spotlight,
  .product-section,
  .tools-block,
  .menu-block {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 34px;
    min-height: auto;
  }
  .hero-visual {
    min-height: 640px;
  }
  .product-section-alt .product-copy,
  .product-section-alt .phone-pair,
  .product-section-alt .solo-phone {
    order: unset;
  }
  .responsive-grid {
    grid-template-columns: 1fr 1fr;
  }
  .screen-card-wide {
    grid-column: 1 / -1;
  }
  .split-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    min-height: auto;
  }
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
    padding: 10px;
    border-radius: 26px;
  }
  .brand {
    min-width: 0;
  }
  .brand-text em {
    display: none;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .nav-cta {
    display: none;
  }
  .section-pad {
    width: min(calc(100% - 28px), var(--max));
    padding: 72px 0;
    scroll-margin-top: 92px;
  }
  .hero {
    padding-top: 54px;
  }
  h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }
  h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
  p {
    font-size: 1rem;
  }
  .hero-actions,
  .final-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .signal-strip,
  .layer-grid,
  .mini-feature-grid,
  .tool-cards {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 585px;
  }
  .hero-phone {
    width: 66%;
  }
  .hero-phone-main {
    right: 0;
  }
  .hero-phone-side {
    left: 0;
    top: 160px;
  }
  .hero-phone-mini {
    width: 58%;
    right: 6%;
  }
  .hero-pulse {
    top: auto;
    right: 0;
    bottom: 190px;
    font-size: .9rem;
  }
  .manifesto-card {
    min-height: auto;
  }
  .responsive-grid {
    grid-template-columns: 1fr;
  }
  .screen-card-phone,
  .screen-card-tablet {
    max-width: 430px;
    justify-self: center;
  }
  .switcher-display {
    grid-template-columns: 1fr;
  }
  .switcher-caption {
    padding: 22px;
  }
  .switcher-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .switcher-tab {
    flex: 0 0 auto;
  }
  .showcase-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .inline-phone,
  .solo-phone,
  .tools-phone,
  .menu-phone {
    max-width: 345px;
    justify-self: center;
  }
  .phone-pair {
    grid-template-columns: 1fr;
  }
  .pair-offset {
    transform: none;
  }
  .access-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .access-phone {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .hero-visual {
    min-height: 510px;
  }
  .hero-phone {
    width: 68%;
  }
  .hero-phone-side {
    top: 145px;
  }
  .hero-phone-mini {
    bottom: 0;
  }
  .hero-pulse {
    display: none;
  }
  .phone-frame,
  .screen-card {
    border-radius: 24px;
  }
  .phone-frame img,
  .screen-card img {
    border-radius: 24px;
  }
  .feature-switcher {
    padding: 12px;
  }
  .access-phone {
    flex-basis: 86%;
  }
}
