:root {
  --bg: #070b0e;
  --bg-soft: #0b1114;
  --panel: #10191d;
  --panel-2: #121f24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f8f6f2;
  --muted: #a9b4b8;
  --muted-2: #7e8b91;
  --accent: #8ed9cd;
  --accent-soft: rgba(142, 217, 205, 0.12);
  --gold: #d6c49d;
  --radius: 22px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 0%, rgba(142, 217, 205, 0.09), transparent 34rem),
    radial-gradient(circle at 10% 16%, rgba(214, 196, 157, 0.045), transparent 25rem),
    linear-gradient(180deg, #071014 0%, var(--bg) 46%, #05080a 100%);
  min-height: 100vh;
}

body::selection {
  background: rgba(142, 217, 205, 0.22);
}

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

.site-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
}

.top-actions {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.section {
  padding: 58px 0;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: 54px;
  padding-top: 34px;
}

.hero-copy {
  min-height: 600px;
}

.hero-logo {
  display: inline-flex;
  margin-bottom: 0;
}

.hero-text-block {
  margin-top: 86px;
}

.hero-logo img {
  display: block;
  width: 178px;
  height: auto;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10.5px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  max-width: 690px;
  font-size: clamp(44px, 5.15vw, 72px);
}

h2 {
  font-size: clamp(31px, 3.55vw, 48px);
}

h3 {
  font-size: 22px;
  line-height: 1.04;
}

.lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.22vw, 17px);
  line-height: 1.64;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
}

.hero-notes i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(142, 217, 205, 0.58);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #071014;
  background: linear-gradient(135deg, var(--text), #d8eee9 46%, var(--accent));
  box-shadow: 0 15px 38px rgba(142, 217, 205, 0.11);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
}

.btn-large {
  min-height: 44px;
  padding: 0 19px;
}

.hero-card,
.info-card,
.fit-panel,
.icon-grid article,
.rhythm-grid article,
.path-list article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: var(--radius);
  padding: 26px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  margin-top: 172px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -34% auto auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(142, 217, 205, 0.1);
  filter: blur(24px);
}

.card-topline,
.metric-label,
.card-number,
.path-list span,
.rhythm-grid article p {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 800;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.hero-metric {
  position: relative;
  z-index: 1;
  padding: 48px 0 30px;
}

.hero-metric strong {
  display: block;
  margin-top: 11px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3.2vw, 43px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-metric p {
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}

.mini-grid div {
  min-height: 98px;
  padding: 14px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.13);
  border: 1px solid var(--line);
}

.mini-grid strong {
  display: block;
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 13px;
}

.mini-grid span {
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 58px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-copy p,
.section-heading p,
.info-card p,
.icon-grid p,
.rhythm-grid span,
.path-list p,
.fit-intro p,
.footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.split-copy p:first-child {
  margin-top: 0;
}

.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 0;
}

.info-card {
  border-radius: var(--radius);
  padding: 28px;
}

.info-card h3 {
  margin: 15px 0 12px;
  font-size: 27px;
}

.accent-card {
  background: linear-gradient(145deg, rgba(142, 217, 205, 0.12), rgba(255, 255, 255, 0.034));
  border-color: rgba(142, 217, 205, 0.2);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.icon-grid article {
  border-radius: 20px;
  padding: 22px;
}

.icon-wrap,
.rhythm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(142, 217, 205, 0.095);
  border: 1px solid rgba(142, 217, 205, 0.22);
  color: var(--accent);
}

.icon-wrap svg,
.rhythm-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-grid h3 {
  margin-top: 19px;
  margin-bottom: 9px;
  font-size: 22px;
}

.rhythm-section {
  border-top: 1px solid var(--line);
}

.rhythm-grid {
  display: grid;
  gap: 12px;
}

.rhythm-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border-radius: 20px;
  padding: 22px;
}

.rhythm-grid article p {
  margin: 0 0 8px;
  color: var(--accent);
}

.rhythm-grid h3 {
  margin-bottom: 9px;
  font-size: 26px;
}

.path-section {
  border-top: 1px solid var(--line);
}

.path-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
}

.path-list article {
  border-radius: 20px;
  padding: 21px;
}

.path-list h3 {
  font-size: 20px;
  margin: 22px 0 10px;
}

.fit-section {
  padding-top: 0;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: 42px;
  align-items: center;
  border-radius: 30px;
  padding: clamp(28px, 4.2vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(142, 217, 205, 0.105), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024));
}

.fit-intro h2 {
  max-width: 700px;
}

.fit-intro p {
  max-width: 560px;
  margin: 18px 0 24px;
}

.fit-checks {
  display: grid;
  gap: 11px;
}

.fit-checks div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 15px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
}

.fit-checks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #071014;
  background: var(--accent);
  font-size: 12px;
  flex: 0 0 auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 136px;
}

.footer p {
  margin: 4px 0;
  font-size: 12.5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.instagram-link:hover {
  color: var(--text);
  border-color: rgba(142, 217, 205, 0.34);
  background: rgba(142, 217, 205, 0.08);
}

.instagram-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #071014;
  background: linear-gradient(135deg, var(--text), var(--accent));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 28px, 720px);
  }

  .top-actions {
    position: static;
    justify-content: flex-start;
    margin-top: 22px;
  }

  .hero,
  .split-section,
  .two-cards,
  .fit-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-text-block {
    margin-top: 58px;
  }

  .hero-card {
    min-height: auto;
    margin-top: 0;
  }

  .icon-grid,
  .path-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 520px);
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    gap: 30px;
    padding-top: 22px;
  }

  .top-actions {
    gap: 8px;
  }

  .top-actions .btn {
    min-height: 36px;
    padding: 0 13px;
    font-size: 11.5px;
  }

  .hero-text-block {
    margin-top: 46px;
  }

  .hero-logo img {
    width: 154px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(31px, 8.7vw, 42px);
  }

  .lead {
    font-size: 15px;
  }

  .mini-grid,
  .icon-grid,
  .path-list {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    display: grid;
    gap: 11px;
  }

  .info-card,
  .icon-grid article,
  .rhythm-grid article,
  .path-list article {
    padding: 22px;
  }

  .info-card h3 {
    font-size: 26px;
  }

  .rhythm-grid article {
    grid-template-columns: 1fr;
  }

  .fit-panel {
    gap: 28px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }
}
