:root {
  color-scheme: light;
  --ink: #151820;
  --muted: #687083;
  --line: #e8eaf0;
  --soft: #f7f8fb;
  --dark: #0d1017;
  --brand: #e60055;
  --brand-2: #ff2d72;
  --brand-dark: #8b002a;
  --orange: #ff7a00;
  --cyan: #00a8ff;
  --white: #ffffff;
  --shadow: 0 28px 90px rgb(15 19 30 / 14%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  right: clamp(14px, 4vw, 58px);
  left: clamp(14px, 4vw, 58px);
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(10 13 20 / 74%);
  color: #fff;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
}

.brand {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgb(0 0 0 / 26%);
}

.brand img,
.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 850;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta,
.primary-button,
.secondary-button,
.partner-button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  white-space: nowrap;
}

.header-cta,
.primary-button,
.partner-button {
  background: linear-gradient(135deg, var(--orange), var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgb(230 0 85 / 28%);
}

.secondary-button {
  border: 1px solid rgb(255 255 255 / 32%);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  min-height: 100vh;
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 90px) 88px;
  background:
    linear-gradient(110deg, rgb(10 12 18 / 92%) 0%, rgb(82 0 31 / 82%) 48%, rgb(230 0 85 / 72%) 100%),
    url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1900&q=84")
      center / cover;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, #fff, transparent);
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 13px;
  color: #ffb4cc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  font-size: clamp(44px, 7.4vw, 100px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 23px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.44;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: 28px;
}

.hero-metrics div {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 18px;
  padding: 16px;
  background: rgb(255 255 255 / 9%);
  backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 22px;
}

.hero-metrics span {
  margin-top: 4px;
  color: rgb(255 255 255 / 68%);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  min-height: 680px;
}

.phone {
  border: 10px solid #080b10;
  border-radius: 42px;
  background: #0c1018;
  box-shadow: 0 34px 110px rgb(0 0 0 / 46%);
}

.phone-main {
  width: min(392px, 100%);
  margin-left: auto;
}

.phone-chat {
  position: absolute;
  left: 0;
  bottom: 46px;
  width: 255px;
  padding: 16px;
  transform: rotate(-5deg);
}

.phone-top,
.swipe-actions,
.mini-header {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  padding: 14px 18px;
  color: rgb(255 255 255 / 80%);
  font-size: 12px;
  font-weight: 900;
}

.profile-photo {
  position: relative;
  height: 548px;
  overflow: hidden;
  border-radius: 30px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-shade {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 92%), transparent);
}

.online-pill {
  position: absolute;
  bottom: 128px;
  left: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #11151d;
  font-size: 13px;
  font-weight: 950;
}

.online-pill::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #22c55e;
}

.profile-info {
  position: absolute;
  right: 18px;
  bottom: 28px;
  left: 18px;
}

.profile-info strong {
  font-size: 38px;
}

.profile-info p {
  margin-top: 7px;
  color: rgb(255 255 255 / 82%);
  font-weight: 750;
}

.swipe-actions {
  justify-content: center;
  gap: 12px;
  padding: 16px 10px 10px;
}

.swipe-actions button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #242a35;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
}

.swipe-actions button:last-child {
  background: var(--brand);
}

.swipe-actions button:nth-child(3) {
  background: linear-gradient(135deg, var(--cyan), #006bff);
}

.mini-header {
  gap: 10px;
  margin-bottom: 16px;
}

.mini-header > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 25%), transparent),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=300&q=80")
      center / cover;
}

.mini-header strong,
.mini-header small {
  display: block;
}

.mini-header small {
  color: #22c55e;
  font-weight: 800;
}

.chat-bubble,
.voice-note {
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 18px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 750;
}

.chat-bubble.left {
  background: #222938;
  color: rgb(255 255 255 / 82%);
}

.chat-bubble.right {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
}

.voice-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  background: #fff;
  color: var(--ink);
}

.voice-note span {
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--brand) 0 3px, transparent 3px 8px);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 180px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 20px;
  padding: 16px 18px;
  background: rgb(12 16 24 / 76%);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgb(0 0 0 / 28%);
}

.floating-card span {
  color: #ffb4cc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.match-card {
  top: 96px;
  right: 22px;
}

.coin-card {
  right: 0;
  bottom: 180px;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
}

.brand-strip span {
  flex: 1 1 150px;
  padding: 21px clamp(18px, 3vw, 38px);
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  text-align: center;
}

.section,
.story-section,
.coin-section,
.partner-section,
.video-section,
.download-section {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 6vw, 90px);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.section-heading p,
.story-copy p,
.coin-panel p,
.partner-section p,
.download-section p,
.video-section .section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.centered {
  justify-items: center;
  text-align: center;
}

.app-section {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.feature-card {
  display: grid;
  min-height: 245px;
  gap: 13px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgb(16 20 30 / 6%);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 506px;
  background:
    linear-gradient(180deg, transparent, rgb(12 16 24 / 88%)),
    url("https://images.unsplash.com/photo-1524503033411-c9566986fc8f?auto=format&fit=crop&w=900&q=82")
      center / cover;
  color: #fff;
}

.feature-card.accent {
  background:
    linear-gradient(135deg, rgb(0 168 255 / 12%), rgb(230 0 85 / 10%)),
    #fff;
}

.feature-number {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff0f5;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
}

.feature-card.large .feature-number {
  background: rgb(255 255 255 / 16%);
  color: #fff;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-card.large p {
  color: rgb(255 255 255 / 78%);
}

.story-section,
.partner-section,
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.story-section {
  background: var(--soft);
}

.story-copy {
  display: grid;
  gap: 16px;
}

.story-cards {
  display: grid;
  gap: 14px;
}

.story-cards article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgb(16 20 30 / 6%);
}

.story-cards img {
  width: 170px;
  height: 126px;
  border-radius: 14px;
  object-fit: cover;
}

.story-cards strong,
.story-cards span {
  display: block;
}

.story-cards strong {
  font-size: 22px;
}

.story-cards span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 750;
}

.coin-section {
  background:
    linear-gradient(135deg, rgb(255 122 0 / 86%), rgb(230 0 85 / 94%), rgb(139 0 42 / 96%)),
    url("https://images.unsplash.com/photo-1511988617509-a57c8a288659?auto=format&fit=crop&w=1600&q=82")
      center / cover;
  color: #fff;
}

.coin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 30px;
  align-items: center;
}

.coin-panel .eyebrow,
.coin-panel p {
  color: rgb(255 255 255 / 82%);
}

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

.coin-grid article {
  min-height: 170px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 18px;
  padding: 22px;
  background: rgb(255 255 255 / 13%);
  backdrop-filter: blur(10px);
}

.coin-grid strong,
.coin-grid span {
  display: block;
}

.coin-grid strong {
  font-size: clamp(34px, 4vw, 56px);
}

.coin-grid span {
  margin-top: 8px;
  color: rgb(255 255 255 / 78%);
  font-weight: 850;
  line-height: 1.35;
}

.plans-section {
  background: var(--soft);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgb(16 20 30 / 6%);
}

.plan-card > span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff0f5;
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card.popular {
  border-color: transparent;
  background: linear-gradient(180deg, var(--brand-dark), var(--brand));
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 34px 80px rgb(230 0 85 / 24%);
}

.plan-card.vip {
  background:
    linear-gradient(180deg, rgb(255 122 0 / 10%), rgb(230 0 85 / 10%)),
    #fff;
}

.plan-card.popular > span {
  background: rgb(255 255 255 / 18%);
  color: #fff;
}

.plan-card strong {
  font-size: 26px;
}

.plan-card p {
  color: var(--muted);
  line-height: 1.5;
}

.plan-card.popular p,
.plan-card.popular ul {
  color: rgb(255 255 255 / 80%);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-weight: 780;
  list-style: none;
}

.plan-card li::before {
  content: "ok";
  margin-right: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card.popular li::before {
  color: #fff;
}

.partner-section {
  background:
    linear-gradient(135deg, rgb(8 12 20 / 92%), rgb(0 80 130 / 70%)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  color: #fff;
}

.partner-section p {
  color: rgb(255 255 255 / 76%);
}

.partner-button {
  justify-self: end;
  min-height: 58px;
  padding-inline: 28px;
}

.safety-section {
  background: #fff;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.safety-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, #fff, #fff8fb);
}

.safety-grid strong {
  font-size: 24px;
}

.safety-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.video-section {
  background:
    radial-gradient(circle at 50% 0%, rgb(230 0 85 / 12%), transparent 36%),
    var(--soft);
}

.video-section .section-heading p {
  max-width: 760px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0f131a;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell video,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgb(139 0 42 / 64%), rgb(17 21 29 / 76%)),
    url("https://images.unsplash.com/photo-1520975682031-a8a35d09dc80?auto=format&fit=crop&w=1400&q=82")
      center / cover;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.video-placeholder span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--brand));
  font-weight: 950;
  box-shadow: 0 20px 50px rgb(230 0 85 / 36%);
}

.video-placeholder strong {
  font-size: clamp(24px, 3vw, 38px);
}

.video-placeholder p {
  color: rgb(255 255 255 / 76%);
}

.download-section {
  background:
    linear-gradient(135deg, rgb(139 0 42 / 90%), rgb(17 21 29 / 94%)),
    url("https://images.unsplash.com/photo-1520975682031-a8a35d09dc80?auto=format&fit=crop&w=1800&q=82")
      center / cover;
  color: #fff;
}

.download-section .eyebrow,
.download-section p {
  color: rgb(255 255 255 / 78%);
}

.download-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 190px;
  min-height: 62px;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 14px;
  padding: 0 16px;
  background: rgb(255 255 255 / 96%);
  color: #11151d;
  box-shadow: 0 18px 42px rgb(0 0 0 / 18%);
}

.store-button.google {
  background: #11151d;
  color: #fff;
}

.store-button svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-button span {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-align: left;
}

.store-button small {
  color: #70798b;
  font-size: 11px;
  font-weight: 850;
}

.store-button.google small {
  color: rgb(255 255 255 / 66%);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 6vw, 90px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .hero,
  .story-section,
  .coin-panel,
  .partner-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 650px;
  }

  .phone-main {
    margin-left: 0;
  }

  .feature-grid,
  .plans-grid,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.large {
    grid-row: auto;
    min-height: 360px;
  }

  .partner-button,
  .download-actions {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-metrics,
  .feature-grid,
  .plans-grid,
  .safety-grid,
  .coin-grid,
  .story-cards article {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .phone-main {
    width: min(360px, 100%);
  }

  .phone-chat,
  .floating-card {
    display: none;
  }

  .profile-photo {
    height: 510px;
  }

  .story-cards img {
    width: 100%;
    height: 210px;
  }

  .plan-card.popular {
    transform: none;
  }

  .download-actions {
    display: grid;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
