:root {
  --ink: #1b1116;
  --muted: #6d6266;
  --paper: #fbf4ec;
  --cream: #fff8f0;
  --accent: #ef0061;
  --line: rgba(27, 17, 22, .14);
  --shadow: 0 20px 58px rgba(24, 14, 18, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 4vw, 58px);
  background: rgba(5, 6, 9, .74);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff7ef;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(239, 0, 97, .3);
}

.header-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(239, 0, 97, .28);
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: #050609;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(58vw, 1080px);
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 6, 9, .98), rgba(16, 17, 21, .9) 62%, rgba(16, 17, 21, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, 58vw);
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(24px, 8vw, 128px) 92px;
}

.hero-copy {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.14;
  font-weight: 800;
}

.primary-btn {
  width: fit-content;
  min-width: 220px;
  min-height: 66px;
  margin-top: 54px;
  padding: 0 36px;
  font-size: 20px;
}

.app-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 248, 240, .34);
  border-radius: 8px;
  padding: 0 16px;
  color: #fff8f0;
  background: rgba(5, 6, 9, .72);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.store-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-link:hover {
  color: #fff;
  border-color: rgba(239, 0, 97, .75);
  background: rgba(239, 0, 97, .9);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  max-width: 1700px;
  margin: 0 auto;
  padding: 110px clamp(24px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #6b5e62;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.intro-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 3.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy p:not(.eyebrow),
.trust-section p,
.feature-card p {
  color: var(--muted);
  font-size: 21px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 760px;
}

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

.feature-card {
  min-height: 288px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 10px 30px rgba(74, 45, 34, .06);
}

.feature-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.feature-card h2 {
  margin: 28px 0 12px;
  font-size: 30px;
  line-height: 1.18;
}

.feature-card p { margin: 0; }

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .75fr);
  gap: 48px;
  align-items: center;
  padding: 88px clamp(24px, 6vw, 84px);
  background: #271b1e;
}

.trust-section h2,
.trust-section .eyebrow,
.trust-section p {
  color: #fff8f0;
}

.trust-section p {
  max-width: 720px;
  margin: 0;
  opacity: .82;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(24px, 6vw, 84px);
  color: #fff8f0;
  background: #050609;
}

.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer a:hover { color: var(--accent); }

.social-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.social-follow span {
  color: #fff8f0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-icon circle,
.social-icon path {
  transition: fill .2s ease, opacity .2s ease;
}

.facebook-link circle { fill: #1877f2; }
.facebook-link path { fill: #fff; }
.facebook-link:hover circle { fill: var(--accent); }
.facebook-link:hover path { fill: #fff; }

@media (max-width: 900px) {
  .site-header { padding: 12px 16px; }
  .brand span:last-child { font-size: 16px; }
  .header-cta { min-height: 42px; padding: 0 16px; }
  .hero,
  .hero-content { min-height: 680px; }
  .hero img { object-position: 68% center; }
  .hero::after { width: 100%; background: linear-gradient(90deg, rgba(5, 6, 9, .95), rgba(5, 6, 9, .6)); }
  .hero-content { width: 100%; padding: 110px 22px 70px; }
  .hero-copy { max-width: 560px; }
  .intro-section,
  .trust-section { grid-template-columns: 1fr; padding: 74px 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand-mark { width: 34px; height: 34px; }
  .brand span:last-child { max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-copy { font-size: 30px; }
  .primary-btn { width: 100%; min-width: 0; }
  .app-downloads { display: grid; grid-template-columns: 1fr; }
  .store-link { justify-content: center; }
  .intro-copy h1 { font-size: 36px; }
  .trust-section h2 { font-size: 32px; }
  .feature-card { padding: 26px; min-height: 0; }
}


