:root {
  --home-bg: #05070b;
  --home-panel: #0b0f16;
  --home-panel-2: #111722;
  --home-line: rgba(255, 255, 255, 0.1);
  --home-text: #f4f7fb;
  --home-muted: #8993a5;
  --home-lime: #c8ff45;
  --home-cyan: #47d8ff;
  --home-pink: #ff4778;
  --home-violet: #8b6cff;
}

.home-page {
  position: relative;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--home-lime);
  color: #071006;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

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

.home-page a:focus-visible,
.home-page summary:focus-visible {
  outline: 2px solid var(--home-lime);
  outline-offset: 4px;
}

.home-page section[id] {
  scroll-margin-top: 90px;
}

.home-page::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.home-page::after {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 0.75px,
    transparent 0.75px
  );
  background-size: 4px 4px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.home-aurora {
  position: fixed;
  z-index: -4;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.2;
}

.aurora-orb-one {
  width: 620px;
  height: 620px;
  top: -260px;
  left: -180px;
  background: var(--home-violet);
}

.aurora-orb-two {
  width: 680px;
  height: 680px;
  top: 18%;
  right: -340px;
  background: var(--home-cyan);
  opacity: 0.14;
}

.aurora-orb-three {
  width: 520px;
  height: 520px;
  bottom: 5%;
  left: 20%;
  background: var(--home-pink);
  opacity: 0.1;
}

.announcement {
  position: relative;
  z-index: 12;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.5);
}

.announcement-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 9px 28px;
  color: rgba(255, 255, 255, 0.64);
  font:
    600 9px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  animation: home-marquee 34s linear infinite;
}

.announcement-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 0 12px var(--home-lime);
}

@keyframes home-marquee {
  to {
    transform: translateX(-50%);
  }
}

.home-header.store-header {
  display: block;
  min-height: 78px;
  padding: 0;
  border-bottom-color: rgba(255, 255, 255, 0.07);
  background: rgba(5, 7, 11, 0.76);
  transition:
    min-height 0.25s ease,
    background 0.25s ease;
}

.home-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(1340px, calc(100% - 64px));
  min-height: inherit;
  margin: 0 auto;
  align-items: center;
}

.home-header.scrolled {
  min-height: 68px;
  background: rgba(5, 7, 11, 0.94);
}

.home-brand {
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.home-brand img {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(71, 216, 255, 0.2);
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(71, 216, 255, 0.14);
}

.home-brand > span > span {
  color: rgba(255, 255, 255, 0.3);
}

.home-header nav {
  gap: 34px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.home-header nav a {
  transition: color 0.2s ease;
}

.home-header nav a:hover {
  color: var(--home-lime);
}

.store-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.home-header .store-status {
  border-color: rgba(200, 255, 69, 0.22);
  color: var(--home-lime);
  background: rgba(200, 255, 69, 0.05);
}

.home-header .account-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  color: var(--home-text);
  font-size: 12px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.home-header .account-link:hover {
  border-color: rgba(200, 255, 69, 0.5);
  background: rgba(200, 255, 69, 0.06);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: clamp(40px, 6vw, 96px);
  width: min(1340px, calc(100% - 64px));
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 146px) 0 112px;
  align-items: center;
}

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

.hero-kicker,
.section-index {
  margin: 0;
  color: var(--home-lime);
  font:
    700 10px/1.2 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 0 16px var(--home-lime);
}

.hero-copy h1 {
  margin: 24px 0 0;
  font:
    600 clamp(58px, 6.7vw, 102px) / 0.92 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.065em;
}

.hero-copy h1 > span {
  background: linear-gradient(
    100deg,
    #fff 2%,
    var(--home-lime) 43%,
    var(--home-cyan) 94%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: #a2aabc;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.primary-action {
  background: var(--home-lime);
  color: #071006;
  box-shadow: 0 12px 42px -16px rgba(200, 255, 69, 0.8);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 48px -14px rgba(200, 255, 69, 0.92);
}

.secondary-action {
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--home-text);
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  padding: 0;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  list-style: none;
}

.hero-assurances span {
  color: var(--home-lime);
}

.hero-stage {
  position: relative;
  min-height: 570px;
  border: 1px solid var(--home-line);
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(139, 108, 255, 0.18),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.012)
    );
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 50px 100px -60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  isolation: isolate;
}

.stage-grid,
.closing-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.stage-chip {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.72);
  color: rgba(255, 255, 255, 0.5);
  font:
    600 8px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.17em;
}

.stage-chip-top {
  top: 24px;
  right: 24px;
}
.stage-chip-bottom {
  bottom: 24px;
  left: 24px;
}

.stage-product {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 250px;
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--home-line);
  border-radius: 28px;
  background: rgba(8, 11, 17, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 80px -38px rgba(0, 0, 0, 0.95);
}

.stage-product::after {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  content: "";
  opacity: 0.55;
  mask: linear-gradient(#000, transparent 68%);
  pointer-events: none;
}

.stage-loovable {
  top: 72px;
  left: 40px;
  transform: rotate(-7deg);
  animation: home-float-one 7s ease-in-out infinite;
}

.stage-loovable::after {
  border: 1px solid var(--home-violet);
}

.stage-mp {
  right: 28px;
  bottom: 52px;
  transform: rotate(6deg);
  animation: home-float-two 8s ease-in-out infinite;
}

.stage-mp::after {
  border: 1px solid var(--home-cyan);
}

@keyframes home-float-one {
  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes home-float-two {
  50% {
    transform: translateY(11px) rotate(4deg);
  }
}

.stage-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font:
    700 10px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-product-head > span {
  color: var(--home-lime);
}

.stage-product img {
  width: 114px;
  height: 114px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.stage-product strong {
  align-self: end;
  font:
    600 24px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.04em;
}

.stage-product p {
  margin: 7px 0 0;
  color: var(--home-muted);
  font-size: 11px;
}

.stage-seal {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-content: center;
  border: 1px solid rgba(200, 255, 69, 0.44);
  border-radius: 50%;
  background: #0a0d10;
  box-shadow:
    0 0 0 8px rgba(200, 255, 69, 0.04),
    0 16px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-9deg);
}

.stage-seal span {
  color: var(--home-lime);
  font:
    700 28px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.08em;
}

.stage-seal small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font:
    600 7px/1.25 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.12em;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1340px, calc(100% - 64px));
  margin: 0 auto;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: rgba(9, 12, 18, 0.72);
  overflow: hidden;
}

.signal-strip article {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 17px;
  padding: 22px 26px;
  border-right: 1px solid var(--home-line);
}

.signal-strip article:last-child {
  border-right: 0;
}

.signal-strip strong {
  color: var(--home-lime);
  font:
    600 clamp(22px, 2.4vw, 34px) / 1 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.06em;
}

.signal-strip span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-section {
  width: min(1340px, calc(100% - 64px));
  margin: 0 auto;
  padding: 154px 0 132px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.flow-intro h2,
.faq-intro h2,
.account-callout h2,
.closing-cta h2 {
  margin: 14px 0 0;
  font:
    600 clamp(42px, 5vw, 72px) / 0.98 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.055em;
}

.section-heading h2 span,
.closing-cta h2 span {
  color: rgba(255, 255, 255, 0.56);
}

.section-heading > p {
  max-width: 390px;
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.product-panel {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--home-line);
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.012)
  );
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.product-panel:hover,
.product-panel:focus-visible {
  transform: translateY(-7px);
}
.product-panel-loovable:hover,
.product-panel-loovable:focus-visible {
  border-color: rgba(139, 108, 255, 0.54);
}
.product-panel-mp:hover,
.product-panel-mp:focus-visible {
  border-color: rgba(71, 216, 255, 0.52);
}

.panel-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  top: 30px;
  right: -130px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}

.product-panel-loovable .panel-glow {
  background: var(--home-violet);
}
.product-panel-mp .panel-glow {
  background: var(--home-cyan);
}

.panel-topline {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  font:
    700 9px/1 "Space Grotesk",
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-topline strong {
  color: var(--home-lime);
}

.panel-visual {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 24px;
  border-bottom: 1px solid var(--home-line);
}

.panel-logo {
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 27px;
  background: rgba(3, 6, 10, 0.6);
}

.panel-logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.38));
}

.panel-platform {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.panel-content {
  position: relative;
  padding-top: 28px;
}

.panel-content h3 {
  margin: 0;
  font:
    600 clamp(32px, 3.4vw, 48px) / 1 "Space Grotesk",
    sans-serif;
  letter-spacing: -0.055em;
}

.panel-content > p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.6;
}

.panel-content ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  list-style: none;
}

.panel-content li::before {
  margin-right: 9px;
  color: var(--home-lime);
  content: "✓";
}

.panel-content .panel-proof {
  color: #d9ff9f;
}

.panel-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

.panel-pricing > div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid var(--home-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}

.panel-pricing span {
  color: var(--home-muted);
  font-size: 10px;
  text-transform: uppercase;
}

.panel-pricing strong {
  font:
    600 19px/1.2 "Space Grotesk",
    sans-serif;
}

.panel-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 17px 20px;
  border-radius: 15px;
  background: var(--home-text);
  color: #07090d;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-panel:hover .panel-action,
.product-panel:focus-visible .panel-action {
  background: var(--home-lime);
  transform: translateY(-2px);
}

.home-flow.purchase-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.55fr);
  gap: 70px;
  width: min(1340px, calc(100% - 64px));
  padding: 132px 0;
  border-top: 1px solid var(--home-line);
}

.flow-intro > p:last-child,
.faq-intro > p:last-child {
  max-width: 340px;
  margin: 23px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-flow .flow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  background: none;
}

.home-flow .flow-steps article {
  min-height: 330px;
  padding: 25px;
  border: 1px solid var(--home-line);
  border-radius: 23px;
  background: rgba(10, 14, 21, 0.64);
}

.home-flow .flow-steps > article > span {
  color: var(--home-lime);
  font-size: 10px;
  letter-spacing: 0.17em;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-top: 54px;
  border: 1px solid var(--home-line);
  border-radius: 17px;
  color: var(--home-lime);
  font:
    500 22px/1 "Space Grotesk",
    sans-serif;
}

.home-flow .flow-steps h3 {
  margin: 31px 0 10px;
  font:
    600 19px/1.1 "Space Grotesk",
    sans-serif;
}

.home-flow .flow-steps p {
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.6;
}

.account-callout {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 36px;
  width: min(1340px, calc(100% - 64px));
  align-items: center;
  margin: 0 auto 132px;
  padding: 46px;
  border: 1px solid rgba(200, 255, 69, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(200, 255, 69, 0.09),
      transparent 32%
    ),
    rgba(10, 14, 20, 0.76);
  overflow: hidden;
}

.account-callout-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(200, 255, 69, 0.35);
  border-radius: 50%;
  color: var(--home-lime);
  font:
    700 27px/1 "Space Grotesk",
    sans-serif;
}

.account-callout h2 {
  margin-top: 9px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.account-callout div > p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-faq.store-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.55fr);
  gap: 70px;
  width: min(1340px, calc(100% - 64px));
  padding: 132px 0;
  border-top: 1px solid var(--home-line);
}

.home-faq .faq-list {
  max-width: none;
}

.home-faq .faq-list details {
  border-color: var(--home-line);
}

.home-faq .faq-list summary {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.88);
  font:
    600 16px/1.35 "Space Grotesk",
    sans-serif;
}

.home-faq .faq-list summary::after {
  color: var(--home-lime);
}

.home-faq .faq-list p {
  max-width: 690px;
  margin: -4px 0 25px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.65;
}

.closing-cta {
  position: relative;
  display: flex;
  min-height: 340px;
  width: min(1340px, calc(100% - 64px));
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto 120px;
  padding: 52px;
  border: 1px solid var(--home-line);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(139, 108, 255, 0.2),
      transparent 42%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(71, 216, 255, 0.14),
      transparent 35%
    ),
    #0a0e15;
  overflow: hidden;
}

.closing-cta > *:not(.closing-grid) {
  position: relative;
  z-index: 1;
}
.closing-cta h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.home-footer.store-footer {
  width: min(1340px, calc(100% - 64px));
  padding: 34px 0 40px;
  border-color: var(--home-line);
  color: rgba(255, 255, 255, 0.64);
}

.home-footer a {
  transition: color 0.2s ease;
}
.home-footer a:hover {
  color: var(--home-lime);
}

.home-footer.store-footer a:last-child:hover {
  color: var(--home-lime);
}

@media (prefers-reduced-motion: reduce) {
  .stage-product {
    animation: none;
  }
  .announcement-track {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    animation: none;
  }
  .announcement-track [aria-hidden="true"] {
    display: none;
  }
  .primary-action,
  .secondary-action,
  .panel-action,
  .product-panel {
    transition: none;
  }
}

@media (max-width: 1240px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-copy {
    max-width: 820px;
  }
  .hero-stage {
    width: min(100%, 720px);
    min-height: 520px;
    justify-self: center;
  }
  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .signal-strip article:nth-child(2) {
    border-right: 0;
  }
  .signal-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--home-line);
  }
  .home-flow.purchase-flow,
  .home-faq.store-faq {
    grid-template-columns: 1fr;
  }
  .flow-intro > p:last-child,
  .faq-intro > p:last-child {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  .home-header nav,
  .home-header .store-status {
    display: none;
  }
  .home-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100% - 36px, 1340px);
  }
  .home-hero,
  .signal-strip,
  .products-section,
  .home-flow.purchase-flow,
  .account-callout,
  .home-faq.store-faq,
  .closing-cta,
  .home-footer.store-footer {
    width: min(100% - 36px, 1340px);
  }
  .home-hero {
    min-height: auto;
    padding: 78px 0 82px;
  }
  .hero-copy h1 {
    font-size: clamp(50px, 13vw, 76px);
  }
  .hero-stage {
    min-height: 500px;
  }
  .stage-product {
    width: 220px;
    min-height: 290px;
  }
  .stage-product img {
    width: 92px;
    height: 92px;
  }
  .stage-loovable {
    left: 24px;
  }
  .stage-mp {
    right: 18px;
  }
  .section-heading {
    grid-template-columns: 1fr;
  }
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .product-panel {
    min-height: 680px;
  }
  .home-flow .flow-steps {
    grid-template-columns: 1fr;
  }
  .home-flow .flow-steps article {
    min-height: 250px;
  }
  .step-icon {
    margin-top: 30px;
  }
  .account-callout {
    grid-template-columns: auto 1fr;
  }
  .account-callout > .primary-action {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .closing-cta {
    min-height: 390px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .announcement-track {
    gap: 20px;
  }
  .home-header.store-header {
    min-height: 68px;
  }
  .home-brand {
    font-size: 14px;
  }
  .home-brand img {
    width: 34px;
    height: 34px;
  }
  .home-header .account-link {
    padding: 9px 12px;
    font-size: 11px;
  }
  .home-hero {
    padding-top: 66px;
  }
  .hero-kicker {
    font-size: 9px;
  }
  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13.5vw, 64px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .primary-action,
  .secondary-action {
    width: 100%;
  }
  .hero-assurances {
    display: grid;
  }
  .hero-stage {
    min-height: 440px;
    border-radius: 26px;
  }
  .stage-product {
    width: 180px;
    min-height: 245px;
    padding: 14px;
    border-radius: 22px;
  }
  .stage-product img {
    width: 72px;
    height: 72px;
  }
  .stage-product strong {
    font-size: 18px;
  }
  .stage-product p {
    font-size: 9px;
  }
  .stage-loovable {
    top: 52px;
    left: 9px;
  }
  .stage-mp {
    right: 5px;
    bottom: 42px;
  }
  .stage-seal {
    width: 80px;
    height: 80px;
  }
  .stage-seal span {
    font-size: 22px;
  }
  .stage-chip {
    display: none;
  }
  .signal-strip {
    grid-template-columns: 1fr;
  }
  .signal-strip article {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }
  .signal-strip article:last-child {
    border-bottom: 0;
  }
  .products-section {
    padding: 105px 0 90px;
  }
  .section-heading h2,
  .flow-intro h2,
  .faq-intro h2 {
    font-size: 42px;
  }
  .product-panel {
    min-height: 650px;
    padding: 24px;
    border-radius: 24px;
  }
  .panel-logo {
    width: 112px;
    height: 112px;
  }
  .panel-logo img {
    width: 84px;
    height: 84px;
  }
  .panel-platform {
    max-width: 130px;
    font-size: 10px;
  }
  .panel-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-flow.purchase-flow,
  .home-faq.store-faq {
    gap: 42px;
    padding: 92px 0;
  }
  .account-callout {
    grid-template-columns: 1fr;
    margin-bottom: 92px;
    padding: 28px;
  }
  .account-callout-mark {
    width: 68px;
    height: 68px;
  }
  .closing-cta {
    min-height: 390px;
    margin-bottom: 80px;
    padding: 28px;
  }
  .home-footer.store-footer {
    display: grid;
    gap: 13px;
  }
}

@media (max-width: 360px) {
  .hero-stage {
    min-height: 400px;
  }
  .stage-product {
    width: 158px;
    min-height: 222px;
  }
  .stage-loovable {
    top: 42px;
    left: 3px;
  }
  .stage-mp {
    right: 2px;
    bottom: 34px;
  }
  .stage-seal {
    width: 70px;
    height: 70px;
  }
}
