@charset "UTF-8";
/* ============================================================
   Male Sexual Energy — landing
   Aesthetic: minimal × east. Aesop × MUJI × calligraphy.
   Dark warm charcoal, low contrast, one motif (thin circle),
   energy red→green only where energy is represented.
   ============================================================ */
:root {
  /* palette — warm charcoal, per landing.md §4.2 */
  --bg: #0E0E0C;
  --bg-2: #131210;
  --surface: #18171F;
  --surface-2: #1E1C24;
  --ink: #F5EFE2;
  --ink-dim: #B7B0A2;
  --ink-mute: #8B8579;
  --line: rgba(245, 239, 226, 0.10);
  --line-soft: rgba(245, 239, 226, 0.06);
  /* energy gradient — quotes the in-app gauge */
  --energy-low: #C8553D;
  /* terracotta, not crimson */
  --energy-high: #6B8E4E;
  /* muted jade, not neon */
  --brush: #B89968;
  /* bronze-gold linework accent */
  /* type */
  --font-display: "Newsreader", "Times New York", Georgia, serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* section headings share the display face; kept as a hook for future tuning */
  --font-heading: var(--font-display);
  --heading-weight: 400;
  /* layout */
  --maxw: 1120px;
  --pad: clamp(22px, 6vw, 64px);
  --section-y: clamp(72px, 12vw, 132px);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1); }

/* ---------- reset ---------- */
*, *::before, *::after {
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; }

/* warm grain + faint orbital glow so the bg has atmosphere, not flat black */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(120% 90% at 78% -10%, rgba(200, 85, 61, 0.1), transparent 55%), radial-gradient(100% 80% at 8% 108%, rgba(107, 142, 78, 0.08), transparent 55%), var(--bg); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

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

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

:focus-visible {
  outline: 2px solid var(--brush);
  outline-offset: 3px;
  border-radius: 4px; }

/* ---------- type scale ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brush);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px; }

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brush);
  opacity: 0.7; }

.section-title {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: clamp(31px, 5vw, 54px);
  max-width: 18ch; }

.lead {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 22px 0 0; }

.caption {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.01em; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad); }

section {
  padding-block: var(--section-y);
  position: relative; }

/* thin-circle motif divider between sections */
.divider {
  height: 1px;
  border: 0;
  margin: 0 auto;
  max-width: var(--maxw);
  background: var(--line-soft);
  position: relative; }

.divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  border: 1px solid var(--brush);
  background: var(--bg); }

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 14, 12, 0.62);
  border-bottom: 1px solid var(--line-soft); }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em; }

.brand__mark {
  width: 28px;
  height: 28px;
  flex: none; }

.btn-ghost {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }

.btn-ghost:hover {
  border-color: var(--brush);
  background: rgba(184, 153, 104, 0.08); }

@media (max-width: 640px) {
  .topbar {
    position: static; }

  .brand {
    font-size: 15px;
    gap: 9px; }

  .brand__mark {
    width: 24px;
    height: 24px; } }
/* ============================================================
   App Store badge button
   ============================================================ */
.appstore {
  display: inline-flex;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease); }

.appstore img {
  height: 54px;
  width: auto; }

.appstore:hover {
  transform: translateY(-2px);
  filter: brightness(1.06); }

.appstore--sm img {
  height: 44px; }

.microcopy {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 16px;
  letter-spacing: 0.04em; }

/* ============================================================
   1. Hero
   ============================================================ */
.hero {
  padding-top: clamp(48px, 8vw, 92px);
  padding-bottom: clamp(56px, 9vw, 104px); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center; }

.hero__copy {
  max-width: 34ch; }

.hero h1 {
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.022em;
  max-width: 13ch; }

.hero .lead {
  max-width: 40ch; }

.hero h1 em {
  font-style: italic;
  color: var(--ink-dim); }

.hero .lead {
  margin-bottom: 34px; }

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.hero__gauge {
  justify-self: center;
  width: clamp(240px, 34vw, 380px); }

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px; }

  .hero__gauge {
    order: -1;
    width: clamp(200px, 60vw, 280px); }

  .hero__copy {
    max-width: none; }

  .hero h1 {
    margin-inline: auto; }

  .hero .lead {
    margin-inline: auto; }

  .hero__cta {
    align-items: center; }

  .eyebrow {
    justify-content: center; } }
/* gauge svg animation */
.gauge__track {
  stroke: var(--line); }

.gauge__value {
  stroke-linecap: round;
  stroke-dasharray: var(--circ);
  stroke-dashoffset: var(--circ);
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.4s var(--ease); }

.gauge.is-in .gauge__value {
  stroke-dashoffset: var(--target); }

.gauge__num {
  font-family: var(--font-display);
  font-size: 62px;
  fill: var(--ink);
  letter-spacing: -0.02em; }

.gauge__cap {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  fill: var(--ink-mute);
  text-transform: uppercase; }

@media (prefers-reduced-motion: reduce) {
  .gauge__value {
    transition: none;
    stroke-dashoffset: var(--target); } }
/* ============================================================
   2. The signal  (text + device)
   ============================================================ */
.signal__grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center; }

.signal__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--brush);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
  width: fit-content; }

.signal__link:hover {
  border-color: var(--brush); }

@media (max-width: 820px) {
  .signal__grid {
    grid-template-columns: 1fr;
    gap: 44px; } }
/* device frame — pure CSS bezel around a real screenshot */
.device {
  --bezel: 11px;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  padding: var(--bezel);
  background: linear-gradient(150deg, #2a2832, #131218);
  border-radius: 46px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 40px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 0, 0, 0.5);
  position: relative; }

.device::before {
  /* side button */
  content: "";
  position: absolute;
  right: -2px;
  top: 132px;
  width: 3px;
  height: 58px;
  background: #2a2832;
  border-radius: 2px; }

.device__screen {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #000;
  aspect-ratio: 9 / 19.5; }

.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top; }

.device__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 2; }

/* ============================================================
   3. How it works — 3 numbered steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(40px, 6vw, 64px); }

.step {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  position: relative;
  overflow: hidden; }

.step__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--brush);
  margin-bottom: 24px; }

.step h3 {
  font-size: 25px;
  margin-bottom: 10px; }

.step p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 16px; }

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr; } }
/* ============================================================
   4. What you log — two cards
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 26px);
  margin-top: clamp(40px, 6vw, 60px); }

.logcard {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px); }

.logcard__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--energy-low); }

.logcard--save .logcard__icon {
  color: var(--energy-high); }

.logcard h3 {
  font-size: 27px;
  margin-bottom: 12px; }

.logcard p {
  margin: 0;
  color: var(--ink-dim); }

.duo + .caption {
  margin-top: 28px;
  text-align: center; }

@media (max-width: 680px) {
  .duo {
    grid-template-columns: 1fr; } }
/* ============================================================
   5. Tradition + age table
   ============================================================ */
.tradition__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start; }

.agetable {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums; }

.agetable caption {
  text-align: left;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 14px; }

.agetable th, .agetable td {
  text-align: left;
  padding: 15px 8px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px; }

.agetable th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.04em; }

.agetable td:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  width: 38%; }

.agetable td:last-child {
  color: var(--ink-dim); }

.agetable tr:last-child td {
  border-bottom: 0; }

.tradition__close {
  margin-top: 26px; }

.disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  max-width: 52ch; }

@media (max-width: 820px) {
  .tradition__grid {
    grid-template-columns: 1fr;
    gap: 40px; } }
/* ============================================================
   6. Where it lives — 4 surfaces
   ============================================================ */
.surfaces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(40px, 6vw, 60px); }

.surface-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.4vw, 30px); }

.surface-card__icon {
  width: 38px;
  height: 38px;
  color: var(--brush);
  margin-bottom: 20px; }

.surface-card h3 {
  font-size: 20px;
  margin-bottom: 8px; }

.surface-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-dim); }

@media (max-width: 900px) {
  .surfaces {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .surfaces {
    grid-template-columns: 1fr; } }
/* ============================================================
   7. Premium
   ============================================================ */
.premium__grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center; }

.featurelist {
  list-style: none;
  margin: 30px 0 0;
  padding: 0; }

.featurelist li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft); }

.featurelist li:last-child {
  border-bottom: 0; }

.featurelist .check {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--energy-high);
  align-self: center; }

.featurelist b {
  font-weight: 600;
  color: var(--ink); }

.featurelist span {
  color: var(--ink-dim); }

.premium__note {
  margin-top: 24px;
  color: var(--ink-mute);
  font-size: 14.5px; }

@media (max-width: 820px) {
  .premium__grid {
    grid-template-columns: 1fr;
    gap: 44px; }

  .premium__media {
    order: -1; } }
/* ============================================================
   8. Privacy
   ============================================================ */
.privacy {
  text-align: center; }

.privacy .section-title {
  margin-inline: auto; }

.privacy__list {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 640px;
  display: grid;
  gap: 22px;
  text-align: left; }

.privacy__list li {
  display: flex;
  gap: 16px;
  color: var(--ink-dim);
  font-size: 17px; }

.privacy__list .dot {
  flex: none;
  margin-top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brush); }

.privacy__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  transition: border-color 0.3s var(--ease); }

.privacy__link:hover {
  border-color: var(--brush); }

/* ============================================================
   9. FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin-inline: auto; }

.faq__list {
  margin-top: clamp(34px, 5vw, 52px); }

.qa {
  border-bottom: 1px solid var(--line-soft); }

.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink);
  transition: color 0.25s var(--ease); }

.qa summary::-webkit-details-marker {
  display: none; }

.qa summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6px;
  background: linear-gradient(var(--ink-mute), var(--ink-mute)) center/13px 1.5px no-repeat, linear-gradient(var(--ink-mute), var(--ink-mute)) center/1.5px 13px no-repeat;
  transition: transform 0.3s var(--ease); }

.qa[open] summary::after {
  transform: rotate(135deg); }

.qa summary:hover {
  color: var(--brush); }

.qa__body {
  padding: 0 44px 26px 0;
  color: var(--ink-dim);
  font-size: 16px;
  margin: 0; }

/* ============================================================
   10. Footer
   ============================================================ */
.footer {
  padding-bottom: clamp(48px, 6vw, 72px); }

.footer__cta {
  text-align: center;
  padding-bottom: clamp(56px, 8vw, 88px); }

.footer__cta h2 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: clamp(30px, 5vw, 50px);
  max-width: 16ch;
  margin: 0 auto 34px;
  font-style: italic; }

.footer__cta .appstore {
  margin-inline: auto; }

.footer__meta {
  border-top: 1px solid var(--line-soft);
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between; }

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.03em; }

.footer__brand img {
  width: 24px;
  height: 24px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14.5px;
  color: var(--ink-dim); }

.footer__links a {
  transition: color 0.25s var(--ease); }

.footer__links a:hover {
  color: var(--brush); }

.footer__copy {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-mute); }

/* ============================================================
   scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

.reveal.is-in {
  opacity: 1;
  transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none; } }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100; }

.skip-link:focus {
  left: 12px; }
