:root {
  --navy: #060b28;
  --navy-2: #10144b;
  --blue: #168cff;
  --cyan: #39d7ff;
  --violet: #8255f6;
  --violet-2: #a084f5;
  --green: #7ed957;
  --off-white: #e9ece7;
  --grey: #c7ccd1;
  --dark-grey: #6d737a;
  --ink: #080a2c;
  --white: #ffffff;

  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Avenir Next",
    Avenir,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 36px), 1400px);
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 14px;

  color: white;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;

  background: rgba(5,8,30,.52);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: white;
  text-decoration: none;

  font-size: 14px;
  font-weight: 650;
  letter-spacing: .28em;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;

  border-radius: 999px;

  color: rgba(255,255,255,.68);
  text-decoration: none;

  font-size: 12px;
  font-weight: 550;
  letter-spacing: .015em;

  transition:
    color .18s ease,
    background .18s ease;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.site-nav a:focus-visible {
  outline: 2px solid rgba(255,255,255,.85);
  outline-offset: 2px;
}

section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 72px), var(--max));
  min-height: 100svh;

  margin: 0 auto;
  padding: 120px 0 80px;
}

.hero-layout,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(40px, 7vw, 110px);

  align-items: center;
}

.story-layout.reverse {
  grid-template-columns: minmax(420px, 1.12fr) minmax(0, .88fr);
}

.story-layout.reverse .copy {
  order: 2;
}

.story-layout.reverse .visual {
  order: 1;
}

.copy {
  max-width: 660px;
}

.eyebrow {
  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 750;
  letter-spacing: .19em;
}

h1,
h2 {
  margin: 0;

  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .95;
}

h1 {
  font-size: clamp(68px, 7.6vw, 126px);
}

h2 {
  font-size: clamp(60px, 6.2vw, 104px);
}

.lead {
  max-width: 620px;

  margin: 34px 0 0;

  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.48;
  letter-spacing: -.015em;
}

.punch {
  margin: 34px 0 0;

  font-size: clamp(22px, 2vw, 32px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.text-link {
  display: inline-flex;
  gap: 14px;

  margin-top: 38px;

  color: white;
  text-decoration: none;

  font-size: 17px;
  font-weight: 600;
}

.visual {
  position: relative;
  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.section-dark {
  color: white;

  background:
    radial-gradient(circle at 76% 42%, rgba(97,56,255,.35), transparent 32%),
    radial-gradient(circle at 60% 75%, rgba(0,167,255,.20), transparent 32%),
    linear-gradient(135deg, #04091d 0%, #080d38 46%, #22105a 100%);
}

.section-light {
  background: var(--off-white);
}

.section-blue {
  color: white;

  background:
    radial-gradient(circle at 18% 70%, rgba(75,222,255,.28), transparent 30%),
    linear-gradient(135deg, #0756e8 0%, #116cff 48%, #12a9ff 100%);
}

.section-violet {
  color: white;

  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.15), transparent 30%),
    linear-gradient(135deg, #4f2be8 0%, #7f4df2 50%, #a177f5 100%);
}

.section-food {
  background:
    radial-gradient(circle at 86% 20%, rgba(126,217,87,.27), transparent 25%),
    linear-gradient(145deg, #f4f5ef 0%, #e9ece7 55%, #dff3d9 100%);
}

.section-training {
  color: white;

  background:
    radial-gradient(circle at 72% 48%, rgba(48,211,255,.22), transparent 28%),
    linear-gradient(145deg, #030824 0%, #07174c 55%, #072b65 100%);
}

.section-custom {
  background:
    linear-gradient(145deg, #ebeef2 0%, #f6f6f3 55%, #e9e3fc 100%);
}

.section-muscles {
  color: white;

  background:
    radial-gradient(circle at 70% 48%, rgba(160,132,245,.25), transparent 28%),
    linear-gradient(140deg, #10122d 0%, #27234f 55%, #34305f 100%);
}

.section-learning {
  background:
    radial-gradient(circle at 24% 28%, rgba(160,132,245,.25), transparent 24%),
    linear-gradient(145deg, #f3f1fa 0%, #e9ece7 68%, #e5e7ea 100%);
}

.section-arc {
  color: white;

  background:
    radial-gradient(circle at 65% 50%, rgba(106,76,255,.34), transparent 35%),
    linear-gradient(135deg, #03061b 0%, #090c30 48%, #261058 100%);
}

.visual-dark,
.visual-blue,
.visual-food,
.visual-custom {
  border-radius: 48px;
}

.phone-shell {
  width: min(430px, 86%);
  aspect-ratio: .53;

  padding: 12px;

  border: 1px solid rgba(255,255,255,.24);
  border-radius: 62px;

  background: #030512;

  box-shadow: 0 50px 100px rgba(0,0,0,.34);
}

.phone-top {
  width: 116px;
  height: 30px;

  margin: 5px auto 20px;

  border-radius: 999px;

  background: black;
}

.mock-screen {
  height: calc(100% - 55px);

  padding: 30px 24px;

  border-radius: 44px;

  background:
    radial-gradient(circle at 75% 8%, rgba(117,77,255,.28), transparent 30%),
    linear-gradient(#081135, #05091e);
}

.mock-kicker,
.ui-label {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  opacity: .65;
}

.mock-title {
  margin-top: 10px;

  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.04em;
}

.timeline {
  margin-top: 36px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,.10);
}

.timeline-row span,
.timeline-row em {
  color: rgba(255,255,255,.52);

  font-size: 12px;
  font-style: normal;
}

.timeline-row strong {
  font-size: 14px;
  font-weight: 600;
}

.timeline-row.active {
  margin: 8px -12px;
  padding: 18px 12px;

  border: 1px solid rgba(86,198,255,.4);
  border-radius: 18px;

  background: rgba(47,137,255,.17);
}

.ui-card,
.next-action-card,
.nutrition-card,
.builder-card,
.learning-card,
.load-panel {
  width: min(520px, 92%);

  padding: clamp(28px, 4vw, 52px);

  border-radius: 36px;

  background: rgba(255,255,255,.86);

  box-shadow: 0 32px 80px rgba(17,17,44,.12);
}

.ui-big-number {
  margin-top: 22px;

  font-size: 104px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.07em;
}

.ui-muted {
  margin: 10px 0 34px;

  color: var(--dark-grey);

  font-size: 16px;
}

.metric-line,
.builder-row,
.training-line {
  display: flex;
  justify-content: space-between;

  padding: 17px 0;

  border-bottom: 1px solid rgba(0,0,0,.09);

  font-size: 15px;
}

.metric-line strong,
.builder-row strong,
.training-line strong {
  font-weight: 650;
}

.next-action-card {
  color: white;

  background: rgba(5,26,80,.42);

  border: 1px solid rgba(255,255,255,.22);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow: 0 40px 100px rgba(0,19,89,.26);
}

.action-title {
  margin-top: 22px;

  font-size: clamp(34px, 3vw, 50px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.05em;
}

.next-action-card p {
  color: rgba(255,255,255,.72);
}

.next-divider {
  height: 1px;

  margin: 34px 0 20px;

  background: rgba(255,255,255,.18);
}

.next-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.next-row span {
  font-size: 10px;
  letter-spacing: .18em;
  opacity: .55;
}

.next-row strong {
  font-size: 16px;
}

.before-after {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.day-panel {
  min-height: 350px;

  padding: 32px;

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 32px;

  background: rgba(255,255,255,.11);

  backdrop-filter: blur(16px);
}

.day-panel.changed {
  background: rgba(255,255,255,.20);
}

.mini-event {
  display: flex;
  flex-direction: column;
  gap: 6px;

  margin-top: 28px;
  padding: 18px;

  border-radius: 20px;

  background: rgba(255,255,255,.12);
}

.mini-event span {
  font-size: 11px;
  opacity: .65;
}

.change-arrow {
  font-size: 34px;
}

.adapted-tag {
  display: inline-block;

  margin-top: 26px;
  padding: 10px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,.18);

  font-size: 12px;
}

.nutrition-heading {
  margin-top: 20px;

  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.05em;
}

.macro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;

  margin-top: 32px;
}

.macro-grid div {
  padding: 18px;

  border-radius: 22px;

  background: rgba(126,217,87,.12);
}

.macro-grid span,
.macro-grid strong {
  display: block;
}

.macro-grid span {
  color: #607064;

  font-size: 11px;
}

.macro-grid strong {
  margin-top: 8px;

  font-size: 26px;
}

.meal-suggestion {
  margin-top: 24px;
  padding: 24px;

  border-radius: 24px;

  background: #0b2a25;

  color: white;
}

.meal-suggestion span,
.meal-suggestion strong,
.meal-suggestion em {
  display: block;
}

.meal-suggestion span {
  opacity: .55;

  font-size: 11px;
  letter-spacing: .12em;
}

.meal-suggestion strong {
  margin-top: 10px;

  font-size: 23px;
}

.meal-suggestion em {
  margin-top: 7px;

  opacity: .65;

  font-size: 12px;
  font-style: normal;
}

.devices {
  gap: 28px;
}

.device-phone {
  width: min(370px, 68%);
  min-height: 540px;

  padding: 42px 30px;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 54px;

  background:
    radial-gradient(circle at 80% 10%, rgba(69,166,255,.25), transparent 30%),
    #050a20;

  box-shadow: 0 40px 90px rgba(0,0,0,.28);
}

.device-title {
  margin-top: 42px;

  font-size: 76px;
  font-weight: 600;
  letter-spacing: -.07em;
}

.device-sub {
  margin: 6px 0 42px;

  opacity: .56;
}

.training-line {
  border-color: rgba(255,255,255,.12);
}

.device-watch {
  width: 190px;
  aspect-ratio: .84;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 8px solid #1d1d22;
  border-radius: 54px;

  background: #050505;

  box-shadow: 0 30px 70px rgba(0,0,0,.38);
}

.watch-ring {
  width: 74px;
  height: 74px;

  margin-bottom: 12px;

  border: 7px solid #25cfff;
  border-right-color: #855cff;
  border-radius: 50%;
}

.device-watch strong {
  font-size: 40px;
}

.device-watch span,
.device-watch em {
  font-size: 11px;
  font-style: normal;
  opacity: .58;
}

.builder-card {
  background: rgba(255,255,255,.90);
}

.builder-question {
  margin-top: 18px;

  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.045em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin: 26px 0 24px;
}

.chip {
  padding: 10px 14px;

  border: 1px solid #d5d7dc;
  border-radius: 999px;

  font-size: 12px;
}

.chip.selected {
  color: white;
  border-color: var(--violet);
  background: var(--violet);
}

.fake-button {
  width: 100%;

  margin-top: 30px;
  padding: 17px 20px;

  border: 0;
  border-radius: 999px;

  color: white;
  background: var(--ink);

  font: inherit;
  font-weight: 650;
}

.muscle-visual {
  gap: 30px;
}

.body-placeholder {
  position: relative;

  width: 260px;
  height: 520px;
}

.body-head,
.body-torso,
.body-arm,
.body-leg {
  position: absolute;

  background:
    linear-gradient(145deg, rgba(52,190,255,.9), rgba(155,100,255,.8));

  box-shadow: 0 0 36px rgba(91,136,255,.24);
}

.body-head {
  top: 0;
  left: 102px;

  width: 56px;
  height: 66px;

  border-radius: 50%;
}

.body-torso {
  top: 82px;
  left: 72px;

  width: 116px;
  height: 190px;

  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
}

.body-arm {
  top: 94px;

  width: 38px;
  height: 210px;

  border-radius: 999px;
}

.body-arm.left {
  left: 28px;
  transform: rotate(9deg);
}

.body-arm.right {
  right: 28px;
  transform: rotate(-9deg);
}

.body-leg {
  top: 270px;

  width: 45px;
  height: 240px;

  border-radius: 999px;
}

.body-leg.left {
  left: 75px;
}

.body-leg.right {
  right: 75px;
}

.muscle-dot {
  position: absolute;

  padding: 7px 10px;

  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;

  background: rgba(255,255,255,.13);

  font-size: 10px;
}

.muscle-dot.chest {
  top: 135px;
  left: 92px;
}

.muscle-dot.legs {
  top: 345px;
  left: 102px;
}

.load-panel {
  color: var(--ink);
}

.load-row {
  margin-top: 28px;
}

.load-row > span {
  display: block;

  margin-bottom: 9px;

  font-size: 12px;
}

.load-bar {
  height: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #e4e4ea;
}

.load-bar i {
  display: block;
  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.learning-card {
  background: rgba(255,255,255,.80);
}

.learning-block {
  padding: 26px;

  border-radius: 24px;

  background: #f2f2f4;
}

.learning-block.adapted {
  color: white;
  background: var(--ink);
}

.learning-block span {
  display: block;

  margin-bottom: 12px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  opacity: .55;
}

.learning-block strong {
  font-size: 21px;
  line-height: 1.3;
}

.learning-arrow {
  margin: 16px 0;

  text-align: center;

  font-size: 26px;
}

.arc-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;

  align-items: center;
}

.arc-loop {
  position: relative;

  width: min(620px, 90vw);
  aspect-ratio: 1;

  margin: auto;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;

  box-shadow:
    inset 0 0 80px rgba(93,67,255,.14),
    0 0 100px rgba(82,51,255,.15);
}

.arc-center {
  position: absolute;
  inset: 50% auto auto 50%;

  width: 150px;
  height: 150px;

  display: grid;
  place-items: center;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(255,255,255,.05);
}

.arc-center img {
  width: 110px;
}

.arc-step {
  position: absolute;

  display: grid;
  place-items: center;

  min-width: 98px;
  height: 42px;

  padding: 0 16px;

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;

  background: rgba(255,255,255,.07);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.step-1 {
  top: 8%;
  left: 50%;

  transform: translateX(-50%);
}

.step-2 {
  top: 31%;
  right: -3%;
}

.step-3 {
  right: 4%;
  bottom: 16%;
}

.step-4 {
  bottom: 6%;
  left: 24%;
}

.step-5 {
  top: 38%;
  left: -4%;
}

.final-cta {
  min-height: 100svh;

  display: flex;
  align-items: center;

  color: white;

  background:
    radial-gradient(circle at 50% 28%, rgba(74,199,255,.30), transparent 26%),
    radial-gradient(circle at 74% 60%, rgba(151,83,255,.42), transparent 32%),
    linear-gradient(145deg, #05091f, #111448 48%, #39116b);
}

.final-inner {
  width: min(calc(100% - 48px), 1100px);

  margin: auto;
  padding: 120px 0 40px;

  text-align: center;
}

.final-logo {
  width: 118px;
  height: 118px;

  object-fit: contain;

  margin-bottom: 32px;
}

.final-inner h2 {
  font-size: clamp(58px, 7vw, 110px);
}

.final-inner > p {
  max-width: 620px;

  margin: 32px auto 0;

  color: rgba(255,255,255,.72);

  font-size: 20px;
  line-height: 1.5;
}

.coming-soon {
  display: inline-block;

  margin-top: 40px;
  padding: 15px 22px;

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;

  background: rgba(255,255,255,.08);

  font-size: 13px;
  font-weight: 650;
}

footer {
  margin-top: 110px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;

  color: rgba(255,255,255,.55);

  font-size: 12px;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: white;
}

@media (max-width: 980px) {

  .section-inner {
    width: min(calc(100% - 40px), 720px);
    min-height: auto;

    padding: 120px 0 84px;
  }

  .hero-layout,
  .story-layout,
  .story-layout.reverse,
  .arc-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-layout.reverse .copy,
  .story-layout.reverse .visual {
    order: initial;
  }

  .copy {
    max-width: 100%;
  }

  .visual {
    min-height: 500px;
  }

  .devices,
  .muscle-visual {
    flex-wrap: wrap;
  }

  .arc-copy {
    text-align: center;
  }

}

@media (max-width: 620px) {

  .site-header {
    top: 10px;
    width: calc(100% - 20px);

    padding: 8px 10px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    display: none;
  }

  .site-nav a:first-child,
  .site-nav a:nth-child(2) {
    display: inline-flex;
    padding: 8px 9px;
    font-size: 10px;
  }

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 27px;
    height: 27px;
  }

  .section-inner {
    width: calc(100% - 32px);

    padding: 108px 0 68px;
  }

  h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(50px, 14vw, 72px);
  }

  .lead {
    margin-top: 26px;

    font-size: 18px;
  }

  .punch {
    font-size: 23px;
  }

  .visual {
    min-height: 440px;
  }

  .phone-shell {
    width: min(340px, 94%);
  }

  .mock-screen {
    padding: 24px 18px;
  }

  .timeline-row {
    grid-template-columns: 52px 1fr;
  }

  .timeline-row em {
    display: none;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .change-arrow {
    transform: rotate(90deg);

    text-align: center;
  }

  .day-panel {
    min-height: auto;
  }

  .macro-grid {
    grid-template-columns: 1fr;
  }

  .devices {
    align-items: flex-end;
  }

  .device-phone {
    width: 72%;
    min-height: 480px;

    padding: 34px 22px;
  }

  .device-watch {
    width: 145px;
  }

  .muscle-visual {
    flex-direction: column;
  }

  .load-panel {
    width: 100%;
  }

  .arc-loop {
    width: 92vw;
    max-width: 420px;
  }

  .arc-step {
    min-width: 74px;
    height: 36px;

    padding: 0 10px;

    font-size: 8px;
  }

  .arc-center {
    width: 110px;
    height: 110px;
  }

  .arc-center img {
    width: 82px;
  }

  footer {
    margin-top: 80px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


/* =========================================================
   INFORMATION / FAQ / LEGAL / CONTACT PAGES
   ========================================================= */

.info-page {
  color: var(--ink);

  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(160,132,245,.20),
      transparent 24%
    ),
    var(--off-white);
}

.info-main {
  width: min(calc(100% - 48px), 1040px);

  margin: 0 auto;

  padding: 150px 0 80px;
}

.info-article {
  padding: clamp(32px, 6vw, 76px);

  border: 1px solid rgba(8,10,44,.08);
  border-radius: 42px;

  background: rgba(255,255,255,.72);

  box-shadow: 0 30px 90px rgba(26,23,64,.08);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.info-eyebrow {
  margin-bottom: 24px;

  color: var(--violet);

  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
}

.info-article h1 {
  max-width: 900px;

  font-size: clamp(54px, 7vw, 92px);
}

.info-intro {
  max-width: 760px;

  margin: 30px 0 0;

  color: #4d5062;

  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
  letter-spacing: -.02em;
}

.updated {
  margin: 24px 0 42px;

  color: var(--dark-grey);

  font-size: 13px;
}

.legal-copy > p,
.legal-copy > ul {
  max-width: 790px;

  color: #454858;

  font-size: 17px;
  line-height: 1.75;
}

.legal-copy h2 {
  max-width: 790px;

  margin: 64px 0 20px;

  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.legal-copy h3 {
  max-width: 790px;

  margin: 34px 0 10px;

  font-size: 20px;
  line-height: 1.25;
}

.legal-copy li {
  margin: 10px 0;
}

.legal-copy a,
.info-article a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.faq-list {
  margin-top: 60px;

  border-top: 1px solid rgba(8,10,44,.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(8,10,44,.12);
}

.faq-list summary {
  position: relative;

  padding: 28px 58px 28px 0;

  cursor: pointer;

  list-style: none;

  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
}

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

.faq-list summary::after {
  content: "+";

  position: absolute;
  top: 50%;
  right: 4px;

  transform: translateY(-50%);

  color: var(--violet);

  font-size: 30px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;

  margin: -4px 0 30px;

  color: #555867;

  font-size: 17px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  margin-top: 60px;
}

.contact-card {
  min-height: 230px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  border: 1px solid rgba(8,10,44,.09);
  border-radius: 30px;

  color: var(--ink);
  background: rgba(255,255,255,.80);

  text-decoration: none;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 22px 50px rgba(27,25,65,.10);
}

.contact-card span {
  color: var(--violet);

  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
}

.contact-card strong {
  margin-top: 22px;

  font-size: clamp(20px, 2vw, 29px);
  letter-spacing: -.035em;
}

.contact-card em {
  margin-top: auto;

  color: var(--dark-grey);

  font-size: 13px;
  font-style: normal;
}

.support-note {
  max-width: 790px;

  margin-top: 64px;
}

.support-note h2 {
  margin: 0;

  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -.045em;
}

.support-note p {
  color: #555867;

  font-size: 17px;
  line-height: 1.7;
}

.info-footer {
  width: min(calc(100% - 48px), 1040px);

  margin: 0 auto;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;

  padding: 0 0 50px;

  color: #747783;

  font-size: 12px;
}

.info-footer a {
  color: inherit;
  text-decoration: none;
}

.info-footer a:hover {
  color: var(--ink);
}

.info-footer span {
  margin-left: auto;
}

@media (max-width: 700px) {

  .info-main {
    width: calc(100% - 24px);

    padding: 100px 0 50px;
  }

  .info-article {
    padding: 30px 22px;

    border-radius: 28px;
  }

  .info-article h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .faq-list {
    margin-top: 42px;
  }

  .faq-list summary {
    padding: 24px 46px 24px 0;

    font-size: 20px;
  }

  .faq-list details p,
  .legal-copy > p,
  .legal-copy > ul,
  .support-note p {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 190px;
  }

  .info-footer {
    width: calc(100% - 32px);

    gap: 15px;
  }

  .info-footer span {
    width: 100%;

    margin-left: 0;
    margin-top: 10px;
  }

}


/* =========================================================
   V2.1 — MUSCLE MAP VISUAL
   ========================================================= */

.muscle-visual {
  gap: 24px;
  align-items: stretch;
}

.muscle-map-card {
  width: min(390px, 55%);
  min-height: 560px;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;

  background:
    radial-gradient(
      circle at 55% 42%,
      rgba(73,179,255,.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(150,91,255,.20),
      transparent 38%
    ),
    rgba(255,255,255,.055);

  box-shadow: 0 32px 90px rgba(0,0,0,.18);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.muscle-map-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.muscle-map-top strong {
  display: block;

  margin-top: 10px;

  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.muscle-map-status {
  padding: 7px 9px;

  border: 1px solid rgba(80,211,255,.25);
  border-radius: 999px;

  color: #66ddff;
  background: rgba(60,204,255,.09);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
}

.muscle-map-placeholder {
  position: relative;

  flex: 1;

  min-height: 360px;

  margin-top: 26px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at center,
      rgba(87,114,255,.14),
      transparent 42%
    ),
    rgba(3,6,27,.38);
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;

  border: 1px solid rgba(123,161,255,.18);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 230px;
  height: 230px;
}

.orbit-two {
  width: 330px;
  height: 330px;
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 150px;
  height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(73,210,255,.34),
      transparent 42%
    ),
    rgba(98,72,220,.18);
}

.map-core span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  opacity: .55;
}

.map-core strong {
  margin-top: 7px;

  font-size: 17px;
  font-weight: 600;
}

.map-tag {
  position: absolute;

  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;

  background: rgba(255,255,255,.08);

  font-size: 9px;

  backdrop-filter: blur(10px);
}

.tag-chest {
  top: 21%;
  right: 8%;
}

.tag-back {
  top: 57%;
  left: 5%;
}

.tag-legs {
  right: 13%;
  bottom: 14%;
}

.placeholder-note {
  margin-top: 17px;

  color: rgba(255,255,255,.38);

  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.load-panel {
  width: min(350px, 45%);

  align-self: center;
}

.load-summary {
  margin: 24px 0 34px;
}

.load-summary span,
.attention-note span {
  display: block;

  color: #7f8190;

  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.load-summary strong {
  display: block;

  margin-top: 5px;

  font-size: 30px;
  letter-spacing: -.05em;
}

.load-row {
  display: grid;
  grid-template-columns: 78px 1fr 36px;
  gap: 10px;
  align-items: center;
}

.load-row > span {
  margin: 0;
}

.load-row em {
  color: #898b98;

  font-size: 10px;
  font-style: normal;
  text-align: right;
}

.attention-note {
  margin-top: 34px;
  padding: 18px;

  border-radius: 20px;

  background: #f1eff8;
}

.attention-note strong {
  display: block;

  margin-top: 4px;

  font-size: 18px;
}


/* =========================================================
   V2.1 — ARC ENGINE VISUAL
   ========================================================= */

.arc-system {
  position: relative;

  width: min(570px, 88vw);
  aspect-ratio: 1;

  margin: auto;
}

.arc-halo {
  position: absolute;
  top: 50%;
  left: 50%;

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.halo-one {
  width: 70%;
  height: 70%;

  border: 1px solid rgba(255,255,255,.10);
}

.halo-two {
  width: 94%;
  height: 94%;

  border: 1px solid rgba(113,131,255,.12);
}

.arc-system-center {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 190px;
  height: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(50,196,255,.20),
      transparent 42%
    ),
    rgba(255,255,255,.055);

  box-shadow:
    0 0 80px rgba(82,64,255,.17),
    inset 0 0 45px rgba(116,74,255,.10);
}

.arc-system-center img {
  width: 76px;
  height: 76px;

  object-fit: contain;
}

.arc-system-center span {
  margin-top: 10px;

  color: rgba(255,255,255,.38);

  font-size: 8px;
  letter-spacing: .12em;
}

.arc-system-center strong {
  margin-top: 3px;

  font-size: 14px;
  font-weight: 600;
}

.arc-node {
  position: absolute;

  width: 116px;
  min-height: 62px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;

  background: rgba(255,255,255,.055);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.arc-node span {
  color: rgba(255,255,255,.35);

  font-size: 8px;
  letter-spacing: .12em;
}

.arc-node strong {
  margin-top: 5px;

  font-size: 11px;
  letter-spacing: .15em;
}

.arc-read {
  top: 2%;
  left: 50%;

  transform: translateX(-50%);
}

.arc-plan {
  top: 27%;
  right: 0;
}

.arc-guide {
  right: 8%;
  bottom: 10%;
}

.arc-adapt {
  bottom: 10%;
  left: 8%;
}

.arc-learn {
  top: 27%;
  left: 0;
}

@media (max-width: 700px) {

  .muscle-visual {
    flex-direction: column;
  }

  .muscle-map-card,
  .load-panel {
    width: 100%;
  }

  .muscle-map-card {
    min-height: 520px;
  }

  .arc-system {
    width: min(94vw, 440px);
  }

  .arc-system-center {
    width: 135px;
    height: 135px;
  }

  .arc-system-center img {
    width: 55px;
    height: 55px;
  }

  .arc-node {
    width: 86px;
    min-height: 52px;

    border-radius: 17px;
  }

  .arc-node strong {
    font-size: 9px;
  }

}
