:root {
  --bg: #2f201b;
  --bg-2: #4d4d4c;
  --surface: rgba(77, 77, 76, 0.7);
  --surface-strong: #4d4d4c;
  --surface-soft: #737373;
  --text: #fafafa;
  --muted: #d6c7ba;
  --highlight: #d9b9a0;
  --line: rgba(214, 199, 186, 0.28);
  --accent: #507882;
  --accent-2: #385f69;
  --success: #507882;
  --danger: #d9b9a0;
}

body[data-theme="light"] {
  --bg: #fafafa;
  --bg-2: #d6c7ba;
  --surface: rgba(250, 250, 250, 0.82);
  --surface-strong: #fafafa;
  --surface-soft: #f1ece7;
  --text: #2f201b;
  --muted: #4d4d4c;
  --highlight: #385f69;
  --line: rgba(77, 77, 76, 0.22);
  --accent: #507882;
  --accent-2: #385f69;
  --success: #385f69;
  --danger: #737373;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at 12% -8%, rgba(80, 120, 130, 0.14), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(214, 199, 186, 0.35), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(56, 95, 105, 0.1), transparent 50%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgba(80, 120, 130, 0.24), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(214, 199, 186, 0.16), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(56, 95, 105, 0.2), transparent 50%),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -180px;
  left: -140px;
  background: rgba(80, 120, 130, 0.24);
}

body::after {
  right: -180px;
  bottom: -220px;
  background: rgba(214, 199, 186, 0.16);
}

body[data-theme="light"]::before {
  background: rgba(80, 120, 130, 0.16);
}

body[data-theme="light"]::after {
  background: rgba(214, 199, 186, 0.28);
}

button.theme-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

button.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.72);
  box-shadow: none;
  filter: none;
}

.section-nav {
  position: sticky;
  top: 10px;
  z-index: 9;
  width: min(1160px, 92vw);
  margin: 14px auto 18px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(8px);
}

.section-nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.section-nav a:hover {
  border-color: rgba(80, 120, 130, 0.72);
}

.section-nav .section-nav__legal {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.section-nav .section-nav__legal:hover {
  border-color: rgba(80, 120, 130, 0.72);
}

.section-nav .section-nav__book {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.grain {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero,
.benefits,
.process,
.linktree {
  position: relative;
  z-index: 2;
}

.hero {
  width: min(1160px, 92vw);
  margin: 24px auto 22px;
  display: grid;
  gap: 18px;
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  align-items: start;
}

.hero__copy,
.hero__media {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border: 1px solid rgba(80, 120, 130, 0.35);
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--text);
  background: rgba(80, 120, 130, 0.2);
}

.hero__audience {
  margin: 2px 0 14px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--highlight);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5.2vw, 4.35rem);
  line-height: 0.96;
  max-width: 10ch;
  color: var(--text);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero__claim {
  margin: 14px 0 0;
  max-width: 30ch;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--highlight);
}

.lead {
  margin-top: 14px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 56ch;
}

.hero__cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__cta a {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.hero__cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  border: 1px solid transparent;
}

.hero__cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(56, 95, 105, 0.3);
}

.hero__cta-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero__cta-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.75);
}

.hero__benefits {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.hero__benefits li {
  line-height: 1.45;
}

.hero__cta-book {
  box-shadow: 0 10px 22px rgba(56, 95, 105, 0.38);
}

.waitlist__altcta {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist__altcta a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero__portrait {
  margin: 0;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.hero__stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero__stats div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(6px);
}

body[data-theme="light"] .hero__stats div,
body[data-theme="light"] .benefits article,
body[data-theme="light"] .process__steps article {
  background: linear-gradient(160deg, rgba(250, 250, 250, 0.9), rgba(214, 199, 186, 0.3));
}

.hero__stats strong {
  font-size: 1.14rem;
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__stats a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 199, 186, 0.42);
  padding-bottom: 1px;
  transition: border-color 0.16s ease, color 0.16s ease;
}

.hero__stats a:hover {
  border-color: rgba(80, 120, 130, 0.8);
  color: var(--text);
}

.hero__rating-note {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.card,
.process,
.linktree {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card {
  padding: 24px;
}

.card h2,
.process h2 {
  margin: 0;
  color: var(--text);
}

.card h2,
.process h2 {
  font-size: 1.42rem;
}

.card__subtitle {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.membership-price {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 120, 130, 0.6);
  background: rgba(80, 120, 130, 0.2);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
}

.membership-points {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.membership-cta {
  margin-top: 6px;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(214, 199, 186, 0.38);
  background: rgba(77, 77, 76, 0.55);
  color: var(--text);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.94rem;
  font-family: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

body[data-theme="light"] input,
body[data-theme="light"] textarea {
  background: rgba(255, 255, 255, 0.9);
}

input::placeholder,
textarea::placeholder {
  color: rgba(214, 199, 186, 0.8);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(80, 120, 130, 0.9);
  box-shadow: 0 0 0 3px rgba(80, 120, 130, 0.22);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 3px 0 8px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
}

button,
.tree-btn {
  border-radius: 999px;
  font-weight: 800;
}

body[data-theme="light"] .tree-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

button {
  margin-top: 4px;
  border: 0;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(56, 95, 105, 0.38);
  filter: saturate(1.08);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.form-message {
  min-height: 1.2em;
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.benefits {
  width: min(1160px, 92vw);
  margin: 12px auto 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefits article,
.process__steps article {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

.benefits h3,
.process__steps h3,
.tree-btn span {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}

.benefits p,
.process__steps p,
.tree-btn small,
.linktree__quick a {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.91rem;
}

.process {
  width: min(1160px, 92vw);
  margin: 0 auto 28px;
  padding: 24px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process [role="tablist"] {
  margin: 14px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.process [role="tablist"] a {
  padding: 10px 16px;
  line-height: 1.2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.process [role="tablist"] a:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.75);
}

.process [role="tablist"] a[aria-selected="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(56, 95, 105, 0.38);
}

.process [role="tablist"] a[aria-selected="true"]:hover {
  border-color: transparent;
}

.process [role="tablist"] a:focus-visible {
  outline: 2px solid rgba(80, 120, 130, 0.8);
  outline-offset: 2px;
}

.process__steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, rgba(80, 120, 130, 0.9), rgba(56, 95, 105, 0.9));
  margin-bottom: 8px;
  box-shadow: 0 8px 16px rgba(56, 95, 105, 0.3);
}

.process .hero__cta {
  justify-content: center;
  margin-top: 18px;
}

.linktree {
  width: min(1160px, 92vw);
  margin: 0 auto 26px;
  padding: 24px;
}

.linktree__stack {
  display: grid;
  gap: 10px;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.journey-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.journey-card__meta {
  margin: 0 0 8px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journey-card h3 {
  margin: 0 0 8px;
}

.journey-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.45;
}

.journey-card__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.journey-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.linktree__aftercopy {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.tree-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  padding: 14px 16px;
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tree-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.75);
  box-shadow: 0 10px 22px rgba(56, 95, 105, 0.38);
}

.tree-btn--soft {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.linktree__quick {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.linktree__quick a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  transition: border-color 0.16s ease, transform 0.16s ease;
}

.linktree__quick a:hover {
  border-color: rgba(80, 120, 130, 0.75);
  transform: translateY(-1px);
}

.social-plan {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.social-plan__label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-plan__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.social-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 12px;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.social-item strong {
  font-size: 0.98rem;
}

.social-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.social-item:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.75);
}

.proof__badge {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: var(--surface-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.proof__badge a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 199, 186, 0.45);
}

.proof__badge a:hover {
  border-color: rgba(80, 120, 130, 0.75);
}

.site-footer {
  width: min(1160px, 92vw);
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__link {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 8px 14px;
  font-size: 0.86rem;
  line-height: 1.2;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__link:hover {
  border-color: rgba(80, 120, 130, 0.75);
}

.site-footer__link--instagram::before,
.site-footer__link--youtube::before,
.site-footer__link--spotify::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.site-footer__link--instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='24' x2='24' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23f58529'/%3E%3Cstop offset='0.45' stop-color='%23dd2a7b'/%3E%3Cstop offset='0.75' stop-color='%238133ee'/%3E%3Cstop offset='1' stop-color='%235154f6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='2' y='2' width='20' height='20' rx='6' fill='url(%23g)'/%3E%3Ccircle cx='12' cy='12' r='4.4' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Ccircle cx='17.4' cy='6.6' r='1.2' fill='%23fff'/%3E%3C/svg%3E");
}

.site-footer__link--youtube::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5' width='20' height='14' rx='4' fill='%23ff0000'/%3E%3Cpath d='M10 9.2 15.6 12 10 14.8Z' fill='%23fff'/%3E%3C/svg%3E");
}

.site-footer__link--spotify::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%231DB954'/%3E%3Cpath d='M7.3 9.8c3.6-1.1 7.4-.8 10.1.8' stroke='%23000' stroke-width='1.9' stroke-linecap='round' fill='none'/%3E%3Cpath d='M8 12.7c2.9-.9 5.9-.6 8 .7' stroke='%23000' stroke-width='1.7' stroke-linecap='round' fill='none'/%3E%3Cpath d='M8.8 15.1c2.2-.6 4.5-.4 6 .5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.legal-modal__panel {
  position: relative;
  width: min(760px, 92vw);
  max-height: 84vh;
  overflow: auto;
  margin: 8vh auto 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  padding: 20px;
  padding-top: 50px;
}

.legal-modal__panel p {
  margin: 0 0 12px;
  line-height: 1.5;
  color: var(--muted);
}

.legal-modal__panel h2 {
  margin: 0 0 12px;
}

.legal-modal__panel strong {
  color: var(--text);
}

.legal-modal__panel a {
  color: var(--text);
}

.legal-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.legal-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(80, 120, 130, 0.72);
}

.legal-modal__close:focus-visible {
  outline: 2px solid rgba(80, 120, 130, 0.8);
  outline-offset: 2px;
}

.hero__copy,
.card,
.benefits article,
.process,
.linktree {
  animation: fadeUp 0.7s ease both;
}

.card {
  animation-delay: 0.08s;
}

.benefits article:nth-child(2) {
  animation-delay: 0.05s;
}

.benefits article:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    gap: 20px;
    margin-top: 24px;
  }

  .hero__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__media {
    justify-content: flex-start;
  }

  .hero__portrait {
    max-width: 620px;
    aspect-ratio: 16 / 10;
  }

  .hero__stats,
  .journey__grid,
  .benefits,
  .process__steps,
  .social-plan__grid {
    grid-template-columns: 1fr;
  }

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

  .process [role="tablist"] {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .process [role="tablist"] a {
    width: 100%;
    text-align: center;
    padding: 11px 14px;
  }

  .linktree {
    width: min(1160px, 92vw);
  }

  .section-nav {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .section-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  button.theme-toggle {
    top: auto;
    bottom: 12px;
    right: 10px;
    padding: 8px 12px;
    font-size: 0.8rem;
    z-index: 11;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.94;
    text-wrap: pretty;
  }

  .hero__portrait {
    aspect-ratio: 4 / 5;
  }

  .hero__portrait img {
    object-position: center 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
