:root {
  --yellow: #ffd600;
  --yellow-soft: #ffe45d;
  --yellow-dark: #d8b500;

  --black: #070707;
  --black-soft: #0d0d0d;
  --surface: #111111;
  --surface-2: #171717;
  --surface-3: #1d1d1d;

  --white: #ffffff;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --muted-light: #c9c9c9;

  --border: rgba(255, 255, 255, .08);
  --border-yellow: rgba(255, 214, 0, .3);

  --container: 1180px;
  --radius: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100vh;

  background: var(--black);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}


/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid var(--border);

  background: rgba(7, 7, 7, .84);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 76px;

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

  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;

  gap: 6px;

  white-space: nowrap;

  font-weight: 900;
  line-height: 1;
}

.brand-name {
  font-size: 16px;
  letter-spacing: -.3px;
}

.brand-vip {
  color: var(--yellow);

  font-size: 24px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav a {
  color: var(--muted-light);

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

  transition:
    color .2s ease,
    transform .2s ease;
}

.nav a:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);
  border-radius: 11px;

  background: var(--surface);

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

  gap: 5px;

  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: #fff;

  transition: .2s ease;
}


/* BUTTONS */

.button {
  min-height: 52px;

  padding-inline: 28px;

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

  border: 1px solid transparent;
  border-radius: 12px;

  background: var(--yellow);
  color: #050505;

  font-weight: 900;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--yellow-soft);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;

  font-size: 14px;
}

.button-outline {
  border-color: rgba(255, 255, 255, .16);

  background: transparent;
  color: #fff;
}

.button-outline:hover {
  border-color: rgba(255, 214, 0, .5);
  background: rgba(255, 255, 255, .04);
}

.full-button {
  width: 100%;
}

.button-disabled {
  opacity: .76;
  cursor: default;
}

.button-disabled:hover {
  transform: none;
}




/* STORE DOWNLOADS */

.platform-downloads {
  margin-top: 24px;

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.platform-label {
  color: var(--muted-light);

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

.store-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}

.store-button {
  min-width: 178px;
  min-height: 58px;

  padding: 9px 16px;

  display: inline-flex;
  align-items: center;

  gap: 11px;

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

  background: #101010;
  color: #fff;

  box-shadow:
    inset 0 1px rgba(255, 255, 255, .04),
    0 12px 30px rgba(0, 0, 0, .18);

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.store-button:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 214, 0, .48);

  background: #151515;
}

.store-symbol {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 9px;

  font-size: 15px;
  font-weight: 900;
}

.android-symbol {
  background: rgba(255, 214, 0, .12);
  color: var(--yellow);
}

.apple-symbol {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.store-copy {
  display: flex;
  flex-direction: column;

  line-height: 1.05;
}

.store-copy small {
  color: #969696;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: .7px;
}

.store-copy strong {
  margin-top: 4px;

  font-size: 16px;
}


/* HERO */

.hero {
  position: relative;

  min-height: 820px;

  padding: 110px 0 120px;

  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.02fr .98fr;

  align-items: center;

  gap: 80px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-tag {
  color: var(--yellow);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 2.2px;
}

.hero h1 {
  max-width: 690px;

  margin-top: 18px;

  font-size: clamp(52px, 6vw, 82px);
  line-height: .98;

  letter-spacing: -4px;
}

.hero h1 span,
.section-heading h2 span,
.split-copy h2 span,
.secret-box h2 span,
.cta-box h2 span {
  color: var(--yellow);
}

.hero-description {
  max-width: 620px;

  margin-top: 28px;

  color: var(--muted-light);

  font-size: 19px;
}

.hero-signature {
  margin-top: 18px;

  color: #fff;

  font-weight: 800;
}

.hero-actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

.hero-proof {
  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  color: var(--muted);

  font-size: 13px;
}

.hero-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.hero-glow-one {
  width: 680px;
  height: 680px;

  right: -260px;
  top: -240px;

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

  filter: blur(120px);
}

.hero-glow-two {
  width: 380px;
  height: 380px;

  left: 40%;
  bottom: -240px;

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

  filter: blur(100px);
}


/* PRODUCT SHOWCASE */

.product-showcase {
  position: relative;

  min-height: 600px;

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

.showcase-orbit {
  position: absolute;

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

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

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

.device {
  position: absolute;

  width: 272px;
  height: 552px;

  padding: 10px;

  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 39px;

  background:
    linear-gradient(
      145deg,
      #292929,
      #111
    );

  box-shadow:
    0 40px 90px rgba(0, 0, 0, .65),
    inset 0 1px rgba(255, 255, 255, .08);
}

.device-back {
  left: 26px;

  transform: rotate(-7deg) scale(.91);

  opacity: .78;
}

.device-front {
  right: 26px;

  transform: rotate(5deg);

  z-index: 3;
}

.device-notch {
  position: absolute;
  z-index: 10;

  top: 19px;
  left: 50%;

  width: 88px;
  height: 24px;

  transform: translateX(-50%);

  border-radius: 20px;

  background: #030303;
}

.device-screen {
  height: 100%;

  padding: 61px 18px 24px;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(255, 214, 0, .08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #151515,
      #090909
    );

  overflow: hidden;
}

.screen-top {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #797979;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: .5px;
}

.screen-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--yellow);
}

.screen-heading {
  margin-top: 25px;

  display: flex;
  flex-direction: column;

  gap: 2px;
}

.screen-heading small {
  color: var(--yellow);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.screen-heading strong {
  font-size: 22px;
}

.abstract-metrics {
  margin-top: 22px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 9px;
}

.metric {
  height: 92px;

  padding: 15px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 16px;

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

.metric span {
  width: 45%;
  height: 6px;

  border-radius: 999px;

  background: #333;
}

.metric strong {
  width: 68%;
  height: 24px;

  border-radius: 8px;

  background: #252525;
}

.metric.highlighted {
  border-color: rgba(255, 214, 0, .22);

  background: rgba(255, 214, 0, .09);
}

.metric.highlighted strong {
  background: rgba(255, 214, 0, .55);
}

.abstract-list {
  margin-top: 24px;

  display: grid;

  gap: 11px;
}

.list-item {
  width: 100%;
  height: 48px;

  border-radius: 13px;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );
}

.list-item.short {
  width: 74%;
}

.chart {
  position: relative;

  height: 150px;

  margin-top: 28px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;

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

  color: var(--yellow);
}

.chart-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);

  background-size: 38px 32px;
}

.chart svg {
  position: absolute;

  left: 12px;
  right: 12px;
  bottom: 17px;

  width: calc(100% - 24px);
}

.progress-card {
  margin-top: 16px;

  padding: 17px;

  border-radius: 15px;

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

.progress-card span {
  color: var(--muted-light);

  font-size: 10px;
  font-weight: 700;
}

.progress-track {
  height: 7px;

  margin-top: 10px;

  border-radius: 999px;

  background: #292929;

  overflow: hidden;
}

.progress-fill {
  width: 76%;
  height: 100%;

  border-radius: inherit;

  background: var(--yellow);
}

.floating-badge {
  position: absolute;
  z-index: 8;

  min-width: 176px;

  padding: 13px 16px;

  display: flex;
  align-items: center;

  gap: 11px;

  border: 1px solid rgba(255, 214, 0, .22);
  border-radius: 16px;

  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(10px);

  box-shadow: 0 16px 38px rgba(0, 0, 0, .35);
}

.floating-badge-one {
  top: 72px;
  right: -5px;
}

.floating-badge-two {
  bottom: 52px;
  left: 0;
}

.badge-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 11px;

  background: var(--yellow);
  color: #000;

  font-weight: 900;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge small {
  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1px;
}

.floating-badge strong {
  font-size: 13px;
}


/* POSITIONING */

.positioning-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--black-soft);
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.positioning-grid article {
  min-height: 150px;

  padding: 30px 24px;

  display: flex;
  align-items: center;

  gap: 18px;

  border-right: 1px solid var(--border);
}

.positioning-grid article:first-child {
  border-left: 1px solid var(--border);
}

.positioning-number {
  color: var(--yellow);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1px;
}

.positioning-grid strong {
  font-size: 15px;
}

.positioning-grid p {
  margin-top: 4px;

  color: var(--muted);

  font-size: 12px;
}


/* SECTIONS */

.section {
  padding: 110px 0;
}

.section-dark,
.pricing-section {
  background: var(--black-soft);
}

.section-heading {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}

.section-heading h2,
.split-copy h2,
.secret-box h2,
.cta-box h2 {
  margin-top: 14px;

  font-size: clamp(39px, 5vw, 59px);
  line-height: 1.04;

  letter-spacing: -2.4px;
}

.section-heading p,
.split-copy > p,
.secret-box p,
.cta-box > p {
  margin-top: 21px;

  color: var(--muted);

  font-size: 17px;
}

.section-heading p {
  max-width: 650px;

  margin-inline: auto;
}


/* BENEFITS */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.benefit-card {
  min-height: 310px;

  padding: 34px;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: var(--surface);

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-yellow);
}

.benefit-featured {
  border-color: rgba(255, 214, 0, .26);

  background:
    linear-gradient(
      145deg,
      rgba(255, 214, 0, .12),
      var(--surface) 56%
    );
}

.benefit-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 34px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 214, 0, .24);
  border-radius: 15px;

  background: rgba(255, 214, 0, .1);
  color: var(--yellow);

  font-size: 22px;
  font-weight: 900;
}

.benefit-card h3 {
  font-size: 23px;
}

.benefit-card p {
  margin-top: 13px;

  color: var(--muted);
}


/* SPLIT */

.split-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;

  align-items: center;

  gap: 90px;
}

.split-reverse {
  grid-template-columns: 1.05fr .95fr;
}

.split-copy > p {
  max-width: 590px;
}

.check-list {
  margin-top: 30px;

  display: grid;

  gap: 14px;

  list-style: none;
}

.check-list li {
  position: relative;

  padding-left: 31px;

  color: var(--muted-light);
}

.check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--yellow);

  font-weight: 900;
}


/* CONCEPT PERSONAL */

.concept-card {
  position: relative;

  padding: 29px;

  border: 1px solid var(--border);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 214, 0, .1),
      transparent 32%
    ),
    var(--surface);

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

.concept-top {
  display: flex;
  flex-direction: column;

  gap: 4px;

  padding-bottom: 22px;

  border-bottom: 1px solid var(--border);
}

.concept-top span {
  color: var(--yellow);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.4px;
}

.concept-top strong {
  font-size: 23px;
}

.concept-main {
  margin-top: 22px;

  display: grid;
  grid-template-columns: 1fr 130px;

  gap: 18px;
}

.concept-large,
.mini-stat {
  border-radius: 19px;

  background: var(--surface-2);
}

.concept-large {
  min-height: 270px;

  padding: 20px;
}

.concept-large > small {
  color: var(--muted);

  font-weight: 700;
}

.generic-row {
  min-height: 59px;

  margin-top: 15px;
  padding: 0 14px;

  display: grid;
  grid-template-columns: 48px 1fr 12px;
  align-items: center;

  gap: 11px;

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

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

.generic-time {
  color: var(--muted);

  font-size: 10px;
  font-weight: 700;
}

.generic-line {
  width: 86%;
  height: 7px;

  border-radius: 999px;

  background: #343434;
}

.generic-line.medium {
  width: 66%;
}

.generic-line.short {
  width: 48%;
}

.generic-status {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--yellow);
}

.concept-side {
  display: grid;

  gap: 16px;
}

.mini-stat {
  min-height: 124px;

  padding: 19px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mini-stat small {
  color: var(--muted);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.mini-stat strong {
  color: var(--yellow);

  font-size: 30px;
}


/* STUDENT CONCEPT */

.student-concept {
  position: relative;

  min-height: 470px;

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

.student-ring {
  width: 270px;
  height: 270px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    conic-gradient(
      var(--yellow) 0 75%,
      #242424 75% 100%
    );

  box-shadow: 0 0 80px rgba(255, 214, 0, .09);
}

.student-ring::before {
  content: "";

  position: absolute;

  width: 230px;
  height: 230px;

  border-radius: 50%;

  background: var(--black);
}

.student-ring-inner {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  text-align: center;
}

.student-ring-inner strong {
  font-size: 50px;
  line-height: 1;
}

.student-ring-inner span {
  margin-top: 8px;

  color: var(--muted);

  font-size: 12px;
}

.student-concept-card {
  position: absolute;

  right: 4px;
  bottom: 20px;

  width: 270px;

  padding: 24px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: rgba(20, 20, 20, .96);

  box-shadow: 0 30px 60px rgba(0, 0, 0, .32);
}

.student-concept-card small {
  color: var(--yellow);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.student-concept-card strong {
  display: block;

  margin-top: 5px;
}

.student-bars {
  height: 85px;

  margin-top: 24px;

  display: flex;
  align-items: end;

  gap: 9px;
}

.student-bars span {
  width: 100%;
  height: var(--height);

  border-radius: 7px 7px 2px 2px;

  background:
    linear-gradient(
      180deg,
      var(--yellow),
      rgba(255, 214, 0, .27)
    );
}


/* SECRET */

.secret-section {
  padding-top: 40px;
}

.secret-box {
  min-height: 400px;

  padding: 62px;

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;

  gap: 60px;

  border: 1px solid rgba(255, 214, 0, .2);
  border-radius: 32px;

  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 214, 0, .1),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      rgba(255, 214, 0, .07),
      #111 55%
    );

  overflow: hidden;
}

.secret-visual {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 14px;
}

.lock-circle {
  width: 120px;
  height: 120px;

  margin-bottom: 20px;

  display: grid;
  place-items: center;

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

  background: rgba(255, 214, 0, .09);
  color: var(--yellow);

  font-size: 40px;
}

.secret-line {
  width: 240px;
  height: 8px;

  border-radius: 999px;

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

.secret-line.short {
  width: 180px;
}

.secret-line.tiny {
  width: 120px;
}


/* PRICING */

.pricing-grid {
  max-width: 860px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 24px;
}

.pricing-card {
  position: relative;

  padding: 40px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: var(--surface);
}

.pricing-featured {
  border-color: rgba(255, 214, 0, .72);

  background:
    linear-gradient(
      155deg,
      rgba(255, 214, 0, .12),
      var(--surface) 44%
    );
}

.popular-label {
  position: absolute;

  top: 24px;
  right: 24px;

  padding: 7px 10px;

  border-radius: 999px;

  background: var(--yellow);
  color: #000;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .5px;
}

.plan-top {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.plan-name {
  font-size: 18px;
  font-weight: 900;
}

.plan-label {
  color: var(--muted);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.price {
  margin: 25px 0;

  display: flex;
  align-items: flex-end;
}

.price small {
  margin-right: 6px;
  margin-bottom: 10px;
}

.price strong {
  font-size: 52px;
  line-height: 1;
}

.price span {
  margin-left: 6px;

  color: var(--muted);
}

.pricing-card > p {
  min-height: 80px;

  color: var(--muted);
}

.pricing-card ul {
  margin: 29px 0;

  display: grid;

  gap: 12px;

  list-style: none;
}

.pricing-card li {
  color: var(--muted-light);
}


/* CTA */

.final-cta {
  padding: 90px 0 110px;

  background: var(--black-soft);
}

.cta-box {
  position: relative;

  padding: 82px 34px;

  border: 1px solid rgba(255, 214, 0, .18);
  border-radius: 34px;

  background:
    radial-gradient(
      circle at 50% 110%,
      rgba(255, 214, 0, .12),
      transparent 35%
    ),
    var(--surface);

  text-align: center;

  overflow: hidden;
}

.cta-box h2 {
  max-width: 820px;

  margin-inline: auto;
}

.cta-box > p {
  max-width: 660px;

  margin-inline: auto;
}

.center-actions {
  justify-content: center;
}


/* FOOTER */

.footer {
  padding: 70px 0 30px;

  border-top: 1px solid var(--border);

  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;

  gap: 70px;
}

.footer-brand p {
  max-width: 400px;

  margin-top: 17px;

  color: var(--muted);

  font-size: 14px;
}

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

  gap: 11px;
}

.footer-links strong {
  margin-bottom: 5px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);

  font-size: 13px;
}

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

.footer-bottom {
  margin-top: 58px;
  padding-top: 27px;

  border-top: 1px solid var(--border);

  color: #666;

  font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-layout {
    gap: 64px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-copy {
    max-width: 750px;

    margin-inline: auto;

    text-align: center;
  }

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

  .hero-actions,
  .hero-proof,
  .store-buttons {
    justify-content: center;
  }

  .platform-downloads {
    align-items: center;
  }

  .product-showcase {
    width: min(100%, 620px);

    margin-inline: auto;
  }

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

  .positioning-grid article:nth-child(3) {
    border-left: 1px solid var(--border);
  }

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

  .benefit-card {
    min-height: auto;
  }

  .split-copy {
    max-width: 700px;
  }

  .concept-card,
  .student-concept {
    width: min(100%, 650px);

    margin-inline: auto;
  }

  .split-reverse .student-concept {
    order: 2;
  }

  .split-reverse .split-copy {
    order: 1;
  }

  .secret-box {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .secret-box p {
    max-width: 680px;

    margin-inline: auto;
  }

}


@media (max-width: 760px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;

    left: 14px;
    right: 14px;
    top: 86px;

    padding: 20px;

    display: flex;
    align-items: stretch;
    flex-direction: column;

    gap: 0;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: rgba(14, 14, 14, .98);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .5);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: .2s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .nav a {
    padding: 13px 10px;

    border-bottom: 1px solid var(--border);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;

    padding: 64px 0 82px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
    letter-spacing: -2.7px;
  }

  .hero-description {
    font-size: 17px;
  }

  .product-showcase {
    min-height: 520px;
  }

  .device {
    width: 225px;
    height: 457px;
  }

  .device-back {
    left: 0;
  }

  .device-front {
    right: 0;
  }

  .floating-badge {
    min-width: 154px;

    padding: 11px 13px;
  }

  .floating-badge-one {
    right: 0;
    top: 48px;
  }

  .floating-badge-two {
    bottom: 34px;
  }

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

  .positioning-grid article,
  .positioning-grid article:nth-child(3) {
    border-left: 1px solid var(--border);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

}


@media (max-width: 560px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-vip {
    font-size: 20px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .split-copy h2,
  .secret-box h2,
  .cta-box h2 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .store-buttons {
    width: 100%;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .platform-downloads {
    width: 100%;
  }

  .platform-availability {
    flex-direction: column;

    gap: 9px;
  }

  .hero-proof {
    flex-direction: column;

    gap: 7px;
  }

  .product-showcase {
    min-height: 430px;
  }

  .showcase-orbit {
    display: none;
  }

  .device {
    width: 186px;
    height: 378px;

    padding: 7px;

    border-radius: 31px;
  }

  .device-notch {
    top: 14px;

    width: 64px;
    height: 18px;
  }

  .device-screen {
    padding: 49px 12px 15px;

    border-radius: 25px;
  }

  .screen-heading {
    margin-top: 17px;
  }

  .screen-heading strong {
    font-size: 16px;
  }

  .screen-heading small,
  .screen-top {
    font-size: 6px;
  }

  .abstract-metrics {
    margin-top: 15px;

    gap: 6px;
  }

  .metric {
    height: 62px;

    padding: 10px;

    border-radius: 11px;
  }

  .metric strong {
    height: 15px;
  }

  .abstract-list {
    margin-top: 15px;

    gap: 7px;
  }

  .list-item {
    height: 33px;

    border-radius: 9px;
  }

  .chart {
    height: 102px;

    margin-top: 18px;
  }

  .progress-card {
    margin-top: 10px;

    padding: 11px;
  }

  .floating-badge {
    display: none;
  }

  .concept-card {
    padding: 18px;
  }

  .concept-main {
    grid-template-columns: 1fr;
  }

  .concept-side {
    grid-template-columns: 1fr 1fr;
  }

  .mini-stat {
    min-height: 100px;
  }

  .student-concept {
    min-height: 430px;
  }

  .student-ring {
    width: 220px;
    height: 220px;
  }

  .student-ring::before {
    width: 186px;
    height: 186px;
  }

  .student-concept-card {
    right: 0;

    width: 230px;
  }

  .secret-box {
    padding: 48px 24px;
  }

  .pricing-card {
    padding: 31px 23px;
  }

  .popular-label {
    position: static;

    width: fit-content;

    margin-bottom: 18px;
  }

  .cta-box {
    padding: 65px 22px;
  }

}


/* SEO GUIDE CARDS */

.seo-guides-section {
  background: var(--black);
}

.seo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.seo-guide-card {
  min-height: 290px;

  padding: 32px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(255, 214, 0, .035),
      var(--surface) 55%
    );

  transition:
    transform .22s ease,
    border-color .22s ease;
}

.seo-guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 214, 0, .38);
}

.seo-guide-number {
  color: var(--yellow);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.5px;
}

.seo-guide-card h3 {
  margin-top: 24px;

  font-size: 23px;
  line-height: 1.15;
}

.seo-guide-card p {
  margin-top: 13px;

  color: var(--muted);
}

.seo-guide-card strong {
  margin-top: auto;
  padding-top: 25px;

  color: var(--yellow);

  font-size: 13px;
}


/* SEO LANDING PAGES */

.seo-page-hero {
  position: relative;

  padding: 105px 0 80px;

  overflow: hidden;
}

.seo-page-hero::after {
  content: "";

  position: absolute;

  width: 560px;
  height: 560px;

  right: -260px;
  top: -260px;

  border-radius: 50%;

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

  filter: blur(110px);

  pointer-events: none;
}

.seo-page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  margin-bottom: 28px;

  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  color: var(--muted);

  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.seo-page-hero h1 {
  max-width: 850px;

  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;

  letter-spacing: -3px;
}

.seo-page-hero h1 span {
  color: var(--yellow);
}

.seo-page-lead {
  max-width: 760px;

  margin-top: 25px;

  color: var(--muted-light);

  font-size: 19px;
}

.seo-content {
  padding: 70px 0 110px;

  background: var(--black-soft);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;

  gap: 70px;

  align-items: start;
}

.seo-article {
  max-width: 780px;
}

.seo-article section + section {
  margin-top: 52px;
}

.seo-article h2 {
  margin-bottom: 16px;

  font-size: 33px;
  line-height: 1.1;

  letter-spacing: -1px;
}

.seo-article h3 {
  margin-top: 26px;
  margin-bottom: 10px;

  font-size: 21px;
}

.seo-article p {
  color: var(--muted-light);
}

.seo-article p + p {
  margin-top: 16px;
}

.seo-article ul {
  margin-top: 20px;

  display: grid;

  gap: 12px;

  list-style: none;
}

.seo-article li {
  position: relative;

  padding-left: 28px;

  color: var(--muted-light);
}

.seo-article li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--yellow);

  font-weight: 900;
}

.seo-sidebar {
  position: sticky;
  top: 105px;

  padding: 28px;

  border: 1px solid var(--border-yellow);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 214, 0, .09),
      var(--surface) 52%
    );
}

.seo-sidebar small {
  color: var(--yellow);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.2px;
}

.seo-sidebar h2 {
  margin-top: 10px;

  font-size: 25px;
  line-height: 1.1;
}

.seo-sidebar p {
  margin-top: 13px;

  color: var(--muted);

  font-size: 14px;
}

.seo-sidebar .store-buttons {
  margin-top: 22px;

  flex-direction: column;
}

.seo-sidebar .store-button {
  width: 100%;
  min-width: 0;
}

.related-guides {
  margin-top: 34px;
  padding-top: 25px;

  border-top: 1px solid var(--border);
}

.related-guides strong {
  display: block;

  margin-bottom: 12px;

  font-size: 13px;
}

.related-guides a {
  display: block;

  padding: 8px 0;

  color: var(--muted-light);

  font-size: 13px;
}

.related-guides a:hover {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .seo-guide-grid {
    grid-template-columns: 1fr;
  }

  .seo-guide-card {
    min-height: auto;
  }

  .seo-content-grid {
    grid-template-columns: 1fr;
  }

  .seo-sidebar {
    position: static;

    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .seo-page-hero {
    padding: 70px 0 60px;
  }

  .seo-page-hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .seo-page-lead {
    font-size: 17px;
  }

  .seo-content {
    padding: 55px 0 80px;
  }
}


/* CONSISTÊNCIA VISUAL ENTRE HOME E PÁGINAS INTERNAS */

.seo-page-hero {
  min-height: 520px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 84% 8%,
      rgba(255, 214, 0, .08),
      transparent 30%
    ),
    var(--black);
}

.seo-page-hero .section-tag {
  display: inline-block;
}

.seo-page-hero .hero-actions {
  margin-top: 32px;
}

.seo-page-hero + .seo-content {
  border-top: 1px solid var(--border);
}

.seo-content {
  background:
    linear-gradient(
      180deg,
      var(--black-soft),
      var(--black) 100%
    );
}

.seo-sidebar {
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.footer-grid {
  align-items: start;
}

@media (max-width: 900px) {
  .seo-page-hero {
    min-height: auto;
  }
}


/* PÁGINAS INTERNAS — MESMO HERO DA HOME */

.internal-hero {
  min-height: 760px;
  padding-top: 86px;
  padding-bottom: 95px;
}

.internal-breadcrumbs {
  margin-bottom: 20px;
}

.internal-hero + .seo-content {
  border-top: 1px solid var(--border);
}

.internal-hero .product-showcase {
  min-height: 560px;
}

.internal-hero .hero-description {
  max-width: 650px;
}

@media (max-width: 1000px) {
  .internal-hero {
    min-height: auto;
  }

  .internal-breadcrumbs {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .internal-hero {
    padding-top: 58px;
    padding-bottom: 74px;
  }
}


/* LEGAL PAGES */

.legal-hero {
  padding: 110px 0 58px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 214, 0, .07), transparent 30%),
    var(--black);
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  padding: 70px 0 110px;
  background: var(--black-soft);
}

.legal-article {
  max-width: 860px;
}

.legal-article section + section {
  margin-top: 48px;
}

.legal-article h2 {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.15;
}

.legal-article p {
  color: var(--muted-light);
}

.legal-article p + p {
  margin-top: 14px;
}

.legal-article ul {
  margin-top: 18px;
  display: grid;
  gap: 11px;
  list-style: none;
}

.legal-article li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-light);
}

.legal-article li::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--yellow);
  font-weight: 900;
}

@media (max-width: 560px) {
  .legal-hero {
    padding: 78px 0 48px;
  }

  .legal-content {
    padding: 55px 0 80px;
  }
}
