@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("../fonts/Syne.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fbfaff;
  --surface: #ffffff;
  --soft: #f6f4ff;
  --text: #171a22;
  --muted: #5d6472;
  --line: rgba(23, 26, 34, 0.1);
  --line-strong: rgba(23, 26, 34, 0.16);
  --photo-1: #7c3aed;
  --photo-2: #c4b5fd;
  --dating-1: #f43f5e;
  --dating-2: #fda4af;
  --dance-1: #f59e0b;
  --dance-2: #fde047;
  --brand-grad: linear-gradient(90deg, #7c3aed, #f43f5e, #f59e0b);
  --shadow: 0 20px 45px rgba(23, 26, 34, 0.08);
  --shadow-soft: 0 12px 30px rgba(23, 26, 34, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Syne", "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.12), transparent 22%),
    var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}
main {
  flex: 1 0 auto;
  min-width: 0;
  max-width: 100%;
}
img {
  display: block;
  max-width: 100%;
}
[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}
[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}
[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.96) !important;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
}
[hidden] {
  display: none;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section {
  padding: 28px 0;
}
.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-grad);
}
.kicker::after {
  content: "";
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(23, 26, 34, 0.35) 1px, transparent 1.5px) 0 0 / 6px 6px repeat-x;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  max-width: 16ch;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.lead {
  font-size: clamp(1rem, 2vw, 1.16rem);
  color: var(--muted);
  max-width: 60ch;
}
.micro {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}
.grad-text {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #f43f5e 55%, #f59e0b);
  color: #fff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-outline {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-photo {
  background: linear-gradient(135deg, var(--photo-1), var(--photo-2));
  color: #fff;
}
.btn-dating {
  background: linear-gradient(135deg, var(--dating-1), var(--dating-2));
  color: #fff;
}
.btn-dance {
  background: linear-gradient(135deg, var(--dance-1), var(--dance-2));
  color: #171a22;
}
.btn-block {
  width: 100%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--brand-grad);
  opacity: 0.8;
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.logo span,
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.logo-name {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.3em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.08);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
  flex-shrink: 0;
}
.header-notice {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 26, 34, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.75);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-line + .menu-line {
  margin-top: 0;
}
.site-header.nav-open .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .menu-line:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.hero {
  padding-top: 34px;
}
.hero-board {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: start;
}
.hero-copy {
  padding: 18px 0;
}
.hero-actions,
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}
.thanks-actions.center {
  justify-content: center;
  margin-top: 26px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.chip-link,
.static-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
}
.chip-link.photo,
.photo .static-chip {
  border-color: rgba(124, 58, 237, 0.28);
  background: rgba(124, 58, 237, 0.08);
}
.chip-link.dating,
.dating .static-chip {
  border-color: rgba(244, 63, 94, 0.28);
  background: rgba(244, 63, 94, 0.08);
}
.chip-link.dance,
.dance .static-chip {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(245, 158, 11, 0.1);
}
.request-card {
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(244, 63, 94, 0.42), rgba(245, 158, 11, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.request-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(124, 58, 237, 0.18) 8px, transparent 9px) 0 0 / 24px 24px;
  opacity: 0.7;
  pointer-events: none;
}
.request-visual {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.request-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.request-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
.request-form {
  padding: 22px;
}
.request-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.request-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap.full {
  grid-column: 1 / -1;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}
.input-wrap input,
.input-wrap select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px 0 44px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-wrap input:focus,
.input-wrap select:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.select-wrap select {
  appearance: none;
  padding-right: 38px;
}
.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  color: var(--muted);
  pointer-events: none;
}
.check-line,
.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.check-line input,
.check-field input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--photo-1);
}
.check-line a,
.check-field a {
  color: inherit;
  text-decoration: underline;
}
.request-submit {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #f43f5e 55%, #f59e0b);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.request-submit:hover {
  transform: translateY(-2px);
}
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(124, 58, 237, 0.06),
      rgba(124, 58, 237, 0.06) 18px,
      rgba(255, 255, 255, 0) 18px,
      rgba(255, 255, 255, 0) 36px
    ),
    rgba(255, 255, 255, 0.72);
}
.hero-strip span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.course-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-bottom: 22px;
}
.course-panel:last-child {
  margin-bottom: 0;
}
.course-panel.reverse .course-media {
  order: 2;
}
.course-panel.reverse .course-body {
  order: 1;
}
.course-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.course-media img,
.spotlight-media img,
.page-hero-media img,
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-body {
  padding: 28px;
  position: relative;
}
.course-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}
.photo .course-body::before,
.photo .course-num {
  background: linear-gradient(90deg, var(--photo-1), var(--photo-2));
}
.dating .course-body::before,
.dating .course-num {
  background: linear-gradient(90deg, var(--dating-1), var(--dating-2));
}
.dance .course-body::before,
.dance .course-num {
  background: linear-gradient(90deg, var(--dance-1), var(--dance-2));
}
.course-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.dance .course-num {
  color: #171a22;
}
.ticks {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
}
.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}
.ticks span {
  font-weight: 800;
}
.photo .ticks span {
  color: var(--photo-1);
}
.dating .ticks span {
  color: var(--dating-1);
}
.dance .ticks span {
  color: var(--dance-1);
}
.method {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.method-card i {
  font-size: 1.35rem;
  margin-bottom: 14px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.journey-panel {
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.08), rgba(244, 63, 94, 0.07), rgba(245, 158, 11, 0.09)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(124, 58, 237, 0.4), rgba(244, 63, 94, 0.35), rgba(245, 158, 11, 0.4));
}
.journey-step {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.step-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(23, 26, 34, 0.12);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 26px;
  align-items: center;
}
.spotlight-grid.reverse {
  grid-template-columns: 1.06fr 0.94fr;
}
.spotlight-grid.reverse .spotlight-media {
  order: 2;
}
.spotlight-grid.reverse .spotlight-content {
  order: 1;
}
.spotlight-media,
.page-hero-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mentor-grid,
.review-grid,
.facts-grid {
  display: grid;
  gap: 18px;
}
.mentor-grid,
.review-grid,
.facts-grid {
  grid-template-columns: repeat(3, 1fr);
}
.mentor-card,
.review-card,
.fact-card,
.outcome-panel,
.faq-panel,
.info-panel,
.data-card,
.thanks-card,
.step-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.mentor-card,
.review-card,
.fact-card {
  padding: 22px;
}
.mentor-photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--brand-grad) border-box;
}
.mentor-role {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  font-weight: 800;
}
.review-stars {
  letter-spacing: 0.16em;
  color: var(--dance-1);
}
.review-name {
  margin-top: 14px;
  font-weight: 800;
  color: var(--muted);
}
.note-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(244, 63, 94, 0.28), rgba(245, 158, 11, 0.3)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
}
.note-highlight i {
  color: var(--photo-1);
  margin-top: 2px;
}
.note-highlight p {
  font-size: 0.9rem;
  color: var(--muted);
}
.note-highlight a {
  color: inherit;
  text-decoration: underline;
}
.finale-panel {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.55), rgba(244, 63, 94, 0.45), rgba(245, 158, 11, 0.5)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px 24px;
}
.finale-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}
.page-hero {
  padding-top: 30px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 26px;
  align-items: center;
}
.page-hero-copy {
  padding: 12px 0;
}
.page-hero.photo {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.5);
}
.page-hero.dating {
  background:
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.5);
}
.page-hero.dance {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.5);
}
.fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(244, 63, 94, 0.1), rgba(245, 158, 11, 0.14));
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.outcome-panel {
  padding: 24px;
}
.lab-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 22px;
  align-items: start;
}
.lab-info,
.faq-panel {
  padding: 24px;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.accordion summary::after {
  content: "＋";
  color: var(--muted);
}
.accordion[open] summary::after {
  content: "－";
}
.accordion p {
  padding-bottom: 16px;
  color: var(--muted);
}
.form-shell {
  max-width: 900px;
  margin-inline: auto;
}
.standard-form {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(244, 63, 94, 0.35), rgba(245, 158, 11, 0.4)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  padding: 24px;
  border-radius: var(--radius-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1 / -1;
}
.field span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea {
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.thanks-hero {
  padding-top: 36px;
  background:
    radial-gradient(circle at top center, rgba(124, 58, 237, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.14), transparent 26%),
    transparent;
}
.thanks-card {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  padding: 44px 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(244, 63, 94, 0.35), rgba(245, 158, 11, 0.4)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}
.thanks-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-soft);
}
.thanks-symbol {
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 14px;
}
.thanks-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 12px;
}
.thanks-mail {
  color: var(--muted);
}
.thanks-mail strong {
  color: var(--text);
}
.data-card {
  max-width: 920px;
  margin-inline: auto;
  padding: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(244, 63, 94, 0.25), rgba(245, 158, 11, 0.3)) border-box;
  border: 1px solid transparent;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.data-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}
.data-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(244, 63, 94, 0.1), rgba(245, 158, 11, 0.14));
  color: var(--photo-1);
  flex-shrink: 0;
}
.data-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.data-value {
  font-weight: 700;
  word-break: break-word;
  white-space: pre-line;
}
.thanks-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  padding: 22px;
}
.info-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.info-panel {
  padding: 24px;
}
.site-footer {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  padding-top: 34px;
  font-size: 0.95rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-grad);
  opacity: 0.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tag {
  margin-top: 12px;
  color: var(--muted);
}
.footer-legal {
  display: grid;
  gap: 8px;
}
.footer-legal a,
.footer-col p {
  color: var(--muted);
}
.footer-legal a:hover {
  color: var(--text);
}
.footer-col p {
  margin-bottom: 8px;
}
.footer-disclaimer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-disclaimer p {
  font-size: 0.9rem;
  color: #7a8190;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 22px;
}
.footer-bottom p {
  font-size: 0.9rem;
  color: var(--muted);
}
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 70;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.legal-content {
  max-width: 800px;
  margin: 28px auto;
  padding: 40px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  word-break: break-word;
}
.last-updated {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.legal-content h1 {
  font-size: 2rem;
  max-width: none;
  margin-bottom: 12px;
}
.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.legal-content li {
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  .hero-board,
  .spotlight-grid,
  .spotlight-grid.reverse,
  .page-hero-grid,
  .lab-grid,
  .outcomes-grid,
  .info-panels {
    grid-template-columns: 1fr;
  }
  .method-grid,
  .journey-track,
  .thanks-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .mentor-grid,
  .review-grid,
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .course-panel,
  .course-panel.reverse {
    grid-template-columns: 1fr;
  }
  .course-panel.reverse .course-media,
  .course-panel.reverse .course-body {
    order: initial;
  }
  .spotlight-grid.reverse .spotlight-media,
  .spotlight-grid.reverse .spotlight-content {
    order: initial;
  }
}
@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .hero-board > *,
  .spotlight-grid > *,
  .page-hero-grid > *,
  .course-panel > *,
  .lab-grid > *,
  .info-panels > * {
    min-width: 0;
    max-width: 100%;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-left: 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .site-header.nav-open .main-nav {
    display: flex;
  }
  .main-nav a {
    min-height: 48px;
    padding: 0 16px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-inner {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    min-height: auto;
  }
  .header-tools {
    order: 2;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .logo {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .logo a {
    justify-content: center;
  }
  .site-header .logo-name {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    line-height: 1.12;
  }
}
@media (max-width: 720px) {
  .section {
    padding: 20px 0;
  }
  .hero {
    padding-top: 22px;
  }
  .method-grid,
  .journey-track,
  .mentor-grid,
  .review-grid,
  .facts-grid,
  .outcomes-grid,
  .form-grid,
  .request-grid,
  .footer-grid,
  .data-grid,
  .thanks-steps {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .finale-buttons,
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .journey-track::before {
    display: none;
  }
  .header-notice {
    font-size: 0.72rem;
    padding: 0 10px;
    min-height: 34px;
  }
  .footer-disclaimer p,
  .footer-bottom p,
  .footer-col p,
  .footer-legal a,
  .footer-tag {
    font-size: 0.85rem;
  }
  .legal-content {
    padding: 28px 18px;
  }
  .request-visual {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    overflow: visible;
  }
  .request-badge {
    position: static;
    max-width: 100%;
    margin: 10px 16px 0;
  }
}
@media (max-width: 640px) {
  .lab-info h2 {
    word-break: break-all;
    min-width: 0;
  }
  .header-notice,
  .footer-col {
    word-break: break-all;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }
  .section {
    padding: 16px 0;
  }
  .request-form,
  .standard-form,
  .form-shell {
    padding-left: 14px;
    padding-right: 14px;
  }
  .btn,
  .request-submit,
  input,
  select,
  textarea {
    width: 100%;
    max-width: 100%;
  }
  .legal-content {
    padding: 22px 14px;
    margin: 16px auto;
  }
  .legal-content h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .legal-content h2 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}