/* =========================================================
   DuoCouple — Landing Page
   Identidade baseada no app iOS (accent rosa #F5145A)
   ========================================================= */

:root {
  --pink: #f5145a;
  --pink-2: #ff3a72;
  --pink-deep: #d10e4c;
  --pink-tint: #ffe7ee;
  --pink-tint-2: #fff1f4;

  --ink: #17151c;
  --ink-soft: #3d3a44;
  --muted: #726b76;

  --bg: #ffffff;
  --bg-soft: #fdf4f6;
  --bg-soft-2: #fbeef1;
  --card: #ffffff;

  --border: rgba(23, 21, 28, 0.08);
  --border-pink: rgba(245, 20, 90, 0.14);

  --r-xs: 12px;
  --r-sm: 16px;
  --r: 22px;
  --r-lg: 30px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 10px rgba(23, 21, 28, 0.05);
  --shadow: 0 18px 40px -18px rgba(23, 21, 28, 0.18);
  --shadow-pink: 0 22px 50px -20px rgba(245, 20, 90, 0.45);

  --container: 1160px;
  --nav-h: 68px;

  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Nunito", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--pink-deep);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--pink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__head.is-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-tint);
  color: var(--pink-deep);
  border: 1px solid var(--border-pink);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  --btn-bg: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 55px -18px rgba(245, 20, 90, 0.55);
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--border-pink);
  color: var(--pink-deep);
}

.btn--light {
  background: #fff;
  color: var(--pink-deep);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.25);
}

.btn--lg {
  padding: 18px 32px;
  font-size: 1.06rem;
  border-radius: 18px;
}

.btn .appleicon {
  width: 17px;
  height: 20px;
  fill: currentColor;
  margin-top: -2px;
}

.store-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.store-note .appleicon {
  width: 13px;
  height: 16px;
  fill: currentColor;
  opacity: 0.75;
}

/* ---------- Navbar ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.brand b {
  color: var(--pink);
  font-weight: 900;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav__links a:hover {
  color: var(--pink-deep);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__cta {
  padding: 11px 20px;
  font-size: 0.94rem;
  border-radius: 13px;
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav__burger span::before {
  transform: translateY(-6px);
}
.nav__burger span::after {
  transform: translateY(4px);
}
body.menu-open .nav__burger span {
  background: transparent;
}
body.menu-open .nav__burger span::before {
  transform: rotate(45deg);
}
body.menu-open .nav__burger span::after {
  transform: rotate(-45deg) translateY(-2px);
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
  z-index: 99;
}
body.menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  padding: 14px 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 60px 0 90px;
  background: radial-gradient(
      1100px 620px at 78% -8%,
      var(--bg-soft-2),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, var(--bg-soft));
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__copy {
  max-width: 560px;
}
.hero h1 {
  margin-bottom: 22px;
}
.hero h1 .accent {
  color: var(--pink);
}
.hero__lead {
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

/* floating product chips */
.chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  z-index: 3;
  will-change: transform;
}
.chip small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0;
}
.chip .ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--pink-tint);
  font-size: 15px;
}
.chip--xp {
  top: 12%;
  left: -6%;
  color: var(--pink-deep);
}
.chip--challenge {
  bottom: 16%;
  left: -10%;
}
.chip--streak {
  top: 26%;
  right: -8%;
}
.chip--heart {
  bottom: 8%;
  right: 2%;
  padding: 12px;
  border-radius: 50%;
  font-size: 1.1rem;
}

.float {
  animation: float 6s ease-in-out infinite;
}
.float--slow {
  animation-duration: 8s;
}
.float--delay {
  animation-delay: -3s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Phone mockup ---------- */

.phone {
  --s: 0.72;
  width: calc(408px * var(--s));
  height: calc(858px * var(--s));
  position: relative;
  flex-shrink: 0;
}
.phone__frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #2a2a2e, #48484c);
  border-radius: calc(62px * var(--s));
  padding: calc(12px * var(--s));
  box-shadow: var(--shadow), inset 0 0 0 calc(2px * var(--s)) rgba(0, 0, 0, 0.5);
}
.phone__screen {
  position: absolute;
  top: calc(12px * var(--s));
  left: calc(12px * var(--s));
  width: 384px;
  height: 834px;
  transform: scale(var(--s));
  transform-origin: top left;
  border-radius: 52px;
  overflow: hidden;
  background: var(--sc-bg, #f2f2f7);
}
.phone--hero {
  --s: 0.84;
}
.phone--lg {
  --s: 0.9;
}

/* iOS status bar */
.ios-status {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.ios-status::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 34px;
  background: #000;
  border-radius: 19px;
}
.ios-status .sig {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ios-status .sig svg {
  height: 13px;
  width: auto;
  fill: var(--ink);
}
.ios-status .batt {
  width: 26px;
  height: 13px;
  border: 1.6px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  position: relative;
  padding: 1.6px;
}
.ios-status .batt::after {
  content: "";
  position: absolute;
  right: -3.4px;
  top: 3.5px;
  width: 2px;
  height: 5px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 1px 1px 0;
}
.ios-status .batt i {
  display: block;
  height: 100%;
  width: 80%;
  background: var(--ink);
  border-radius: 1.5px;
}

/* iOS tab bar */
.ios-tabs {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.ios-tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: #9a949f;
  font-family: var(--font-body);
}
.ios-tabs a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.ios-tabs a.is-active {
  color: var(--pink);
}
.ios-tabs a.is-active.pill {
  background: rgba(245, 20, 90, 0.1);
  padding: 7px 16px;
  border-radius: 16px;
}

/* Generic screen shell */
.screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
}
.screen__scroll {
  flex: 1;
  overflow: hidden;
  padding: 8px 20px 96px;
}
.sc-grouped {
  --sc-bg: #f2f2f7;
  background: #f2f2f7;
}
.sc-plain {
  --sc-bg: #fdf9f9;
  background: linear-gradient(180deg, #fffdfd, #fbf6f8);
}

.sc-h1 {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.sc-sub {
  font-size: 14px;
  color: #8a838f;
  margin-bottom: 20px;
}

/* Home: challenge card */
.dc-card {
  background: linear-gradient(135deg, #fff, #fff1f3);
  border: 1px solid var(--border-pink);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 18px;
}
.dc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dc-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: var(--pink);
}
.dc-xp {
  font-size: 12px;
  font-weight: 800;
  color: var(--pink);
  background: rgba(245, 20, 90, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
}
.dc-challenge {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.dc-challenge .bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 20, 90, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 21px;
}
.dc-challenge h4 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-body);
}
.dc-challenge p {
  font-size: 13.5px;
  color: #8a838f;
}
.dc-btn {
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}

.dc-white {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}
.dc-white h4 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font-body);
}
.dc-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.dc-day {
  aspect-ratio: 1;
  border-radius: 12px;
  background: #f0f0f4;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #b7b2bb;
}
.dc-day.done {
  background: var(--pink);
  color: #fff;
}
.dc-day.today {
  box-shadow: inset 0 0 0 2px var(--pink);
  color: var(--pink);
}
.dc-day.miss {
  color: #d8b4bd;
  box-shadow: inset 0 0 0 2px rgba(245, 20, 90, 0.25);
}
.dc-note {
  font-size: 12px;
  color: #8a838f;
  margin-bottom: 12px;
}
.dc-week-hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 12px 0;
}
.dc-bonus {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
}
.dc-bar {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
}
.dc-bar i {
  display: block;
  height: 100%;
  width: 30%;
  background: #ffab00;
  border-radius: 999px;
}

/* RoleDate wheel */
.sc-roledate {
  align-items: center;
  text-align: center;
  padding-top: 6px;
}
.sc-roledate .sc-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 27px;
}
.wheel-wrap {
  position: relative;
  width: 320px;
  height: 340px;
  margin: 14px auto 24px;
}
.wheel-pointer {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid var(--pink);
  z-index: 5;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.15));
}
.wheel {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 20px 45px -18px rgba(245, 20, 90, 0.4),
    inset 0 0 0 2px rgba(245, 20, 90, 0.12);
  overflow: hidden;
  background: conic-gradient(
    from -30deg,
    #ffe4ec 0 60deg,
    #fff5f8 60deg 120deg,
    #ffe4ec 120deg 180deg,
    #fff5f8 180deg 240deg,
    #ffe4ec 240deg 300deg,
    #fff5f8 300deg 360deg
  );
  transition: transform 3s cubic-bezier(0.12, 0.82, 0.2, 1);
}
.wheel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -30deg,
    rgba(255, 255, 255, 0.9) 0 2deg,
    transparent 2deg 60deg
  );
}
.wheel__label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--a));
}
.wheel__label > span {
  position: absolute;
  left: -43px;
  bottom: 60px;
  width: 86px;
  text-align: center;
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  line-height: 1.15;
  color: var(--ink);
  transform: rotate(calc(-1 * var(--a) - var(--spin, 0deg)));
  transition: transform 3s cubic-bezier(0.12, 0.82, 0.2, 1);
}
.wheel__label .em {
  display: block;
  font-size: 22px;
  margin-bottom: 3px;
}
.wheel-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(245, 20, 90, 0.5);
  z-index: 4;
}
.wheel-hub img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
}
.sc-spin {
  height: 56px;
  width: 100%;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px -12px rgba(245, 20, 90, 0.5);
}

/* Diary screen */
.di-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.di-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -6px rgba(245, 20, 90, 0.4);
}
.di-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.di-chip {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 999px;
  background: #eceaef;
  color: #8a838f;
  white-space: nowrap;
}
.di-chip.on {
  background: var(--pink);
  color: #fff;
}
.di-intro {
  background: rgba(245, 20, 90, 0.06);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.di-intro h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 800;
  font-family: var(--font-body);
}
.di-intro p {
  font-size: 12.5px;
  color: #8a838f;
}
.di-intro .bk {
  font-size: 26px;
  opacity: 0.5;
}
.di-group-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.di-group-h b {
  font-size: 17px;
  font-family: var(--font-body);
}
.di-group-h span {
  font-size: 12.5px;
  font-weight: 700;
  color: #8a838f;
}
.di-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 13px;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.di-date {
  width: 46px;
  text-align: center;
  flex-shrink: 0;
}
.di-date b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.di-date span {
  font-size: 10px;
  font-weight: 700;
  color: var(--pink);
}
.di-thumb {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 20, 90, 0.1);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.di-body .cat {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pink);
}
.di-body h5 {
  margin: 2px 0 3px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-body);
}
.di-body p {
  font-size: 12px;
  color: #8a838f;
  line-height: 1.4;
}

/* Profile screen */
.pf-head {
  text-align: center;
  padding-top: 6px;
  margin-bottom: 20px;
}
.pf-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: rgba(245, 20, 90, 0.1);
  display: grid;
  place-items: center;
  font-size: 40px;
  box-shadow: inset 0 0 0 1px var(--pink);
  position: relative;
}
.pf-avatar::after {
  content: "✎";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  display: grid;
  place-items: center;
  border: 2px solid #f2f2f7;
}
.pf-head h4 {
  font-size: 21px;
  font-weight: 800;
  font-family: var(--font-body);
  margin: 0 0 3px;
}
.pf-head p {
  font-size: 13px;
  color: #8a838f;
}
.pf-progress {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 22px;
}
.pf-progress .r1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.pf-progress .r1 b {
  font-size: 17px;
  font-family: var(--font-body);
}
.pf-progress .r1 small {
  display: block;
  font-size: 12px;
  color: #8a838f;
  font-weight: 600;
}
.pf-progress .r1 span {
  font-size: 13px;
  font-weight: 700;
  color: #8a838f;
}
.pf-bar {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #eee;
  overflow: hidden;
  margin-bottom: 16px;
}
.pf-bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--pink);
}
.pf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.pf-stats div {
  padding: 0 4px;
}
.pf-stats .em {
  font-size: 15px;
}
.pf-stats b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-body);
}
.pf-stats span {
  font-size: 10px;
  color: #8a838f;
}
.pf-sec {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #8a838f;
  margin: 0 0 10px 4px;
}
.pf-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.pf-list .it {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
}
.pf-list .it + .it {
  border-top: 1px solid var(--border);
}
.pf-list .it .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(245, 20, 90, 0.1);
  display: grid;
  place-items: center;
  font-size: 15px;
}
.pf-list .it .ar {
  margin-left: auto;
  color: #b7b2bb;
  font-size: 13px;
}

/* ---------- Concept ---------- */

.concept {
  text-align: center;
}
.concept h2 {
  max-width: 720px;
  margin: 0 auto 24px;
}
.concept .lead {
  max-width: 640px;
  margin: 0 auto;
}
.concept__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.concept__points .pt {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.concept__points .pt .em {
  font-size: 1.6rem;
}
.concept__points .pt h3 {
  margin: 12px 0 6px;
  font-size: 1.05rem;
}
.concept__points .pt p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--pink);
  letter-spacing: 0.08em;
}
.step h3 {
  margin: 10px 0 8px;
  font-size: 1.22rem;
}
.step p {
  color: var(--muted);
  font-size: 0.98rem;
}
.step__bar {
  display: block;
  margin-top: 20px;
  height: 5px;
  border-radius: 999px;
  background: var(--pink-tint);
  overflow: hidden;
}
.step__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--pink-2));
}
.step:nth-child(1) .step__bar i {
  width: 33%;
}
.step:nth-child(2) .step__bar i {
  width: 66%;
}
.step:nth-child(3) .step__bar i {
  width: 100%;
}

/* ---------- Split feature layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.is-reverse .split__media {
  order: -1;
}
.split__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.split__copy h2 {
  margin-bottom: 8px;
}
.split__copy .sub {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--pink);
  margin-bottom: 18px;
}
.split__copy > p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 480px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.feature-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--pink-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d10e4c' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* RoleDate orbiting options */
.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit .opt {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 9px 15px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
}
.orbit .opt:nth-child(1) {
  top: 4%;
  left: 4%;
}
.orbit .opt:nth-child(2) {
  top: 20%;
  right: -4%;
}
.orbit .opt:nth-child(3) {
  bottom: 24%;
  left: -6%;
}
.orbit .opt:nth-child(4) {
  bottom: 4%;
  right: 2%;
}

/* ---------- Grid of 4 areas ---------- */

.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.area {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.area__ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--pink-tint);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.area h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.area p {
  font-size: 0.94rem;
  color: var(--muted);
}

/* ---------- Branding strip ---------- */

.branding {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}
.branding img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}
.branding h2 {
  max-width: 760px;
  margin: 0 auto 16px;
}
.branding p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Final CTA ---------- */

.final {
  padding: 30px 0 100px;
}
.final__box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--pink), var(--pink-2) 60%, #ff6a94);
  border-radius: var(--r-xl);
  padding: 72px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.final__box::before,
.final__box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.final__box::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -80px;
}
.final__box::after {
  width: 240px;
  height: 240px;
  bottom: -130px;
  left: -60px;
}
.final__box > * {
  position: relative;
  z-index: 1;
}
.final__box img {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  margin: 0 auto 22px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.3);
}
.final__box h2 {
  color: #fff;
  max-width: 620px;
  margin: 0 auto 14px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}
.final__box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 4px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 27px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23f5145a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  transform: rotate(180deg);
}
.faq__item .faq__a {
  padding: 0 44px 24px 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Footer ---------- */

.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand .brand {
  margin-bottom: 14px;
}
.footer__brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 300px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.footer__col a:hover {
  color: var(--pink-deep);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

/* ---------- Legal / content pages ---------- */

.doc {
  padding: 56px 0 90px;
}
.doc__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.doc h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
}
.doc .updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 40px;
}
.doc h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
}
.doc h3 {
  font-size: 1.08rem;
  margin: 24px 0 8px;
}
.doc p,
.doc li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.doc p {
  margin-bottom: 14px;
}
.doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.doc li {
  margin-bottom: 8px;
}
.doc li::marker {
  color: var(--pink);
}
.doc .card {
  background: var(--bg-soft);
  border: 1px solid var(--border-pink);
  border-radius: var(--r);
  padding: 20px 22px;
  margin: 20px 0;
}
.doc .card :last-child {
  margin-bottom: 0;
}
.doc__contact {
  margin-top: 44px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
}
.doc__contact h2 {
  margin-top: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    justify-content: center;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split__copy {
    text-align: center;
  }
  .split.is-reverse .split__media {
    order: 0;
  }
  .split__copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .areas {
    grid-template-columns: repeat(2, 1fr);
  }
  .concept__points {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .steps {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__right .btn {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.05rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  .section {
    padding: 68px 0;
  }
  .container {
    padding: 0 18px;
  }
  body {
    font-size: 16px;
  }
  .hero {
    padding: 40px 0 70px;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero__phone-wrap {
    padding: 0 8px;
  }
  .phone--hero {
    --s: 0.66;
  }
  .chip {
    font-size: 0.82rem;
    padding: 8px 11px;
  }
  .chip--xp {
    left: -6px;
    top: -14px;
  }
  .chip--streak {
    right: -6px;
    top: auto;
    bottom: -14px;
  }
  .chip--challenge,
  .chip--heart {
    display: none;
  }
  .final__box {
    padding: 52px 22px;
  }
  .areas {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .orbit {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
