:root {
  --life-navy: #061a3a;
  --life-navy-2: #0b2a5c;
  --life-blue: #0967df;
  --life-blue-soft: #74aaff;
  --life-orange: #f04f13;
  --life-mint: #39e1b1;
  --life-ink: #10203f;
  --life-muted: #60718d;
  --life-line: rgba(125, 164, 221, 0.22);
  --life-white: #f7fbff;
}

.webcar-life-page {
  overflow-x: hidden;
  background: #f5f8fd;
  color: var(--life-ink);
}

.webcar-life-page main {
  overflow: clip;
}

.life-hero {
  position: relative;
  min-height: min(850px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 32%, rgba(31, 109, 235, 0.34), transparent 28%),
    radial-gradient(circle at 15% 12%, rgba(28, 91, 189, 0.23), transparent 30%),
    linear-gradient(126deg, #04142d 0%, #071f46 47%, #0d3a79 100%);
  isolation: isolate;
}

.life-hero::before,
.life-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border: 1px solid rgba(130, 180, 255, 0.13);
  border-radius: 50%;
}

.life-hero::before {
  width: 780px;
  aspect-ratio: 1;
  right: -230px;
  top: -285px;
  box-shadow: 0 0 0 120px rgba(71, 131, 233, 0.025), 0 0 0 240px rgba(71, 131, 233, 0.018);
}

.life-hero::after {
  width: 620px;
  aspect-ratio: 1;
  left: -430px;
  bottom: -350px;
  box-shadow: 0 0 0 110px rgba(71, 131, 233, 0.03);
}

.life-ambient,
.life-match-ambient,
.match-app-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.life-ambient span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 18px var(--life-mint);
  animation: life-float 7s ease-in-out infinite;
}

.life-ambient span:nth-child(1) { left: 8%; top: 22%; }
.life-ambient span:nth-child(2) { left: 48%; top: 16%; animation-delay: -2s; }
.life-ambient span:nth-child(3) { right: 7%; bottom: 20%; animation-delay: -4s; }

.life-ambient i {
  position: absolute;
  width: 42vw;
  height: 1px;
  left: 12%;
  top: 28%;
  background: linear-gradient(90deg, transparent, rgba(100, 161, 255, 0.22), transparent);
  transform: rotate(-18deg);
}

.life-ambient i:last-child {
  left: 54%;
  top: 73%;
  transform: rotate(24deg);
}

.life-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(74px, 10vh, 120px);
}

.life-kicker,
.life-section-label {
  margin: 0 0 18px;
  color: #0b63ce;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.life-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #a9c9fb;
}

.life-kicker i {
  width: 28px;
  height: 2px;
  border-radius: 5px;
  background: var(--life-orange);
}

.life-section-label.is-light {
  color: #9fc6ff;
}

.life-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(52px, 5.4vw, 92px);
  font-weight: 780;
  line-height: 0.94;
  letter-spacing: -0.064em;
}

.life-hero h1 em,
.life-manifesto h2 em,
.life-match-copy h2 em {
  color: #8eb9ff;
  font-style: normal;
}

.life-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #c5d5ec;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.62;
}

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

.life-button,
.life-text-action {
  appearance: none;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.life-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border-radius: 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 15px 42px rgba(2, 14, 36, 0.21);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.life-button:hover {
  transform: translateY(-3px);
}

.life-button.is-orange {
  background: linear-gradient(135deg, #ff641e, #d73a04);
  box-shadow: 0 20px 48px rgba(224, 68, 9, 0.27);
}

.life-button.is-orange:hover {
  box-shadow: 0 24px 56px rgba(224, 68, 9, 0.38);
}

.life-button.is-blue {
  background: linear-gradient(135deg, #1478ed, #0756bd);
}

.life-button.is-ghost {
  border: 1px solid rgba(174, 206, 255, 0.28);
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.life-button.is-large {
  min-height: 64px;
  padding-inline: 32px;
  font-size: 16px;
}

.life-trust-row {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  margin-top: 38px;
}

.life-trust-row span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 9px;
  color: #aec0dc;
}

.life-trust-row b {
  grid-row: 1 / 3;
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.life-trust-row small {
  max-width: 90px;
  font-size: 11px;
  line-height: 1.25;
}

.life-orbit {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  row-gap: 14px;
  padding: 44px 0;
}

.life-orbit-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.life-orbit-rings i {
  position: absolute;
  width: 500px;
  aspect-ratio: 1;
  border: 1px solid rgba(112, 165, 248, 0.17);
  border-radius: 50%;
  animation: life-orbit-spin 24s linear infinite;
}

.life-orbit-rings i:nth-child(2) {
  width: 385px;
  border-style: dashed;
  animation-duration: 36s;
  animation-direction: reverse;
}

.life-orbit-rings i:nth-child(3) {
  width: 265px;
  border-color: rgba(70, 225, 180, 0.13);
}

.life-orbit-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 20px;
  border: 1px solid rgba(137, 179, 241, 0.24);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(22, 56, 110, 0.82), rgba(7, 31, 68, 0.78));
  box-shadow: 0 28px 70px rgba(0, 8, 28, 0.32);
  backdrop-filter: blur(18px);
}

.life-orbit-card.is-match {
  justify-self: start;
  transform: translateX(-12px);
}

.life-orbit-card.is-concierge {
  justify-self: end;
  transform: translateX(18px);
  border-color: rgba(255, 102, 42, 0.33);
}

.life-orbit-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(145deg, #1686ff, #0754c5);
  box-shadow: 0 10px 24px rgba(4, 83, 191, 0.37);
}

.life-orbit-card.is-concierge .life-orbit-number {
  background: linear-gradient(145deg, #ff6c2b, #e33f07);
}

.life-orbit-card small,
.life-orbit-card strong,
.life-orbit-card p {
  display: block;
}

.life-orbit-card small {
  margin-bottom: 4px;
  color: #89addf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-orbit-card strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
}

.life-orbit-card p {
  margin: 5px 0 0;
  color: #aebfda;
  font-size: 12px;
  line-height: 1.4;
}

.life-orbit-card > b {
  align-self: start;
  padding: 7px 9px;
  border: 1px solid rgba(66, 227, 178, 0.25);
  border-radius: 999px;
  color: #66edc2;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.life-orbit-card.is-concierge > b {
  border-color: rgba(255, 116, 65, 0.28);
  color: #ff9a72;
}

.life-orbit-core {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 175, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: #0a2d63;
  box-shadow: 0 0 0 12px rgba(15, 72, 151, 0.18), 0 0 50px rgba(34, 115, 236, 0.38);
}

.life-orbit-core span {
  font-size: 18px;
  font-weight: 900;
}

.life-orbit-core i {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 10px;
  aspect-ratio: 1;
  border: 2px solid #0a2d63;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 14px var(--life-mint);
}

.life-orbit-caption {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 8px 0 0;
  color: #86a4cf;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.life-orbit-caption i {
  width: 22px;
  height: 2px;
  background: var(--life-orange);
}

.life-manifesto,
.life-journey,
.life-principles,
.life-faq {
  padding: clamp(80px, 9vw, 132px) 0;
}

.life-manifesto {
  background:
    radial-gradient(circle at 14% 20%, rgba(27, 106, 224, 0.08), transparent 28%),
    #f5f8fd;
}

.life-manifesto-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 8vw, 128px);
  align-items: end;
}

.life-manifesto h2,
.life-centered-heading h2,
.life-concierge-copy h2,
.life-faq h2 {
  margin: 0;
  color: var(--life-ink);
  font-size: clamp(42px, 4.8vw, 75px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.life-manifesto-heading > p,
.life-centered-heading > p,
.life-concierge-copy > p,
.life-faq-grid > div:first-child > p:last-child {
  margin: 0;
  color: var(--life-muted);
  font-size: 18px;
  line-height: 1.68;
}

.life-service-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.life-service-card {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid #dfe9f7;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(21, 49, 94, 0.09);
}

.life-service-card::before {
  content: "";
  position: absolute;
  width: 390px;
  aspect-ratio: 1;
  right: -170px;
  top: -200px;
  border: 1px solid rgba(29, 111, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(29, 111, 230, 0.025);
}

.life-service-card.is-concierge::before {
  border-color: rgba(239, 78, 19, 0.16);
  box-shadow: 0 0 0 70px rgba(239, 78, 19, 0.025);
}

.life-service-card > header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.life-service-card > header span {
  color: #98a9c3;
  font-size: 12px;
  font-weight: 900;
}

.life-service-card > header b {
  padding: 8px 12px;
  border-radius: 999px;
  color: #1268d2;
  font-size: 9px;
  letter-spacing: 0.13em;
  background: #eaf3ff;
}

.life-service-card.is-concierge > header b {
  color: #dc450d;
  background: #fff0e9;
}

.life-service-icon {
  position: relative;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  margin: 4px auto 28px;
}

.life-service-icon i {
  position: absolute;
  inset: 0;
  border: 1px solid #c8dcf9;
  border-radius: 50%;
}

.life-service-icon i:nth-child(2) { inset: 22px; border-style: dashed; }
.life-service-icon i:nth-child(3) { inset: 46px; border-color: #67a7ff; }

.life-service-icon strong {
  color: #0a61ce;
  font-size: 32px;
  letter-spacing: -0.06em;
}

.life-service-eyebrow {
  margin: 0 0 12px;
  color: #0c65ce;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.life-service-card.is-concierge .life-service-eyebrow {
  color: #df490f;
}

.life-service-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.life-service-card > p:not(.life-service-eyebrow) {
  margin: 18px 0 0;
  color: var(--life-muted);
  font-size: 16px;
  line-height: 1.62;
}

.life-service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.life-service-card li {
  position: relative;
  padding-left: 27px;
  color: #38506f;
  font-size: 14px;
}

.life-service-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  background: var(--life-blue);
}

.life-service-card.is-concierge li::before {
  background: var(--life-orange);
}

.life-text-action {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  color: #0b62ca;
  font-size: 15px;
  font-weight: 900;
  background: transparent;
}

.life-service-card.is-concierge .life-text-action {
  color: #d9440d;
}

.life-concierge-preview {
  width: min(100%, 390px);
  margin: 0 auto 30px;
  padding: 18px;
  border: 1px solid #dbe6f6;
  border-radius: 23px;
  background: linear-gradient(145deg, #f4f8fe, #fff);
  box-shadow: 0 18px 36px rgba(25, 54, 99, 0.09);
}

.life-concierge-preview > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
}

.life-concierge-preview > div i {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 12px rgba(57, 225, 177, 0.7);
}

.life-concierge-preview small,
.life-concierge-preview strong {
  display: block;
}

.life-concierge-preview small {
  color: #7c90ad;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.life-concierge-preview strong {
  font-size: 14px;
}

.life-concierge-preview > p {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 8px 0 0;
  padding: 12px;
  border: 1px solid #e4ebf5;
  border-radius: 14px;
  background: #fff;
}

.life-concierge-preview > p b,
.life-concierge-preview > p span {
  display: block;
}

.life-concierge-preview > p b { font-size: 12px; }
.life-concierge-preview > p span { color: #70809a; font-size: 10px; }
.life-concierge-preview > p em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: #df480f;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.life-match-section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(18, 104, 229, 0.29), transparent 28%),
    linear-gradient(135deg, #03152f, #082654 58%, #0a316a);
}

.life-match-ambient span {
  position: absolute;
  width: 720px;
  aspect-ratio: 1;
  right: -260px;
  top: -290px;
  border: 1px solid rgba(103, 159, 244, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(103, 159, 244, 0.025), 0 0 0 220px rgba(103, 159, 244, 0.018);
}

.life-match-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
}

.life-match-copy h2 {
  margin: 0;
  font-size: clamp(45px, 4.7vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.life-match-copy > p:not(.life-section-label) {
  margin: 25px 0 0;
  color: #bacce5;
  font-size: 18px;
  line-height: 1.65;
}

.life-match-modes {
  display: grid;
  gap: 10px;
  margin: 30px 0 32px;
}

.life-match-modes > span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 13px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(139, 179, 238, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.life-match-modes b {
  grid-row: 1 / 3;
  color: #75aaff;
  font-size: 12px;
}

.life-match-modes small,
.life-match-modes strong {
  display: block;
}

.life-match-modes small {
  color: #7f9ec8;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-match-modes strong {
  margin-top: 2px;
  font-size: 13px;
}

.life-match-note {
  display: block;
  margin-top: 12px;
  color: #8fa7c8;
  font-size: 11px;
}

.life-match-demo {
  position: relative;
  min-height: 600px;
  padding: 24px;
  border: 1px solid rgba(133, 179, 246, 0.24);
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(22, 58, 113, 0.79), rgba(4, 25, 56, 0.89));
  box-shadow: 0 40px 100px rgba(0, 8, 28, 0.36);
  backdrop-filter: blur(18px);
}

.life-match-demo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(139, 183, 248, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.life-match-demo > header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 4px 20px;
  color: #9db7dc;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-match-demo > header span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.life-match-demo > header i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 12px var(--life-mint);
}

.life-match-demo > header b {
  padding: 7px 10px;
  border: 1px solid rgba(57, 225, 177, 0.25);
  border-radius: 999px;
  color: #60e8bd;
  font-size: 8px;
}

.life-demo-scene {
  position: relative;
  height: 310px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(132, 176, 241, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(52, 118, 214, 0.23), rgba(4, 20, 47, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(102, 153, 229, 0.055) 59px 60px);
}

.life-demo-scene::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 68px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 166, 243, 0.25), transparent);
}

.life-demo-scene > p {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 18px 20px;
  color: #809dc5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.life-demo-sky {
  position: absolute;
  inset: 0;
}

.life-demo-sky i {
  position: absolute;
  width: 120px;
  height: 180px;
  left: 8%;
  bottom: 69px;
  border: 1px solid rgba(111, 162, 235, 0.11);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.life-demo-sky i:nth-child(2) { width: 74px; height: 126px; left: 36%; }
.life-demo-sky i:nth-child(3) { width: 95px; height: 150px; left: auto; right: 7%; }

.life-demo-car {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 80px;
  width: min(78%, 410px);
  height: 135px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 18px rgba(0, 7, 26, 0.48));
}

.life-demo-car-body {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 20px;
  height: 65px;
  border: 1px solid rgba(117, 174, 255, 0.6);
  border-radius: 58% 37% 21px 25px / 80% 70% 20px 20px;
  background: linear-gradient(165deg, rgba(33, 121, 244, 0.42), rgba(9, 51, 118, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 0 35px rgba(24, 109, 234, 0.2);
}

.life-demo-car-body::before {
  content: "";
  position: absolute;
  width: 48%;
  height: 62px;
  left: 25%;
  bottom: 44px;
  border: 1px solid rgba(117, 174, 255, 0.48);
  border-bottom: 0;
  border-radius: 60px 80px 0 0;
  background: linear-gradient(150deg, rgba(43, 105, 197, 0.45), rgba(6, 32, 72, 0.8));
  transform: skewX(-9deg);
}

.life-demo-wheel {
  position: absolute;
  z-index: 4;
  width: 50px;
  aspect-ratio: 1;
  bottom: 0;
  border: 10px solid #06142d;
  border-radius: 50%;
  background: #4f7ab5;
  box-shadow: inset 0 0 0 4px #102d57;
}

.life-demo-wheel.one { left: 17%; }
.life-demo-wheel.two { right: 16%; }

.life-demo-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.life-demo-signals > span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(132, 176, 241, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.life-demo-signals small {
  color: #7692bb;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.life-demo-signals i {
  grid-column: 1 / 3;
  height: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(99, 145, 213, 0.15);
}

.life-demo-signals i::after {
  content: "";
  display: block;
  width: var(--signal);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0870ed, #53a2ff);
}

.life-demo-signals b {
  color: #bcd6fa;
  font-size: 10px;
}

.life-match-demo > footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(239, 83, 24, 0.23);
  border-radius: 16px;
  background: rgba(239, 83, 24, 0.07);
}

.life-match-demo > footer small,
.life-match-demo > footer strong {
  display: block;
}

.life-match-demo > footer small {
  color: #a17f76;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-match-demo > footer strong {
  margin-top: 3px;
  font-size: 13px;
}

.life-match-demo > footer > i {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  background: var(--life-orange);
}

.life-centered-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.life-centered-heading > p:last-child {
  max-width: 710px;
  margin: 20px auto 0;
}

.life-journey {
  background: #f5f8fd;
}

.life-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 65px 0 0;
  padding: 0;
  list-style: none;
}

.life-journey-track::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, #1a72dc, #f1561d);
}

.life-journey-track li {
  position: relative;
  z-index: 2;
  padding: 0 12px;
  text-align: center;
}

.life-journey-track li > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 6px solid #f5f8fd;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  background: #1268d3;
  box-shadow: 0 0 0 1px #aacbf5;
}

.life-journey-track li:nth-last-child(-n + 2) > span {
  background: var(--life-orange);
  box-shadow: 0 0 0 1px #ffc1a8;
}

.life-journey-track small,
.life-journey-track strong {
  display: block;
}

.life-journey-track small {
  color: #7c90ae;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-journey-track strong {
  margin-top: 5px;
  font-size: 15px;
}

.life-journey-track p {
  margin: 8px 0 0;
  color: #70809a;
  font-size: 12px;
  line-height: 1.5;
}

.life-concierge-section {
  padding: clamp(88px, 10vw, 150px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 22% 48%, rgba(33, 111, 230, 0.3), transparent 29%),
    linear-gradient(135deg, #071a39, #0b2d61);
}

.life-concierge-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.life-phone {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  padding: 22px;
  border: 1px solid rgba(143, 184, 244, 0.3);
  border-radius: 44px;
  background: linear-gradient(165deg, rgba(21, 60, 117, 0.93), rgba(4, 24, 55, 0.96));
  box-shadow: 0 45px 100px rgba(0, 7, 25, 0.42), inset 0 1px rgba(255, 255, 255, 0.07);
}

.life-phone::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: -1;
  border: 1px solid rgba(99, 154, 237, 0.12);
  border-radius: 62px;
  box-shadow: 0 0 0 45px rgba(30, 100, 210, 0.035);
}

.life-phone > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px 18px;
  color: #b9cae4;
  font-size: 10px;
}

.life-phone > header b {
  width: 86px;
  height: 23px;
  border-radius: 20px;
  background: #020817;
}

.life-phone > header i {
  color: #8fa7ca;
  font-style: normal;
  letter-spacing: 3px;
}

.life-phone-brand {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 17px;
  border: 1px solid rgba(128, 177, 247, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.life-phone-brand small,
.life-phone-brand strong {
  display: block;
}

.life-phone-brand small {
  color: #7293c1;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.life-phone-brand strong {
  margin-top: 4px;
  font-size: 17px;
}

.life-phone-brand i {
  align-self: center;
  padding: 6px 9px;
  border: 1px solid rgba(57, 225, 177, 0.26);
  border-radius: 999px;
  color: #58e3b7;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.life-phone-welcome {
  padding: 27px 4px 18px;
}

.life-phone-welcome small,
.life-phone-welcome strong,
.life-phone-welcome span {
  display: block;
}

.life-phone-welcome small {
  color: #7f9bc3;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.life-phone-welcome strong {
  margin-top: 5px;
  font-size: 23px;
}

.life-phone-welcome span {
  margin-top: 5px;
  color: #9fb2d0;
  font-size: 11px;
}

.life-phone > article {
  display: grid;
  grid-template-columns: 49px 1fr auto;
  gap: 13px;
  align-items: center;
  margin-top: 9px;
  padding: 14px;
  border: 1px solid rgba(135, 178, 242, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.04);
}

.life-phone > article.is-urgent {
  border-color: rgba(244, 96, 38, 0.29);
  background: rgba(239, 79, 19, 0.08);
}

.life-phone > article > span {
  width: 49px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  background: #126ad8;
}

.life-phone > article.is-urgent > span {
  background: var(--life-orange);
}

.life-phone > article small,
.life-phone > article strong,
.life-phone > article p {
  display: block;
  margin: 0;
}

.life-phone > article small {
  color: #7591ba;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.life-phone > article strong {
  margin-top: 2px;
  font-size: 14px;
}

.life-phone > article p {
  margin-top: 2px;
  color: #95a8c7;
  font-size: 9px;
}

.life-phone > article > b {
  color: #7eb2fd;
}

.life-phone > footer {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 15px;
  padding: 16px;
  border: 1px solid rgba(67, 226, 180, 0.2);
  border-radius: 17px;
  background: rgba(57, 225, 177, 0.06);
}

.life-phone > footer > i {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 12px var(--life-mint);
}

.life-phone > footer small,
.life-phone > footer strong {
  display: block;
}

.life-phone > footer small {
  color: #69a894;
  font-size: 7px;
  font-weight: 900;
}

.life-phone > footer strong {
  margin-top: 2px;
  font-size: 11px;
}

.life-concierge-copy .life-section-label {
  color: #91baf5;
}

.life-concierge-copy h2 {
  color: #fff;
}

.life-concierge-copy > p {
  margin-top: 24px;
  color: #b4c7e3;
}

.life-concierge-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 34px;
}

.life-concierge-features article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(137, 179, 241, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.life-concierge-features article > span {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #8fc0ff;
  font-size: 10px;
  font-weight: 900;
  background: rgba(22, 107, 220, 0.18);
}

.life-concierge-features strong {
  font-size: 13px;
}

.life-concierge-features p {
  margin: 4px 0 0;
  color: #90a5c4;
  font-size: 10px;
  line-height: 1.4;
}

.life-principles {
  background: #fff;
}

.life-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 54px;
}

.life-principles-grid article {
  position: relative;
  min-height: 235px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #e0e9f6;
  border-radius: 22px;
  background: #f8fbff;
}

.life-principles-grid article::after {
  content: "";
  position: absolute;
  width: 100px;
  aspect-ratio: 1;
  right: -45px;
  top: -50px;
  border: 1px solid rgba(16, 103, 211, 0.1);
  border-radius: 50%;
}

.life-principles-grid span {
  color: #0b66cf;
  font-size: 11px;
  font-weight: 900;
}

.life-principles-grid h3 {
  margin: 42px 0 0;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.life-principles-grid p {
  margin: 12px 0 0;
  color: #697b96;
  font-size: 13px;
  line-height: 1.55;
}

.life-faq {
  background: #f5f8fd;
}

.life-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(45px, 9vw, 135px);
}

.life-faq-list {
  display: grid;
  gap: 10px;
}

.life-faq-list details {
  border: 1px solid #dde7f5;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(20, 48, 91, 0.04);
}

.life-faq-list summary {
  position: relative;
  padding: 21px 55px 21px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
}

.life-faq-list summary::-webkit-details-marker {
  display: none;
}

.life-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #0c66ce;
  background: #edf4fd;
}

.life-faq-list details[open] summary::after {
  content: "\2212";
}

.life-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #687a94;
  font-size: 14px;
  line-height: 1.62;
}

.life-final-cta {
  padding: clamp(62px, 7vw, 100px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 76% 20%, rgba(36, 116, 234, 0.35), transparent 28%),
    linear-gradient(125deg, #061832, #0a2c60);
}

.life-final-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.life-final-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.life-final-cta p:not(.life-section-label) {
  margin: 15px 0 0;
  color: #afc4e2;
  font-size: 16px;
}

/* WebCar Match fullscreen experience */
body.match-is-open {
  overflow: hidden !important;
}

body.match-is-open .floating-contact,
body.match-is-open .mobile-actions,
body.match-is-open .back-to-top,
body.match-is-open [data-cookie-banner] {
  visibility: hidden !important;
}

.match-app[hidden] {
  display: none !important;
}

.match-app {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(28, 111, 238, 0.28), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(15, 83, 180, 0.22), transparent 30%),
    linear-gradient(135deg, #020d20, #061d43 55%, #0a316b);
}

.match-app.is-entering {
  animation: match-app-in 420ms cubic-bezier(.2, .8, .2, 1) both;
}

.match-app.is-leaving {
  animation: match-app-out 280ms ease both;
}

.match-app-ambient span {
  position: absolute;
  width: 72vw;
  aspect-ratio: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(109, 165, 249, 0.12);
  border-radius: 50%;
}

.match-app-ambient span:nth-child(2) {
  width: 54vw;
  border-style: dashed;
  animation: life-orbit-spin 45s linear infinite;
}

.match-app-ambient span:nth-child(3) {
  width: 34vw;
  border-color: rgba(65, 226, 181, 0.1);
}

.match-app-ambient i {
  position: absolute;
  width: 4px;
  aspect-ratio: 1;
  left: 15%;
  top: 25%;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 15px var(--life-mint);
  animation: life-float 5s ease-in-out infinite;
}

.match-app-ambient i:last-child {
  left: auto;
  right: 10%;
  top: auto;
  bottom: 20%;
  background: #ff6d31;
  box-shadow: 0 0 15px #ff6d31;
  animation-delay: -2s;
}

.match-app-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.match-app-header {
  height: 78px;
  display: grid;
  grid-template-columns: 190px minmax(180px, 420px) 190px;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(125, 172, 242, 0.13);
  background: rgba(2, 14, 33, 0.32);
  backdrop-filter: blur(18px);
}

.match-app-brand img {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.match-app-progress {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  justify-self: center;
}

.match-app-progress > span {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(121, 168, 237, 0.14);
}

.match-app-progress > span i {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #1378f0, #63adff, #f35a20);
  box-shadow: 0 0 15px rgba(58, 145, 255, 0.45);
  transition: width 480ms cubic-bezier(.2, .8, .2, 1);
}

.match-app-progress small {
  min-width: 37px;
  color: #9db2d1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.match-app-close {
  width: 42px;
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(141, 184, 247, 0.23);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

.match-app-stage {
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(113, 165, 241, 0.35) transparent;
}

.match-screen {
  width: min(1180px, calc(100% - 42px));
  min-height: calc(100vh - 78px);
  display: grid;
  align-content: center;
  margin: 0 auto;
  padding: 44px 0 60px;
  animation: match-screen-in 440ms cubic-bezier(.2, .8, .2, 1) both;
}

.match-intro {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  gap: clamp(48px, 8vw, 115px);
  align-items: center;
}

.match-intro-copy > p:first-child,
.match-question-copy > p:first-child,
.match-result-heading > p:first-child {
  margin: 0 0 17px;
  color: #91b7ed;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.match-intro h2,
.match-question-copy h2,
.match-result-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.057em;
}

.match-intro h2 em,
.match-question-copy h2 em,
.match-result-heading h2 em {
  color: #8fbaff;
  font-style: normal;
}

.match-intro-copy > p:not(:first-child) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b6c8e3;
  font-size: 18px;
  line-height: 1.65;
}

.match-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.match-intro-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(136, 179, 242, 0.2);
  border-radius: 999px;
  color: #a9bedd;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.match-primary,
.match-secondary,
.match-choice {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.match-primary,
.match-secondary {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 27px;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.match-primary {
  border: 0;
  background: linear-gradient(135deg, #ff6522, #d93d06);
  box-shadow: 0 19px 45px rgba(220, 61, 6, 0.3);
}

.match-secondary {
  border: 1px solid rgba(143, 184, 246, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.match-intro-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.match-intro-radar {
  position: absolute;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(114, 169, 250, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(91, 148, 235, 0.035), 0 0 0 90px rgba(91, 148, 235, 0.02);
  animation: match-breathe 4s ease-in-out infinite;
}

.match-intro-radar::before,
.match-intro-radar::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(113, 167, 247, 0.19);
  border-radius: 50%;
}

.match-intro-radar::after {
  inset: 35%;
  border-style: solid;
  border-color: rgba(61, 225, 179, 0.18);
}

.match-intro-core {
  position: relative;
  z-index: 2;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 185, 255, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, #135fc6, #082b62 65%);
  box-shadow: 0 0 60px rgba(28, 113, 236, 0.5);
}

.match-intro-core span {
  font-size: 28px;
  font-weight: 950;
}

.match-intro-core i {
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  right: 10px;
  top: 8px;
  border: 2px solid #0b397d;
  border-radius: 50%;
  background: var(--life-mint);
  box-shadow: 0 0 14px var(--life-mint);
}

.match-intro-tag {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 12px 15px;
  border: 1px solid rgba(132, 180, 248, 0.2);
  border-radius: 13px;
  background: rgba(10, 41, 88, 0.82);
  box-shadow: 0 14px 32px rgba(0, 10, 30, 0.22);
  backdrop-filter: blur(14px);
}

.match-intro-tag small {
  color: #748fb7;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-intro-tag strong {
  font-size: 12px;
}

.match-intro-tag.is-one { left: 0; top: 17%; }
.match-intro-tag.is-two { right: 0; top: 30%; }
.match-intro-tag.is-three { left: 10%; bottom: 18%; }

.match-question {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.match-question-copy h2 {
  font-size: clamp(38px, 4.2vw, 66px);
}

.match-question-copy > p:last-child {
  margin: 22px 0 0;
  color: #aebfda;
  font-size: 16px;
  line-height: 1.58;
}

.match-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.match-choice {
  position: relative;
  min-height: 145px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 21px;
  border: 1px solid rgba(136, 179, 242, 0.18);
  border-radius: 20px;
  color: #fff;
  text-align: left;
  background: linear-gradient(145deg, rgba(26, 63, 119, 0.72), rgba(8, 32, 70, 0.76));
  box-shadow: 0 18px 42px rgba(0, 10, 31, 0.17);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.match-choice:hover,
.match-choice:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(105, 170, 255, 0.55);
  background: linear-gradient(145deg, rgba(28, 78, 153, 0.82), rgba(8, 38, 83, 0.86));
}

.match-choice.is-selected {
  border-color: #64a8ff;
  box-shadow: 0 0 0 2px rgba(75, 149, 247, 0.18), 0 20px 48px rgba(0, 15, 44, 0.24);
}

.match-choice-icon {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #9dccff;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(145deg, rgba(26, 122, 242, 0.28), rgba(8, 75, 163, 0.35));
}

.match-choice-copy small,
.match-choice-copy strong,
.match-choice-copy span {
  display: block;
}

.match-choice-copy small {
  color: #7794bd;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.match-choice-copy strong {
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.12;
}

.match-choice-copy span {
  margin-top: 5px;
  color: #9eb1ce;
  font-size: 11px;
  line-height: 1.4;
}

.match-choice-arrow {
  color: #78acfb;
  font-size: 18px;
}

.match-question-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.match-question-back {
  appearance: none;
  border: 0;
  color: #95a9c8;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  background: transparent;
}

.match-priority-board {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(137, 179, 242, 0.17);
  border-radius: 25px;
  background: rgba(8, 33, 72, 0.65);
  box-shadow: 0 25px 60px rgba(0, 9, 29, 0.24);
}

.match-priority-board > p {
  margin: 0 0 8px;
  color: #839fc7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-priority {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(135, 178, 241, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.match-priority strong {
  font-size: 12px;
}

.match-priority-dots {
  display: flex;
  gap: 6px;
}

.match-priority-dots button {
  width: 24px;
  aspect-ratio: 1;
  border: 1px solid rgba(133, 177, 240, 0.2);
  border-radius: 8px;
  color: #7794bd;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
}

.match-priority-dots button.is-active {
  border-color: #4f9bff;
  color: #fff;
  background: #126edc;
  box-shadow: 0 6px 18px rgba(13, 104, 220, 0.28);
}

.match-priority-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: #8ca5c9;
  font-size: 10px;
}

.match-priority-total b {
  color: #fff;
}

.match-analysis {
  justify-items: center;
  text-align: center;
}

.match-analysis-radar {
  position: relative;
  width: min(55vw, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.match-analysis-radar > span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(108, 166, 250, 0.21);
  border-radius: 50%;
  animation: match-analysis-ring 2.5s ease-in-out infinite;
}

.match-analysis-radar > span:nth-child(2) {
  inset: 17%;
  border-style: dashed;
  animation-delay: -0.7s;
}

.match-analysis-radar > span:nth-child(3) {
  inset: 34%;
  border-color: rgba(55, 226, 179, 0.18);
  animation-delay: -1.4s;
}

.match-analysis-score {
  position: relative;
  z-index: 2;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #1675e6, #08397f 68%);
  box-shadow: 0 0 60px rgba(26, 117, 238, 0.55);
}

.match-analysis-score b {
  font-size: 27px;
}

.match-analysis h2 {
  margin: 20px 0 0;
  font-size: clamp(37px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.052em;
}

.match-analysis p {
  max-width: 590px;
  margin: 15px auto 0;
  color: #a9bddb;
  font-size: 15px;
  line-height: 1.55;
}

.match-analysis-steps {
  width: min(620px, 100%);
  display: grid;
  gap: 8px;
  margin-top: 25px;
}

.match-analysis-steps span {
  position: relative;
  overflow: hidden;
  padding: 11px 14px;
  border: 1px solid rgba(132, 177, 242, 0.14);
  border-radius: 11px;
  color: #879fc2;
  font-size: 10px;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.match-analysis-steps span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(59, 141, 248, 0.14), transparent);
  animation: match-scan 1.2s ease forwards;
}

.match-analysis-steps span:nth-child(2)::after { animation-delay: 0.35s; }
.match-analysis-steps span:nth-child(3)::after { animation-delay: 0.7s; }

.match-result {
  align-content: start;
  padding-top: 34px;
}

.match-result-heading {
  text-align: center;
}

.match-result-heading h2 {
  font-size: clamp(38px, 4.3vw, 64px);
}

.match-result-heading > p:last-child {
  max-width: 720px;
  margin: 14px auto 0;
  color: #aebfda;
  font-size: 14px;
}

.match-result-main {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: 18px;
  margin-top: 30px;
}

.match-soulmate-card,
.match-result-explanation {
  border: 1px solid rgba(135, 180, 245, 0.19);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(24, 63, 121, 0.78), rgba(6, 28, 64, 0.84));
  box-shadow: 0 28px 65px rgba(0, 8, 27, 0.3);
  backdrop-filter: blur(17px);
}

.match-soulmate-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-rows: minmax(245px, 1fr) auto;
  overflow: hidden;
}

.match-soulmate-image {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 62%, rgba(48, 126, 236, 0.3), transparent 43%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(102, 153, 229, 0.04) 71px 72px);
}

.match-soulmate-image::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 12%;
  height: 16%;
  border-radius: 50%;
  background: rgba(0, 7, 24, 0.38);
  filter: blur(17px);
}

.match-soulmate-image img {
  position: absolute;
  z-index: 2;
  width: 92%;
  height: 92%;
  left: 4%;
  top: 2%;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 7, 24, 0.36));
  animation: match-car-reveal 760ms cubic-bezier(.2, .8, .2, 1) both;
}

.match-score-badge {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 18px;
  width: 76px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 187, 255, 0.4);
  border-radius: 50%;
  background: rgba(6, 37, 81, 0.88);
  box-shadow: 0 0 0 8px rgba(20, 105, 220, 0.12);
}

.match-score-badge b {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.match-score-badge small {
  position: absolute;
  bottom: 12px;
  color: #80a2d2;
  font-size: 6px;
  font-weight: 900;
}

.match-soulmate-copy {
  position: relative;
  z-index: 3;
  padding: 22px 25px 25px;
  background: linear-gradient(180deg, rgba(5, 27, 63, 0.04), rgba(5, 26, 59, 0.95) 20%);
}

.match-soulmate-copy small,
.match-soulmate-copy strong,
.match-soulmate-copy span {
  display: block;
}

.match-soulmate-copy > small {
  color: #7fa4d6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.match-soulmate-copy > strong {
  margin-top: 5px;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.match-soulmate-copy > span {
  margin-top: 8px;
  color: #9fb4d3;
  font-size: 12px;
}

.match-result-explanation {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.match-result-explanation > small {
  color: #81a3d1;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.match-result-explanation h3 {
  margin: 8px 0 0;
  font-size: 25px;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.match-reasons {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.match-reason {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(132, 176, 241, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.match-reason > b {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #9dccff;
  font-size: 11px;
  background: rgba(23, 108, 219, 0.2);
}

.match-reason strong {
  display: block;
  font-size: 11px;
}

.match-reason span {
  display: block;
  margin-top: 3px;
  color: #8fa4c3;
  font-size: 9px;
  line-height: 1.4;
}

.match-profile-pill {
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(57, 225, 177, 0.18);
  border-radius: 13px;
  color: #bdeede;
  font-size: 10px;
  line-height: 1.45;
  background: rgba(57, 225, 177, 0.06);
}

.match-alternatives {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 13px;
}

.match-alternative {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(133, 177, 241, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.match-alternative img {
  width: 100px;
  height: 58px;
  object-fit: contain;
}

.match-alternative small,
.match-alternative strong,
.match-alternative span {
  display: block;
}

.match-alternative small {
  color: #7995bd;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-alternative strong {
  margin-top: 3px;
  font-size: 13px;
}

.match-alternative span {
  margin-top: 3px;
  color: #91a6c5;
  font-size: 9px;
}

.match-alternative > b {
  padding: 7px 9px;
  border-radius: 999px;
  color: #a9d2ff;
  font-size: 10px;
  background: rgba(22, 108, 220, 0.18);
}

.match-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 19px;
}

.match-account-cta {
  margin-top: 15px;
  padding: 15px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(92, 223, 184, 0.25);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% -40%, rgba(43, 161, 232, 0.25), transparent 42%),
    linear-gradient(110deg, rgba(7, 48, 85, 0.94), rgba(8, 70, 101, 0.78));
  box-shadow: 0 20px 46px rgba(0, 12, 35, 0.23);
}

.match-account-cta::after {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  right: 19%;
  bottom: -112px;
  border: 1px solid rgba(124, 213, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(66, 168, 224, 0.04);
  pointer-events: none;
}

.match-account-cta-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #1b82ee, #0757bd);
  box-shadow: 0 12px 24px rgba(0, 48, 113, 0.26);
}

.match-account-cta-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.match-account-cta-copy,
.match-account-cta-copy > small,
.match-account-cta-copy > strong,
.match-account-cta-copy > span {
  min-width: 0;
  display: block;
}

.match-account-cta-copy > small {
  color: #8fc9b9;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-account-cta-copy > small i {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #38d7a8;
  box-shadow: 0 0 0 5px rgba(56, 215, 168, 0.1);
}

.match-account-cta-copy > strong {
  margin-top: 4px;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
}

.match-account-cta-copy > span {
  max-width: 640px;
  margin-top: 4px;
  color: #a8bdd6;
  font-size: 10px;
  line-height: 1.4;
}

.match-account-cta-button {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(110deg, #e44f0f, #ff6a2b);
  box-shadow: 0 13px 27px rgba(133, 42, 2, 0.28);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 170ms ease, filter 170ms ease;
}

.match-account-cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.match-account-cta-button:focus-visible {
  outline: 3px solid rgba(139, 200, 255, 0.88);
  outline-offset: 3px;
}

.match-disclaimer {
  max-width: 900px;
  margin: 14px auto 0;
  color: #748eaf;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.match-share-toast {
  position: fixed;
  z-index: 10020;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  padding: 12px 18px;
  border: 1px solid rgba(88, 232, 188, 0.23);
  border-radius: 999px;
  color: #d8fff3;
  font-size: 11px;
  font-weight: 800;
  background: rgba(5, 39, 70, 0.95);
  box-shadow: 0 15px 45px rgba(0, 8, 25, 0.35);
}

.match-app-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes life-float {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-16px); opacity: 1; }
}

@keyframes life-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes match-breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes match-app-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes match-app-out {
  to { opacity: 0; transform: scale(1.02); }
}

@keyframes match-screen-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes match-analysis-ring {
  0%, 100% { transform: scale(0.94); opacity: 0.35; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes match-scan {
  to { transform: translateX(100%); }
}

@keyframes match-car-reveal {
  from { opacity: 0; transform: translateX(60px) scale(0.92); filter: blur(8px) drop-shadow(0 24px 20px rgba(0, 7, 24, 0.36)); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0) drop-shadow(0 24px 20px rgba(0, 7, 24, 0.36)); }
}

@media (max-width: 1080px) {
  .life-hero-grid,
  .life-match-grid,
  .life-concierge-grid {
    grid-template-columns: 1fr;
  }

  .life-hero {
    min-height: 0;
  }

  .life-hero-copy {
    max-width: 860px;
  }

  .life-orbit {
    width: min(100%, 720px);
    justify-self: center;
  }

  .life-match-copy {
    max-width: 780px;
  }

  .life-match-demo {
    width: min(100%, 760px);
    justify-self: center;
  }

  .life-concierge-grid {
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
    gap: 55px;
  }

  .life-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .match-intro,
  .match-question {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 35px;
  }

  .match-intro {
    padding-top: 55px;
  }

  .match-intro-visual {
    min-height: 360px;
  }

  .match-intro-radar {
    width: 340px;
  }
}

@media (max-width: 820px) {
  .life-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .life-manifesto-heading,
  .life-service-pair,
  .life-faq-grid,
  .life-concierge-grid {
    grid-template-columns: 1fr;
  }

  .life-service-card {
    min-height: 0;
  }

  .life-journey-track {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 10px;
  }

  .life-journey-track::before {
    left: 27px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 1px;
    height: auto;
  }

  .life-journey-track li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 17px;
    padding: 0 0 23px;
    text-align: left;
  }

  .life-journey-track li > span {
    grid-row: 1 / 5;
    margin: 0;
  }

  .life-concierge-grid {
    gap: 75px;
  }

  .life-final-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-app-header {
    grid-template-columns: 120px 1fr 44px;
    height: 68px;
    padding-inline: 14px;
  }

  .match-app-brand img {
    width: 110px;
  }

  .match-screen {
    min-height: calc(100vh - 68px);
    width: min(100% - 28px, 760px);
    padding: 28px 0 45px;
  }

  .match-choice-grid,
  .match-result-main {
    grid-template-columns: 1fr;
  }

  .match-choice {
    min-height: 116px;
  }

  .match-alternatives {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .life-hero h1 {
    font-size: clamp(45px, 14vw, 65px);
  }

  .life-hero-actions,
  .life-button {
    width: 100%;
  }

  .life-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .life-trust-row span {
    display: block;
    padding: 12px 8px;
    border: 1px solid rgba(138, 181, 244, 0.16);
    border-radius: 13px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
  }

  .life-trust-row b,
  .life-trust-row small {
    display: block;
    max-width: none;
  }

  .life-trust-row b { font-size: 18px; }
  .life-trust-row small { margin-top: 3px; font-size: 8px; }

  .life-orbit {
    min-height: 530px;
  }

  .life-orbit-rings i { width: 420px; }
  .life-orbit-rings i:nth-child(2) { width: 320px; }
  .life-orbit-rings i:nth-child(3) { width: 220px; }

  .life-orbit-card {
    width: 94%;
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .life-orbit-card.is-match,
  .life-orbit-card.is-concierge {
    transform: none;
  }

  .life-orbit-card > b {
    position: absolute;
    right: 13px;
    top: 12px;
  }

  .life-orbit-number {
    width: 42px;
    height: 42px;
  }

  .life-orbit-card strong { font-size: 18px; }
  .life-orbit-card p { padding-right: 0; }
  .life-orbit-core { width: 70px; }

  .life-manifesto h2,
  .life-centered-heading h2,
  .life-concierge-copy h2,
  .life-faq h2 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .life-service-card {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .life-service-icon {
    width: 145px;
    height: 145px;
  }

  .life-service-card h3 {
    font-size: 34px;
  }

  .life-match-grid {
    grid-template-columns: 1fr;
  }

  .life-match-copy h2 {
    font-size: 42px;
  }

  .life-match-demo {
    min-height: 535px;
    padding: 15px;
    border-radius: 25px;
  }

  .life-demo-scene {
    height: 280px;
  }

  .life-demo-car {
    width: 92%;
  }

  .life-demo-signals {
    grid-template-columns: 1fr;
  }

  .life-demo-signals > span {
    grid-template-columns: 1fr auto;
  }

  .life-concierge-features,
  .life-principles-grid {
    grid-template-columns: 1fr;
  }

  .life-phone {
    padding: 15px;
    border-radius: 33px;
  }

  .life-phone::before {
    inset: -13px;
    border-radius: 42px;
  }

  .life-principles-grid article {
    min-height: 190px;
  }

  .life-final-cta .life-button {
    width: 100%;
  }

  .match-app-header {
    grid-template-columns: 91px 1fr 40px;
    gap: 10px;
  }

  .match-app-brand img {
    width: 86px;
  }

  .match-app-progress {
    gap: 7px;
  }

  .match-app-close {
    width: 38px;
  }

  .match-screen {
    width: calc(100% - 22px);
  }

  .match-intro h2,
  .match-question-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .match-intro-copy > p:not(:first-child) {
    font-size: 15px;
  }

  .match-intro-visual {
    min-height: 310px;
  }

  .match-intro-radar {
    width: 270px;
  }

  .match-intro-core {
    width: 92px;
  }

  .match-intro-tag {
    padding: 9px 10px;
  }

  .match-intro-tag.is-one { left: 0; }
  .match-intro-tag.is-two { right: 0; }
  .match-intro-tag.is-three { left: 2%; }

  .match-choice-grid {
    gap: 8px;
  }

  .match-choice {
    min-height: 99px;
    grid-template-columns: 44px 1fr auto;
    gap: 11px;
    padding: 14px;
    border-radius: 16px;
  }

  .match-choice-icon {
    width: 44px;
    border-radius: 13px;
  }

  .match-choice-copy strong {
    font-size: 15px;
  }

  .match-choice-copy span {
    font-size: 9px;
  }

  .match-priority-board {
    padding: 15px;
  }

  .match-priority {
    grid-template-columns: 1fr;
  }

  .match-priority-dots {
    justify-content: space-between;
  }

  .match-priority-dots button {
    width: 27px;
  }

  .match-result {
    padding-top: 22px;
  }

  .match-soulmate-card {
    min-height: 410px;
  }

  .match-soulmate-image {
    min-height: 230px;
  }

  .match-result-explanation {
    padding: 20px;
  }

  .match-alternative {
    grid-template-columns: 82px 1fr auto;
  }

  .match-alternative img {
    width: 82px;
  }

  .match-account-cta {
    padding: 14px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    border-radius: 16px;
  }

  .match-account-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .match-account-cta-copy > strong {
    font-size: 15px;
  }

  .match-account-cta-button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .match-result-actions .match-primary,
  .match-result-actions .match-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .life-ambient span,
  .life-orbit-rings i,
  .match-app-ambient span,
  .match-intro-radar,
  .match-analysis-radar > span,
  .match-analysis-steps span::after,
  .match-soulmate-image img {
    animation: none !important;
  }

  .life-button,
  .match-choice,
  .match-app-progress > span i,
  .match-account-cta-button {
    transition: none !important;
  }
}
