.homepage-v2 {
  --hp-bg: #f5f6fb;
  --hp-surface: #ffffff;
  --hp-surface-soft: #eff2f8;
  --hp-surface-dark: #131c34;
  --hp-surface-dark-alt: #1a2340;
  --hp-heading: #141d33;
  --hp-body: #516074;
  --hp-muted: #7d8898;
  --hp-line: rgba(20, 29, 51, 0.1);
  --hp-line-strong: rgba(20, 29, 51, 0.18);
  --hp-orange: #ea7c33;
  --hp-orange-strong: #d86a21;
  --hp-mint: #73c3a6;
  --hp-mint-strong: #39967b;
  --hp-purple: #2a214b;
  --hp-shadow-sm: 0 14px 34px rgba(15, 22, 41, 0.06);
  --hp-shadow-md: 0 24px 56px rgba(15, 22, 41, 0.1);
  --hp-shadow-lg: 0 40px 90px rgba(9, 14, 27, 0.18);
  --hp-radius-sm: 16px;
  --hp-radius-md: 22px;
  --hp-radius-lg: 30px;
  --hp-radius-xl: 38px;
  --hp-gap: clamp(18px, 3vw, 26px);
  --hp-section-space: clamp(72px, 10vw, 120px);
  color: var(--hp-body);
  background:
    radial-gradient(
      circle at top left,
      rgba(115, 195, 166, 0.08),
      transparent 24rem
    ),
    linear-gradient(180deg, #fbfcff 0%, #f4f6fb 18%, #ffffff 40%, #f7f8fc 100%);
  font-family: "Manrope", sans-serif;
}

.homepage-v2,
.homepage-v2 h1,
.homepage-v2 h2,
.homepage-v2 h3,
.homepage-v2 h4,
.homepage-v2 h5,
.homepage-v2 h6,
.homepage-v2 p,
.homepage-v2 li,
.homepage-v2 a,
.homepage-v2 button,
.homepage-v2 span {
  font-family: inherit;
}

.homepage-v2 h1,
.homepage-v2 h2,
.homepage-v2 h3,
.homepage-v2 h4,
.homepage-v2 h5,
.homepage-v2 h6 {
  color: var(--hp-heading);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.homepage-v2 p,
.homepage-v2 li {
  color: var(--hp-body);
}

.homepage-v2 .container {
  max-width: 1280px;
  padding: 0 clamp(20px, 4vw, 40px);
}

.homepage-v2 main {
  overflow-x: hidden;
}

.homepage-v2 a,
.homepage-v2 button {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.homepage-v2 a:focus-visible,
.homepage-v2 button:focus-visible {
  outline: 3px solid rgba(234, 124, 51, 0.32);
  outline-offset: 4px;
}

.hp-skip-link {
  position: absolute;
  left: 20px;
  top: -64px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--hp-surface-dark);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.hp-skip-link:focus {
  top: 16px;
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--hp-gap);
}

.hp-section {
  padding: var(--hp-section-space) 0;
}

.hp-section--surface {
  background: linear-gradient(
    180deg,
    rgba(239, 242, 248, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
}

.hp-section--dark {
  position: relative;
  background: linear-gradient(
    155deg,
    var(--hp-surface-dark) 0%,
    var(--hp-surface-dark-alt) 100%
  );
}

.hp-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(115, 195, 166, 0.12),
      transparent 18rem
    ),
    radial-gradient(
      circle at bottom left,
      rgba(234, 124, 51, 0.12),
      transparent 20rem
    );
  pointer-events: none;
}

.hp-section--cta {
  padding-top: 0;
}

.hp-badge,
.hp-kicker,
.hp-panel-label,
.hp-step-eyebrow,
.hp-compare-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-badge {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 29, 51, 0.05);
  border: 1px solid rgba(20, 29, 51, 0.08);
  color: var(--hp-purple);
}

.hp-kicker {
  color: var(--hp-purple);
}

.hp-kicker::before,
.hp-panel-label::before,
.hp-step-eyebrow::before,
.hp-compare-strip__label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(42, 33, 75, 0.25);
}

.hp-kicker--inverse {
  color: var(--hp-mint);
}

.hp-kicker--inverse::before {
  background: rgba(115, 195, 166, 0.45);
}

.hp-panel-label {
  color: var(--hp-muted);
}

.hp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 251, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16, 23, 43, 0.05);
}

.hp-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}

.hp-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.hp-brand__logo {
  width: auto;
  height: 42px;
}

.hp-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--hp-line);
  box-shadow: var(--hp-shadow-md);
}

.hp-nav.is-open {
  display: flex;
}

.hp-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  color: var(--hp-body);
  font-size: 0.95rem;
  font-weight: 700;
}

.hp-nav__link:hover,
.hp-nav__link:focus-visible {
  background: rgba(20, 29, 51, 0.05);
  color: var(--hp-heading);
}

.hp-nav__cta {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 29, 51, 0.08);
}

.hp-header__actions {
  display: none;
}

.hp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
}

.hp-button--primary {
  background: var(--hp-orange);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(234, 124, 51, 0.22);
}

.hp-button--primary:hover {
  background: var(--hp-orange-strong);
  box-shadow: 0 18px 34px rgba(216, 106, 33, 0.25);
}

.hp-button--secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--hp-line);
  color: var(--hp-heading);
  box-shadow: var(--hp-shadow-sm);
}

.hp-button--secondary:hover {
  border-color: var(--hp-line-strong);
}

.hp-button--block {
  width: 100%;
}

.hp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 238, 248, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

.hp-text-link::after {
  content: "→";
  font-size: 1rem;
}

.hp-text-link:hover {
  color: #ffffff;
}

.hp-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--hp-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--hp-shadow-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.hp-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hp-heading);
}

.homepage-v2.nav-open {
  overflow: hidden;
}

.hp-hero {
  padding-top: clamp(52px, 8vw, 96px);
}

.hp-hero__copy,
.hp-hero__stage,
.hp-section-heading__main,
.hp-section-heading__support,
.hp-problem-panel,
.hp-problem-content,
.hp-solution__copy,
.hp-solution__visual,
.hp-demo-step__copy,
.hp-demo-step__media,
.hp-faq-layout__intro,
.hp-faq-list,
.hp-cta__copy,
.hp-cta__actions,
.hp-trust__panel,
.hp-trust__content,
.hp-footer__brand,
.hp-footer__columns {
  grid-column: 1 / -1;
}

.hp-hero__copy h1 {
  margin-top: 20px;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.98;
  max-width: 10.5ch;
}

.hp-lead {
  margin-top: 20px;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hp-hero__subnote {
  margin-top: 14px;
  color: var(--hp-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hp-proof-strip,
.hp-chip-list,
.hp-bullet-list,
.hp-step-list,
.hp-detail-list,
.hp-availability,
.hp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-proof-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hp-proof-strip li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--hp-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--hp-shadow-sm);
  font-size: 0.92rem;
  font-weight: 700;
}

.hp-proof-strip li::before,
.hp-step-list li::before,
.hp-detail-list li::before,
.hp-bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--hp-mint-strong);
  box-shadow: 0 0 0 4px rgba(115, 195, 166, 0.18);
  flex-shrink: 0;
}

.hp-device-panel {
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--hp-radius-xl);
  border: 1px solid var(--hp-line);
  background: var(--hp-surface);
  box-shadow: var(--hp-shadow-md);
}

.hp-device-panel--dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    155deg,
    var(--hp-surface-dark) 0%,
    var(--hp-surface-dark-alt) 100%
  );
  box-shadow: var(--hp-shadow-lg);
}

.hp-device-panel__top {
  display: grid;
  gap: 18px;
}

.hp-device-panel__copy h2,
.hp-device-panel__copy h3 {
  margin-top: 14px;
  max-width: 14ch;
  line-height: 1.12;
}

.hp-device-panel--dark .hp-device-panel__copy h2,
.hp-device-panel--dark .hp-device-panel__copy h3,
.hp-section-heading--inverse h2,
.hp-section-heading--inverse p,
.hp-section-heading--inverse .hp-section-heading__support p,
.hp-flow-step h3,
.hp-flow-step p {
  color: #ffffff;
}

.hp-device-panel--dark .hp-device-panel__copy p,
.hp-section-heading--inverse .hp-section-heading__support p,
.hp-flow-step p {
  color: rgba(232, 238, 248, 0.78);
}

.hp-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hp-chip-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--hp-line);
  background: rgba(20, 29, 51, 0.04);
  color: var(--hp-heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.hp-chip-list--dark li {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #dbe5f3;
}

.hp-device-panel__screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 50vw, 660px);
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--hp-radius-lg);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(241, 244, 250, 0.95) 0%,
    rgba(229, 234, 243, 1) 100%
  );
}

.hp-device-panel--dark .hp-device-panel__screen {
  background: linear-gradient(
    180deg,
    rgba(16, 24, 46, 0.82) 0%,
    rgba(10, 15, 30, 0.98) 100%
  );
}

.hp-device-panel__image {
  width: auto;
  max-width: 100%;
  max-height: clamp(280px, 42vw, 560px);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.hp-device-panel__image--hero {
  max-height: clamp(300px, 48vw, 620px);
}

.hp-info-rail {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hp-info-rail__item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(20, 29, 51, 0.08);
  background: rgba(20, 29, 51, 0.04);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hp-info-rail--dark .hp-info-rail__item {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 238, 248, 0.82);
}

.hp-info-rail__item span {
  display: block;
  margin-bottom: 6px;
  color: var(--hp-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hp-info-rail--dark .hp-info-rail__item span {
  color: #ffffff;
}

.hp-section-heading {
  align-items: end;
  margin-bottom: 32px;
}

.hp-section-heading__main h2 {
  margin-top: 16px;
  max-width: 13ch;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  line-height: 1.08;
}

.hp-section-heading__support p {
  max-width: 54ch;
  font-size: 1rem;
  line-height: 1.82;
}

.hp-problem-grid,
.hp-solution-grid,
.hp-trust-grid,
.hp-faq-layout,
.hp-footer__top,
.hp-cta {
  align-items: start;
}

.hp-problem-panel {
  padding: 22px;
  border-radius: var(--hp-radius-lg);
  background: linear-gradient(
    155deg,
    var(--hp-surface-dark) 0%,
    var(--hp-surface-dark-alt) 100%
  );
  box-shadow: var(--hp-shadow-lg);
}

.hp-problem-panel .hp-panel-label,
.hp-problem-panel .hp-panel-label::before,
.hp-problem-panel .hp-bullet-list li {
  color: rgba(232, 238, 248, 0.84);
}

.hp-problem-panel .hp-panel-label::before {
  background: rgba(115, 195, 166, 0.45);
}

.hp-bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hp-bullet-list li {
  display: flex;
  align-items: flex-start;
  line-height: 1.65;
}

.hp-problem-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-problem-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hp-line);
}

.hp-problem-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hp-problem-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(234, 124, 51, 0.12);
  color: var(--hp-orange-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.hp-problem-item__body h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

.hp-problem-item__body p {
  margin-top: 10px;
  max-width: 60ch;
  line-height: 1.75;
}

.hp-compare-strip {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 20px;
  border-radius: var(--hp-radius-md);
  border: 1px solid var(--hp-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--hp-shadow-sm);
}

.hp-compare-strip__column {
  padding: 4px 0;
}

.hp-compare-strip__column--accent {
  border-top: 1px solid var(--hp-line);
  padding-top: 16px;
}

.hp-compare-strip__value {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--hp-heading);
}

.hp-benefit-list {
  display: grid;
  gap: 0;
}

.hp-benefit {
  padding: 20px 0;
  border-bottom: 1px solid var(--hp-line);
}

.hp-benefit:first-child {
  padding-top: 0;
}

.hp-benefit:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hp-benefit h3 {
  font-size: 1.2rem;
  line-height: 1.35;
}

.hp-benefit p {
  margin-top: 10px;
  max-width: 54ch;
  line-height: 1.75;
}

.hp-demo-stack {
  display: grid;
  gap: 22px;
}

.hp-demo-step {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--hp-gap);
  padding: clamp(20px, 4vw, 30px);
  border-radius: var(--hp-radius-lg);
  border: 1px solid var(--hp-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--hp-shadow-sm);
}

.hp-step-eyebrow {
  color: var(--hp-purple);
}

.hp-demo-step__copy h3 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.hp-demo-step__copy p {
  margin-top: 14px;
  max-width: 54ch;
  line-height: 1.82;
}

.hp-step-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hp-step-list li,
.hp-detail-list li {
  display: flex;
  align-items: flex-start;
  line-height: 1.7;
}

.hp-flow-track {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hp-flow-step {
  position: relative;
  padding: 18px 18px 18px 68px;
  border-radius: var(--hp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.hp-flow-step__index {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--hp-orange);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.hp-flow-step h3 {
  font-size: 1.1rem;
}

.hp-flow-step p {
  margin-top: 10px;
  line-height: 1.75;
}

.hp-trust__panel {
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--hp-radius-lg);
  background: linear-gradient(
    155deg,
    var(--hp-surface-dark) 0%,
    var(--hp-surface-dark-alt) 100%
  );
  box-shadow: var(--hp-shadow-lg);
}

.hp-trust__panel .hp-panel-label,
.hp-trust__panel .hp-panel-label::before,
.hp-trust__panel .hp-voice-note {
  color: rgba(232, 238, 248, 0.76);
}

.hp-trust__panel .hp-panel-label::before {
  background: rgba(115, 195, 166, 0.45);
}

.hp-voice-quote {
  margin-top: 18px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.hp-voice-note {
  margin-top: 18px;
  line-height: 1.75;
}

.hp-trust__content {
  display: grid;
  gap: 18px;
}

.hp-trust-listing {
  padding: 20px 0;
  border-top: 1px solid var(--hp-line);
}

.hp-trust-listing:first-child {
  padding-top: 0;
  border-top: 0;
}

.hp-trust-listing h3 {
  font-size: 1.14rem;
}

.hp-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.hp-faq-layout__intro h2 {
  margin-top: 16px;
  max-width: 13ch;
  font-size: clamp(2rem, 5vw, 3.05rem);
  line-height: 1.08;
}

.hp-faq-layout__intro p:last-child {
  margin-top: 16px;
  max-width: 44ch;
  line-height: 1.8;
}

.hp-faq-list {
  display: grid;
  gap: 14px;
}

.hp-faq-item {
  border-radius: var(--hp-radius-md);
  border: 1px solid var(--hp-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--hp-shadow-sm);
  overflow: hidden;
}

.hp-faq__heading {
  font-size: inherit;
}

.hp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--hp-heading);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.hp-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 29, 51, 0.06);
  color: var(--hp-heading);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.hp-faq__answer {
  padding: 0 20px 20px;
  color: var(--hp-body);
  font-size: 0.96rem;
  line-height: 1.8;
}

.hp-faq__answer > :first-child {
  margin-top: 0;
}

.hp-faq__answer > :last-child {
  margin-bottom: 0;
}

.hp-faq-item.is-open {
  border-color: rgba(57, 150, 123, 0.24);
}

.hp-faq-item.is-open .hp-faq__icon {
  background: rgba(115, 195, 166, 0.18);
  color: var(--hp-mint-strong);
  transform: rotate(45deg);
}

.hp-cta {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--hp-radius-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(115, 195, 166, 0.16),
      transparent 18rem
    ),
    radial-gradient(
      circle at bottom left,
      rgba(234, 124, 51, 0.16),
      transparent 20rem
    ),
    linear-gradient(
      155deg,
      var(--hp-surface-dark) 0%,
      var(--hp-surface-dark-alt) 100%
    );
  box-shadow: var(--hp-shadow-lg);
}

.hp-cta__copy h2 {
  margin-top: 16px;
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.hp-cta__copy p {
  margin-top: 18px;
  max-width: 54ch;
  color: rgba(232, 238, 248, 0.78);
  line-height: 1.82;
}

.hp-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hp-availability li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #e8eef8;
  font-size: 0.84rem;
  font-weight: 700;
}

.hp-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hp-store-buttons {
  display: grid;
  gap: 12px;
  width: 100%;
}

.hp-store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 70px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 24px rgba(9, 15, 28, 0.12);
  color: var(--hp-heading);
}

.hp-store-button:hover {
  transform: translateY(-2px);
}

.hp-store-button__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: currentColor;
}

.hp-store-button__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-store-button__eyebrow {
  color: var(--hp-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-store-button__label {
  color: var(--hp-heading);
  font-size: 1rem;
  font-weight: 800;
}

.hp-footer {
  padding: 0 0 40px;
  background: linear-gradient(180deg, #0f1730 0%, #111a34 100%);
  color: rgba(222, 229, 240, 0.76);
}

.hp-footer .container {
  padding-top: 34px;
}

.hp-footer__brand p,
.hp-footer__links a,
.hp-footer__disclaimer,
.hp-footer__bottom {
  color: rgba(222, 229, 240, 0.74);
}

.hp-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-footer__logo {
  width: auto;
  height: 44px;
  filter: brightness(0) invert(1);
}

.hp-footer__brand p {
  margin-top: 18px;
  max-width: 44ch;
  line-height: 1.8;
}

.hp-footer__columns {
  display: grid;
  gap: 18px;
}

.hp-footer__column h2 {
  color: #ffffff;
  font-size: 0.96rem;
}

.hp-footer__links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hp-footer__links a {
  font-size: 0.94rem;
  font-weight: 600;
}

.hp-footer__links a:hover {
  color: #ffffff;
}

.hp-footer__disclaimer {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--hp-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  line-height: 1.8;
}

.hp-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hp-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hp-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-info-rail,
  .hp-compare-strip,
  .hp-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hp-compare-strip__column--accent {
    border-top: 0;
    border-left: 1px solid var(--hp-line);
    padding-top: 4px;
    padding-left: 16px;
  }
}

@media (min-width: 900px) {
  .hp-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 24px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    width: auto;
  }

  .hp-nav__link {
    position: relative;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .hp-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--hp-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .hp-nav__link:hover,
  .hp-nav__link:focus-visible {
    background: transparent;
    color: var(--hp-heading);
  }

  .hp-nav__link:hover::after,
  .hp-nav__link:focus-visible::after {
    transform: scaleX(1);
  }

  .hp-nav__cta {
    display: none;
  }

  .hp-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hp-nav-toggle {
    display: none;
  }

  .hp-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hp-info-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hp-hero__copy {
    grid-column: span 5;
  }

  .hp-hero__stage {
    grid-column: span 7;
  }

  .hp-section-heading__main {
    grid-column: span 7;
  }

  .hp-section-heading__support {
    grid-column: span 5;
  }

  .hp-problem-panel {
    grid-column: span 4;
  }

  .hp-problem-content {
    grid-column: span 8;
  }

  .hp-solution__copy {
    grid-column: span 5;
    align-self: center;
  }

  .hp-solution__visual {
    grid-column: span 7;
  }

  .hp-demo-step__copy {
    grid-column: span 5;
    align-self: center;
  }

  .hp-demo-step__media {
    grid-column: span 7;
  }

  .hp-demo-step--reverse .hp-demo-step__copy {
    order: 2;
  }

  .hp-demo-step--reverse .hp-demo-step__media {
    order: 1;
  }

  .hp-flow-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }

  .hp-flow-track::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
  }

  .hp-flow-step {
    min-height: 100%;
    padding: 84px 22px 22px;
  }

  .hp-flow-step__index {
    left: 22px;
    top: 22px;
  }

  .hp-trust__panel {
    grid-column: span 5;
  }

  .hp-trust__content {
    grid-column: span 7;
    align-self: center;
  }

  .hp-faq-layout__intro {
    grid-column: span 4;
  }

  .hp-faq-list {
    grid-column: span 8;
  }

  .hp-cta__copy {
    grid-column: span 7;
  }

  .hp-cta__actions {
    grid-column: span 5;
    justify-content: center;
  }

  .hp-footer__brand {
    grid-column: span 4;
  }

  .hp-footer__columns {
    grid-column: span 8;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .hp-hero__copy h1,
  .hp-section-heading__main h2,
  .hp-faq-layout__intro h2,
  .hp-cta__copy h2 {
    max-width: 12ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .homepage-v2 *,
  .homepage-v2 *::before,
  .homepage-v2 *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
