/* ============================================================
   Mythikos Fitness — Website design system
   Brand palette: black / purple / grey / white (locked default)
   ============================================================ */

:root{
  /* surfaces */
  --bg:        #0B0B0D;
  --bg-2:      #0E0D11;
  --surface:   #16151B;
  --surface-2: #1C1A23;
  --line:      #2A2832;
  --line-soft: #221F2A;

  /* text */
  --white:     #F4F2F8;
  --text:      #E7E4EE;
  --muted:     #ADA9B8;
  --dim:       #777484;

  /* brand accent — purple */
  --purple:        #8B5CF6;
  --purple-bright: #A78BFA;
  --purple-deep:   #6D3DF0;
  --purple-glow:   rgba(139,92,246,.45);

  /* utility accents */
  --green:  #34D399;
  --amber:  #F5B544;
  --coral:  #F87171;

  --radius:   18px;
  --radius-l: 26px;
  --shadow:   0 20px 50px rgba(0,0,0,.45);
  --maxw:     1160px;
  --ease:     cubic-bezier(.22,.61,.36,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{ color:var(--purple-bright); text-decoration:none; }
img,svg{ display:block; }
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 clamp(28px,6vw,64px); }

/* glow backdrop */
body::before{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:0;
  background:
    radial-gradient(900px 460px at 82% -6%, rgba(139,92,246,.16), transparent 60%),
    radial-gradient(720px 420px at -6% 8%,  rgba(139,92,246,.08), transparent 55%);
}
main, header, footer{ position:relative; z-index:1; }

/* ---------------- NAV ---------------- */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(14px);
  background:rgba(11,11,13,.72);
  border-bottom:1px solid var(--line-soft);
  transition:border-color .3s var(--ease), background .3s var(--ease);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; height:66px; }
.brand{ display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:-.2px; color:var(--white); flex-shrink:0; }
.brand .logo{ width:34px; height:34px; filter:drop-shadow(0 4px 12px var(--purple-glow)); }
.brand b{ font-size:18px; white-space:nowrap; }
.brand b span{ color:var(--purple-bright); }
@media (max-width:380px){ .brand b{ font-size:16px; } }
.nav-links{ display:flex; align-items:center; gap:4px; flex-shrink:0; }
.nav-links a{
  color:var(--muted); font-size:14.5px; font-weight:500; white-space:nowrap;
  padding:9px 13px; border-radius:999px;
  transition:color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover{ color:var(--white); background:rgba(139,92,246,.12); }
.nav-cta{
  background:linear-gradient(135deg,var(--purple),var(--purple-deep));
  color:#fff !important; font-weight:600;
  box-shadow:0 8px 22px rgba(109,61,240,.4);
}
.nav-cta:hover{ background:linear-gradient(135deg,var(--purple-bright),var(--purple)) !important;
  transform:translateY(-1px); }
.nav-burger{ display:none; background:none; border:0; color:var(--white); cursor:pointer; }

/* ---------------- BUTTONS ---------------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-weight:600; font-size:15px; letter-spacing:.1px;
  padding:13px 22px; border-radius:999px; cursor:pointer; border:1px solid transparent;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary{
  background:linear-gradient(135deg,var(--purple),var(--purple-deep)); color:#fff;
  box-shadow:0 10px 28px rgba(109,61,240,.42);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 38px rgba(109,61,240,.55); }
.btn-ghost{ background:rgba(255,255,255,.04); border-color:var(--line); color:var(--white); }
.btn-ghost:hover{ border-color:var(--purple); background:rgba(139,92,246,.10); transform:translateY(-2px); }

/* ---------------- SECTION HEADERS ---------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--purple-bright);
  background:rgba(139,92,246,.10); border:1px solid rgba(139,92,246,.28);
  padding:6px 14px; border-radius:999px;
}
.section{ padding-block:96px; }
.section h2{ font-size:clamp(28px,4vw,42px); line-height:1.1; font-weight:800; letter-spacing:-.8px; color:var(--white); margin:18px 0 14px; }
.section .lead{ color:var(--muted); font-size:18px; max-width:620px; }
.center{ text-align:center; }
.center .lead{ margin:0 auto; }

/* ---------------- HERO ---------------- */
.hero{ padding-block:70px 40px; position:relative; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.hero h1{
  font-size:clamp(38px,6vw,68px); line-height:1.03; font-weight:800; letter-spacing:-1.6px; color:var(--white);
}
.hero h1 .accent{ background:linear-gradient(120deg,var(--purple-bright),var(--purple)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.sub{ color:var(--muted); font-size:19px; margin:22px 0 30px; max-width:540px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-meta{ display:flex; gap:26px; margin-top:30px; flex-wrap:wrap; }
.hero-meta div b{ display:block; font-size:24px; color:var(--white); font-weight:800; letter-spacing:-.5px; }
.hero-meta div span{ font-size:13px; color:var(--dim); }

/* ---------------- PHONE FRAME ---------------- */
.phone{
  --pw:300px;
  width:var(--pw); aspect-ratio:300/620; position:relative; margin:0 auto;
  background:linear-gradient(160deg,#26242E,#141319);
  border-radius:46px; padding:13px;
  box-shadow:0 40px 90px rgba(0,0,0,.6), inset 0 0 0 1.5px rgba(255,255,255,.06), 0 0 0 2px #000;
}
.phone::after{ /* side button */
  content:""; position:absolute; right:-3px; top:150px; width:3px; height:66px; border-radius:3px;
  background:linear-gradient(#3a3742,#222029);
}
.phone-screen{
  position:relative; width:100%; height:100%; border-radius:34px; overflow:hidden;
  background:var(--bg); display:flex; flex-direction:column;
}
.phone-notch{
  position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:104px; height:26px; background:#000; border-radius:999px; z-index:6;
}
.phone-glow{ position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(420px 240px at 70% -4%, rgba(139,92,246,.20), transparent 60%); z-index:1; }
/* real screenshot inside the frame */
.phone-screen .shot{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2; display:block; }
.phone.real .phone-notch{ display:none; }

/* screenshot showcase wall */
.shotwall{ display:grid; grid-template-columns:repeat(5,1fr); gap:26px; margin-top:52px; }
.shotwall figure{ margin:0; }
.shotwall .phone{ width:100%; margin:0; transition:transform .3s var(--ease); }
.shotwall .phone::after{ display:none; }
.shotwall figure:hover .phone{ transform:translateY(-8px); }
.shotwall figcaption{ text-align:center; margin-top:15px; font-size:13.5px; color:var(--muted); font-weight:600; letter-spacing:.2px; }
@media (max-width:980px){ .shotwall{ grid-template-columns:repeat(3,1fr); gap:20px; } }
@media (max-width:620px){ .shotwall{ grid-template-columns:repeat(2,1fr); gap:16px; } }

/* status bar */
.sbar{ display:flex; justify-content:space-between; align-items:center; padding:13px 22px 4px; font-size:12px; color:var(--white); font-weight:600; z-index:5; }
.sbar .dots{ display:flex; gap:4px; align-items:center; }
.sbar .dots i{ width:4px; height:4px; border-radius:50%; background:var(--white); display:block; opacity:.85; }

/* screen body shared */
.scr{ flex:1; overflow:hidden; padding:6px 16px 0; z-index:3; }
.scr-head{ display:flex; align-items:center; justify-content:space-between; margin:8px 0 14px; }
.scr-head h4{ font-size:18px; color:var(--white); font-weight:800; letter-spacing:-.4px; }
.scr-head .av{ width:30px; height:30px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--purple-deep)); }
.card{ background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:13px 14px; margin-bottom:10px; }
.card.glow{ background:linear-gradient(150deg,rgba(139,92,246,.16),rgba(139,92,246,.03)); border-color:rgba(139,92,246,.32); }
.k-label{ font-size:10.5px; letter-spacing:.6px; text-transform:uppercase; color:var(--dim); font-weight:700; }
.k-big{ font-size:26px; font-weight:800; color:var(--white); letter-spacing:-.6px; line-height:1.1; }
.k-big small{ font-size:13px; color:var(--muted); font-weight:600; }
.ring{ width:54px; height:54px; border-radius:50%;
  background:conic-gradient(var(--purple) var(--p,68%), #2a2832 0); display:flex; align-items:center; justify-content:center; }
.ring i{ width:42px; height:42px; border-radius:50%; background:var(--surface); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; color:var(--white); }
.bar{ height:7px; border-radius:6px; background:#2a2832; overflow:hidden; }
.bar span{ display:block; height:100%; border-radius:6px; background:linear-gradient(90deg,var(--purple),var(--purple-bright)); }
.row{ display:flex; align-items:center; gap:10px; }
.row.sb{ justify-content:space-between; }
.chip{ font-size:10px; font-weight:700; padding:4px 9px; border-radius:999px; background:rgba(139,92,246,.16); color:var(--purple-bright); }
.li{ display:flex; align-items:center; gap:11px; padding:9px 0; border-bottom:1px solid var(--line-soft); }
.li:last-child{ border-bottom:0; }
.li .ic{ width:34px; height:34px; border-radius:10px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.li .t{ flex:1; }
.li .t b{ display:block; font-size:13px; color:var(--white); font-weight:700; }
.li .t span{ font-size:11px; color:var(--dim); }
.li .v{ font-size:13px; font-weight:800; color:var(--purple-bright); }

/* tab bar */
.tabbar{ display:flex; justify-content:space-around; padding:11px 8px 16px; border-top:1px solid var(--line-soft); background:rgba(14,13,17,.9); z-index:4; }
.tabbar i{ width:22px; height:22px; border-radius:7px; background:#2a2832; }
.tabbar i.on{ background:linear-gradient(135deg,var(--purple),var(--purple-deep)); box-shadow:0 4px 12px var(--purple-glow); }

/* ---------------- FEATURE GRID ---------------- */
.grid{ display:grid; gap:18px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.feature{
  background:linear-gradient(180deg,var(--surface),var(--bg-2));
  border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px; position:relative; overflow:hidden;
  transition:transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.feature::before{
  content:""; position:absolute; inset:0; opacity:0; transition:opacity .28s var(--ease);
  background:radial-gradient(420px 200px at 20% -10%, rgba(139,92,246,.16), transparent 60%);
}
.feature:hover{ transform:translateY(-6px); border-color:rgba(139,92,246,.45); box-shadow:0 22px 46px rgba(0,0,0,.4); }
.feature:hover::before{ opacity:1; }
.feature .fic{
  width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:16px;
  background:linear-gradient(150deg,rgba(139,92,246,.22),rgba(139,92,246,.06));
  border:1px solid rgba(139,92,246,.3);
}
.feature h3{ font-size:18.5px; color:var(--white); font-weight:700; letter-spacing:-.3px; margin-bottom:7px; }
.feature p{ color:var(--muted); font-size:14.5px; }
.feature .more{ margin-top:14px; font-size:13px; font-weight:700; color:var(--purple-bright); opacity:0; transform:translateY(6px); transition:.28s var(--ease); }
.feature:hover .more{ opacity:1; transform:translateY(0); }

/* ---------------- WALKTHROUGH (alternating) ---------------- */
.walk{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin:0 0 110px; }
.walk:last-child{ margin-bottom:0; }
.walk.rev .wt-copy{ order:2; }
.walk .step-no{ font-size:13px; font-weight:800; letter-spacing:2px; color:var(--purple-bright); text-transform:uppercase; }
.walk h3{ font-size:clamp(24px,3vw,34px); color:var(--white); font-weight:800; letter-spacing:-.6px; margin:10px 0 14px; line-height:1.12; }
.walk p{ color:var(--muted); font-size:16.5px; margin-bottom:20px; }
.tick{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.tick li{ display:flex; gap:12px; align-items:flex-start; color:var(--text); font-size:15px; }
.tick li::before{ content:""; flex-shrink:0; margin-top:7px; width:16px; height:16px; border-radius:5px;
  background:linear-gradient(135deg,var(--purple),var(--purple-deep));
  box-shadow:0 0 0 4px rgba(139,92,246,.14);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat,linear-gradient(#000,#000);
  mask:none; }

/* ---------------- CTA BANNER ---------------- */
.cta-band{
  background:linear-gradient(135deg,rgba(139,92,246,.16),rgba(109,61,240,.05));
  border:1px solid rgba(139,92,246,.3); border-radius:var(--radius-l);
  padding:54px 44px; text-align:center; position:relative; overflow:hidden;
}
.cta-band h2{ font-size:clamp(26px,4vw,40px); color:var(--white); font-weight:800; letter-spacing:-.8px; }
.cta-band p{ color:var(--muted); font-size:17px; margin:14px auto 26px; max-width:520px; }

/* ---------------- FOOTER ---------------- */
.footer{ border-top:1px solid var(--line-soft); padding:54px 0 40px; margin-top:30px; }
.foot-grid{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.foot-brand{ max-width:330px; }
.foot-lockup{ display:flex; align-items:center; gap:14px; }
.foot-lockup .logo{ width:46px; height:46px; flex-shrink:0; filter:drop-shadow(0 5px 16px var(--purple-glow)); }
.foot-lockup .wm{ display:flex; flex-direction:column; line-height:1.05; }
.foot-lockup .wm b{ font-size:21px; font-weight:800; letter-spacing:-.3px; color:var(--white); white-space:nowrap; }
.foot-lockup .wm b span{ color:var(--purple-bright); }
.foot-lockup .wm small{ font-size:10.5px; letter-spacing:2.5px; text-transform:uppercase; color:var(--dim); margin-top:3px; }
.foot-brand p{ color:var(--dim); font-size:14px; margin-top:16px; }
.foot-col h5{ font-size:12px; letter-spacing:1px; text-transform:uppercase; color:var(--dim); margin-bottom:14px; font-weight:700; }
.foot-col a{ display:block; color:var(--muted); font-size:14.5px; padding:5px 0; transition:color .2s var(--ease); }
.foot-col a:hover{ color:var(--white); }
.foot-bottom{ margin-top:44px; padding-top:22px; border-top:1px solid var(--line-soft); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; color:var(--dim); font-size:13px; }

/* ---------------- ARTICLE (privacy / delete) ---------------- */
.doc{ max-width:780px; margin:0 auto; padding:54px 0 90px; }
.doc .eyebrow{ margin-bottom:18px; }
.doc h1{ font-size:clamp(30px,5vw,44px); color:var(--white); font-weight:800; letter-spacing:-.8px; }
.doc .updated{ color:var(--dim); font-size:15px; margin:10px 0 30px; }
.doc h2{ font-size:22px; color:var(--white); font-weight:700; margin:38px 0 12px; letter-spacing:-.3px; }
.doc h3{ font-size:17px; color:var(--white); font-weight:700; margin:24px 0 8px; }
.doc p,.doc li{ color:var(--text); font-size:16px; }
.doc ul{ padding-left:22px; margin:8px 0; }
.doc li{ margin:7px 0; }
.doc hr{ border:0; border-top:1px solid var(--line); margin:42px 0 24px; }
.callout{
  background:var(--surface); border:1px solid var(--line); border-left:3px solid var(--purple);
  border-radius:14px; padding:18px 22px; margin:18px 0;
}
.callout.warn{ border-left-color:var(--amber); }
.callout strong{ color:var(--white); }
.steps{ counter-reset:s; list-style:none; padding:0; margin:18px 0; display:flex; flex-direction:column; gap:14px; }
.steps li{ counter-increment:s; position:relative; padding:18px 20px 18px 64px;
  background:var(--surface); border:1px solid var(--line); border-radius:14px;
  transition:border-color .25s var(--ease), transform .25s var(--ease); }
.steps li:hover{ border-color:rgba(139,92,246,.4); transfo