/* DM10Fit LP — reels, features, decada, white-label, FAQ, CTA, footer */

/* ─── Reels ────────────────────────────────────────────────────────────── */
.reels { background: var(--dm-paper); }
.reels__head {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .reels__head { grid-template-columns: 1fr; } }
.reels__title { font-size: clamp(36px, 4.4vw, 64px); color: var(--dm-ink); margin: 12px 0 0; }
.reels__title em { font-style: italic; color: var(--dm-graphite); font-weight: 600; }
.reels__highlight {
  display: inline-block;
  background: var(--dm-yellow);
  padding: 0 12px;
  margin-left: -4px;
}
.reels__head-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.reels__big { font-size: clamp(60px, 7vw, 110px); color: var(--dm-ink); line-height: 1; }
.reels__small { font-size: 14px; color: var(--dm-graphite); text-align: right; }

.reels__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .reels__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.reel { display: flex; flex-direction: column; gap: 16px; }
.reel__cover {
  position: relative;
  aspect-ratio: 9 / 14;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  color: #FFF;
  isolation: isolate;
}
.reel__cover::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
}
.reel__cover--1::before { background: linear-gradient(160deg, #1a1a1a 0%, #3a3a3a 40%, #F0CB1F 130%); }
.reel__cover--2::before { background: linear-gradient(160deg, #0E1117 0%, #1F2937 50%, #FF6B3D 130%); }
.reel__cover--3::before { background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 50%, #0EAE7B 130%); }
.reel__cover::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.18), transparent 50%),
    repeating-linear-gradient(115deg, transparent 0 80px, rgba(255,255,255,.04) 80px 81px);
  z-index: -1;
}
.reel__top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; }
.reel__user { background: rgba(0,0,0,.55); padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.reel__city { font-weight: 500; opacity: .85; }
.reel__play {
  align-self: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dm-yellow);
  border: 0;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.reel__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; }
.reel__views { background: rgba(0,0,0,.55); padding: 4px 10px; border-radius: 999px; }
.reel__ig { opacity: .85; }
.reel__quote {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  color: var(--dm-ink);
  letter-spacing: -0.01em;
}

/* ─── Features ─────────────────────────────────────────────────────────── */
.features { background: var(--bg); }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--surface);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s, transform .2s;
}
.feat:hover { background: var(--surface-2); }
.feat__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(240,203,31,.12);
  color: var(--dm-yellow);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.feat__t { font-size: 20px; }
.feat__d { font-size: 14px; color: var(--text-mute); line-height: 1.55; }

.feat__cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.feat__cta-t { font-size: 28px; }
.feat__cta-d { color: var(--text-mute); font-size: 15px; margin-top: 4px; }

/* ─── Decada ──────────────────────────────────────────────────────────── */
.decada {
  background: var(--dm-yellow);
  color: var(--dm-black);
  padding-block: clamp(72px, 9vw, 140px);
  position: relative; overflow: hidden;
}
.decada::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 60px, rgba(0,0,0,.025) 60px 61px),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.5) 0, transparent 30%);
  pointer-events: none;
}
.decada__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; position: relative; }
@media (max-width: 980px) { .decada__inner { grid-template-columns: 1fr; } }
.decada__left { display: flex; flex-direction: column; gap: 20px; }
.decada .eyebrow { color: var(--dm-black); opacity: .65; }
.decada__num {
  font-size: clamp(120px, 18vw, 240px);
  line-height: .85;
  color: var(--dm-black);
  display: flex; align-items: flex-end; gap: 12px;
}
.decada__num span { font-size: clamp(20px, 1.6vw, 26px); padding-bottom: 24px; opacity: .65; }
.decada__line { height: 2px; background: var(--dm-black); width: 80px; opacity: .3; }
.decada__title { font-size: clamp(28px, 3vw, 40px); max-width: 28ch; color: var(--dm-black); margin: 4px 0; }
.decada__title em { font-style: italic; font-weight: 700; }
.decada__sub { font-size: 16px; line-height: 1.55; max-width: 50ch; color: var(--dm-ink); opacity: .8; margin: 0; }
.decada__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-block: 16px; }
.decada__stats > div { display: flex; flex-direction: column; gap: 4px; }
.decada__stats strong { font-size: clamp(28px, 3.4vw, 44px); line-height: 1; color: var(--dm-black); }
.decada__stats span { font-size: 13px; color: var(--dm-ink); opacity: .7; }
.decada .btn--primary { background: var(--dm-black); color: var(--dm-yellow); align-self: flex-start; }
.decada .btn--primary:hover { background: var(--dm-ink); }

.tl {
  background: var(--dm-black); color: #FFF;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.tl__item {
  display: grid;
  grid-template-columns: 18px 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.tl__item:last-child { border-bottom: 0; }
.tl__dot {
  grid-row: 1 / 3;
  width: 12px; height: 12px; background: var(--dm-yellow); border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(240,203,31,.15);
}
.tl__y { grid-row: 1; grid-column: 2; font-size: 16px; color: var(--dm-yellow); letter-spacing: -.02em; }
.tl__t { grid-row: 1; grid-column: 3; font-weight: 700; font-size: 15px; }
.tl__d { grid-row: 2; grid-column: 3; font-size: 13px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* ─── White Label ─────────────────────────────────────────────────────── */
.whitelabel { background: var(--bg); }
.wl__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .wl__grid { grid-template-columns: 1fr; gap: 40px; } }
.wl__copy { display: flex; flex-direction: column; gap: 18px; }
.wl__title { font-size: clamp(36px, 4.4vw, 60px); margin: 0; }
.wl__sub { color: var(--text-mute); font-size: 17px; max-width: 50ch; margin: 0; }
.wl__list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 12px; }
.wl__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }

.wl__brandpick { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.wl__brandpick-l { font-size: 13px; color: var(--text-mute); margin-right: 4px; }
.wl__brandchip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--line-2);
  padding: 7px 14px 7px 8px;
  border-radius: var(--r-pill);
  color: var(--text); font-size: 13px; font-weight: 600;
  transition: border-color .15s, background .15s;
}
.wl__brandchip:hover { border-color: rgba(255,255,255,.3); }
.wl__brandchip.is-active { border-color: var(--c); background: rgba(255,255,255,.08); }
.wl__brandchip-sw { width: 14px; height: 14px; border-radius: 50%; flex: none; }

.wl__phones {
  position: relative;
  height: 600px;
  display: flex; justify-content: center; align-items: center;
}
.wl__frame {
  position: absolute;
  width: 414px; height: 868px;
  overflow: hidden;
  border-radius: 56px;
  box-shadow: 0 0 0 3px var(--dm-yellow), 0 30px 70px -20px rgba(0,0,0,.7);
}
.wl__frame iframe {
  width: 462px; height: 916px;
  border: 0;
  display: block;
  pointer-events: none;
  position: absolute;
  left: -24px; top: -24px;
}
/* scale the whole frame down to fit the column */
.wl__frame--a {
  transform: scale(.74) translateX(-52%) rotate(-5deg);
  transform-origin: center center;
  z-index: 2;
}
.wl__frame--b {
  transform: scale(.74) translateX(52%) rotate(5deg);
  transform-origin: center center;
  z-index: 1;
}
@media (max-width: 540px) {
  .wl__phones { height: 480px; }
  .wl__frame--a { transform: scale(.5) translateX(-48%) rotate(-4deg); }
  .wl__frame--b { transform: scale(.5) translateX(48%) rotate(4deg); }
}
@media (max-width: 400px) {
  .wl__phones { height: 420px; }
  .wl__frame--a { transform: scale(.42) translateX(-46%) rotate(-4deg); }
  .wl__frame--b { transform: scale(.42) translateX(46%) rotate(4deg); }
}

.phone-legacy {
  width: 260px;
  background: #0A0A0A;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.06);
  position: absolute;
  transition: transform .4s ease;
}
.phone:nth-child(1) { top: 0; left: 50%; transform: translateX(-90%) rotate(-4deg); z-index: 2; }
.phone:nth-child(2) { top: 30px; left: 50%; transform: translateX(-10%) rotate(4deg); z-index: 1; }
@media (max-width: 540px) {
  .phone { width: 220px; }
  .phone:nth-child(1) { transform: translateX(-95%) rotate(-3deg); }
  .phone:nth-child(2) { transform: translateX(-5%) rotate(3deg); }
}
.phone__notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #0A0A0A; border-radius: 999px; z-index: 4; }
.phone__screen {
  background: #FAFAFA; color: #0A0A0A;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  display: flex; flex-direction: column;
}
.phone__statusbar { display: flex; justify-content: space-between; padding: 14px 22px 4px; font-size: 11px; font-weight: 700; }
.phone__appbar { color: #0A0A0A; padding: 16px 16px 14px; display: flex; align-items: center; gap: 10px; transition: background .3s; }
.phone__logo { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,0,0,.16); display: grid; place-items: center; font-family: var(--ff-display); font-size: 11px; font-weight: 800; color: rgba(0,0,0,.9); }
.phone__appname { flex: 1; font-weight: 800; font-size: 15px; letter-spacing: -.01em; color: rgba(0,0,0,.9); }
.phone__bell { font-size: 16px; opacity: .7; }
.phone__body { padding: 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; min-height: 0; overflow: hidden; }
.phone__hello { font-size: 15px; font-weight: 700; }
.phone__plan { padding: 14px; border-radius: 12px; color: #0A0A0A; transition: background .3s; }
.phone__plan-l { font-size: 11px; opacity: .7; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.phone__plan-v { font-family: var(--ff-display); font-weight: 800; font-size: 16px; margin: 2px 0 8px; letter-spacing: -.01em; }
.phone__plan-pill { display: inline-block; background: rgba(0,0,0,.16); padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.phone__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone__tile { background: #FFF; border: 1px solid #EEE; padding: 10px; border-radius: 10px; }
.phone__tile-t { font-size: 10px; color: #707070; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.phone__tile-v { font-family: var(--ff-display); font-weight: 800; font-size: 16px; letter-spacing: -.01em; margin-top: 2px; }
.phone__news { background: #0A0A0A; color: #FFF; border-radius: 10px; padding: 10px 12px; }
.phone__news-t { font-size: 10px; color: var(--dm-yellow); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.phone__news-d { font-size: 12px; margin-top: 2px; }
.phone__back { font-size: 12px; font-weight: 600; color: #707070; }
.phone__exs { display: flex; flex-direction: column; gap: 4px; flex: 1; overflow: hidden; }
.phone__ex { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid #F0F0F0; }
.phone__ex-n { font-family: var(--ff-display); font-size: 10px; font-weight: 800; color: #707070; min-width: 18px; }
.phone__ex-t { font-size: 11px; font-weight: 600; }
.phone__ex-s { font-size: 10px; color: #707070; }
.phone__ex-check { margin-left: auto; width: 18px; height: 18px; border: 1.5px solid #DDD; border-radius: 50%; display: grid; place-items: center; }
.phone__ex-check span { width: 10px; height: 10px; border-radius: 50%; }
.phone__cta { border: 0; border-radius: 12px; padding: 12px; color: #0A0A0A; font-weight: 700; font-size: 13px; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
@media (max-width: 980px) { .faq__inner { grid-template-columns: 1fr; gap: 32px; } }
.faq__head h2 { font-size: clamp(36px, 4.4vw, 60px); margin: 12px 0 12px; }
.faq__list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq__list details {
  border-bottom: 1px solid var(--line);
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px;
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -.01em;
  transition: color .15s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--dm-yellow); }
.faq__chev { font-size: 22px; color: var(--text-mute); transition: transform .25s ease, color .15s; flex: none; }
.faq__list details[open] .faq__chev { transform: rotate(45deg); color: var(--dm-yellow); }
.faq__a { padding: 0 4px 24px; color: var(--text-mute); font-size: 15px; line-height: 1.6; }
.faq__a ul { margin: 0 0 12px; padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.faq__a p { margin: 0; }

/* ─── Final CTA ───────────────────────────────────────────────────────── */
.cta-final { padding-block: clamp(64px, 8vw, 120px); }
.cta-final__card {
  background: var(--dm-yellow);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.cta-final__pat {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(0,0,0,.15) 0, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(0,0,0,.08) 0, transparent 35%),
    repeating-linear-gradient(45deg, transparent 0 80px, rgba(0,0,0,.03) 80px 81px);
  z-index: -1;
}
.cta-final__inner {
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-final__t { font-size: clamp(36px, 5vw, 72px); color: var(--dm-black); margin: 8px 0; }
.cta-final__t em { font-style: italic; font-weight: 700; }
.cta-final__d { color: var(--dm-ink); opacity: .8; font-size: 17px; margin: 0; max-width: 50ch; }
.cta-final__actions { display: flex; gap: 16px; align-items: center; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.cta-final__link { color: var(--dm-black); font-weight: 600; font-size: 15px; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.cta-final__trust { margin-top: 24px; display: flex; gap: 24px; color: var(--dm-ink); opacity: .7; font-size: 14px; font-weight: 600; flex-wrap: wrap; justify-content: center; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
.ft { background: var(--dm-black); color: #FFF; padding-block: 64px 32px; border-top: 1px solid rgba(255,255,255,.06); }
.ft__inner { display: flex; flex-direction: column; gap: 48px; }
.ft__top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 64px; }
@media (max-width: 880px) { .ft__top { grid-template-columns: 1fr; } }
.ft__brand { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.ft__logo { height: 20px; width: auto; }
.ft__brand p { font-size: 14px; color: var(--text-mute); line-height: 1.55; margin: 0; }
.ft__social { display: flex; gap: 12px; margin-top: 8px; }
.ft__social-link { font-size: 12px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: var(--text); transition: border-color .15s, color .15s; }
.ft__social-link:hover { border-color: var(--dm-yellow); color: var(--dm-yellow); }
.ft__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 660px) { .ft__cols { grid-template-columns: repeat(2, 1fr); } }
.ft__cols h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--dm-yellow); margin: 0 0 14px; }
.ft__cols a { display: block; font-size: 14px; color: var(--text-mute); padding: 4px 0; transition: color .15s; }
.ft__cols a:hover { color: var(--text); }
.ft__bot { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); font-size: 12px; color: var(--text-mute); flex-wrap: wrap; }
.ft__bot strong { color: var(--dm-yellow); }
