:root {
  color-scheme: dark;
  --background: #070405;
  --surface: #11090b;
  --text: #fff8f8;
  --muted: #bda9ad;
  --red: #ff354f;
  --red-bright: #ff6173;
  --line: rgba(255, 101, 116, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(155, 16, 37, 0.18), transparent 42%),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.background,
.background span {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background {
  z-index: 0;
  overflow: hidden;
}

.background .grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 91, 108, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 91, 108, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.glow {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
}

.glow-left {
  top: 42%;
  left: -320px;
  background: #ff1839;
}

.glow-right {
  top: 30%;
  right: -360px;
  left: auto;
  background: #a80c28;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 30px;
}

.site-header,
.site-footer,
.card-topline,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 108, 122, 0.38);
  border-radius: 10px;
  background: linear-gradient(145deg, #ff4c62, #9e0924);
  box-shadow: 0 8px 26px rgba(211, 16, 48, 0.22);
  font-size: 14px;
}

.header-note {
  color: #927c81;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(68px, 10vw, 116px) 0 54px;
  text-align: center;
}

.eyebrow,
.card-kicker {
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 19px;
}

.hero h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-weight: 520;
  letter-spacing: -0.047em;
  line-height: 1.14;
  padding: 0.04em 0 0.1em;
  justify-items: center;
}

.hero-financial,
.hero-health {
  display: block;
}

.hero-financial {
  font-size: clamp(30px, 5.15vw, 76px);
  white-space: nowrap;
}

.hero-health {
  font-size: clamp(44px, 6.25vw, 88px);
  font-weight: 560;
  color: transparent;
  background: linear-gradient(100deg, #ff334e, #ff8794 68%, #a4152c);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-connector {
  display: flex;
  width: min(720px, 72%);
  align-items: center;
  gap: 14px;
  margin: 18px auto 20px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.connector-label {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255, 101, 116, 0.25);
  border-radius: 999px;
  background: rgba(255, 53, 79, 0.06);
  letter-spacing: 0.13em;
}

.connector-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 97, 115, 0.45));
}

.connector-line:last-child {
  background: linear-gradient(90deg, rgba(255, 97, 115, 0.45), transparent);
}

.intro {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 105, 121, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(91, 8, 22, 0.28), rgba(18, 8, 10, 0.9)),
    var(--surface);
}

.privacy-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.privacy-heading .eyebrow {
  margin-bottom: 10px;
}

.privacy-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.privacy-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 128, 141, 0.3);
  border-radius: 15px;
  background: rgba(255, 58, 82, 0.09);
}

.privacy-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #ff7e8d;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-copy {
  display: grid;
  gap: 14px;
}

.privacy-copy p {
  margin: 0;
  color: #baa6aa;
  font-size: 14px;
  line-height: 1.65;
}

.privacy-copy strong {
  color: #f9e8ea;
}

.privacy-copy .privacy-note {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 111, 126, 0.13);
  color: #917d82;
  font-size: 12px;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 440px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255, 105, 121, 0.22);
  border-radius: 32px;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card::before,
.product-card::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.product-card::before {
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 45%);
}

.product-card::after {
  right: -50%;
  bottom: -74%;
  width: 110%;
  height: 110%;
  border: 1px solid rgba(255, 131, 143, 0.14);
  border-radius: 50%;
}

.fire-card {
  background:
    linear-gradient(155deg, rgba(98, 7, 23, 0.94), rgba(28, 5, 10, 0.97) 68%),
    var(--surface);
}

.health-card {
  background:
    linear-gradient(155deg, rgba(130, 15, 31, 0.9), rgba(31, 5, 9, 0.98) 68%),
    var(--surface);
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(255, 105, 121, 0.56);
  box-shadow: 0 28px 70px rgba(111, 0, 20, 0.34);
  outline: none;
  transform: translateY(-6px);
}

.card-orb {
  position: absolute;
  z-index: -1;
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 61, 84, 0.18);
  filter: blur(12px);
  transition: transform 280ms ease;
}

.health-card .card-orb {
  background: rgba(255, 91, 105, 0.24);
}

.product-card:hover .card-orb,
.product-card:focus-visible .card-orb {
  transform: scale(1.14);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 188, 195, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: #ff7e8d;
  stroke: #ff7e8d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.health-card .card-icon svg {
  fill: none;
}

.card-domain {
  color: rgba(255, 232, 234, 0.62);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.08em;
}

.card-content {
  display: block;
  margin-top: auto;
  padding: 72px 0 48px;
}

.card-kicker,
.card-title,
.card-description,
.card-link {
  display: block;
}

.card-title {
  max-width: 460px;
  margin-top: 12px;
  color: #fffafb;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.card-description {
  max-width: 470px;
  margin-top: 20px;
  color: rgba(255, 232, 235, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.card-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 164, 173, 0.14);
}

.card-link {
  font-size: 14px;
  font-weight: 650;
}

.arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #ffbdc5;
  font-size: 19px;
  transition: transform 180ms ease;
}

.product-card:hover .arrow,
.product-card:focus-visible .arrow {
  transform: translate(2px, -2px);
}

.site-footer {
  gap: 24px;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 101, 116, 0.12);
  color: #755f64;
  font-size: 12px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 620px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 390px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-note {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    letter-spacing: -0.035em;
  }

  .hero-financial {
    font-size: clamp(19px, 6.2vw, 30px);
  }

  .hero-connector {
    width: 100%;
    gap: 9px;
    margin: 17px 0 19px;
  }

  .connector-label {
    padding: 7px 9px;
    font-size: 8px;
  }

  .product-card {
    min-height: 420px;
    padding: 23px;
    border-radius: 25px;
  }

  .privacy-panel {
    padding: 23px;
    border-radius: 25px;
  }

  .privacy-heading {
    flex-direction: column;
  }

  .card-domain {
    max-width: 160px;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
