@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

@font-face {
  font-family: 'OngleIpSeaBreeze';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2510-1@1.0/Ownglyph_the_sea_breeze-Rg.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}

:root {
  --ink: #12143f;
  --ink-2: #22255f;
  --muted: #65708f;
  --muted-2: #8a92ad;
  --bg: #fbfbff;
  --paper: #ffffff;
  --panel: #f3f6ff;
  --panel-2: #eef4ff;
  --line: #e3e7f5;
  --discord: #5865f2;
  --discord-dark: #4752c4;
  --lavender: #efeaff;
  --mint: #e8f8ef;
  --peach: #fff0e5;
  --pink: #ffeaf2;
  --blue: #eaf2ff;
  --yellow: #fff7d8;
  --green: #43c987;
  --shadow: 0 24px 80px rgba(48, 55, 130, 0.12);
  --shadow-soft: 0 14px 40px rgba(48, 55, 130, 0.08);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(88, 101, 242, 0.08), transparent 26rem),
    radial-gradient(circle at 93% 12%, rgba(67, 201, 135, 0.09), transparent 24rem),
    var(--bg);
  line-height: 1.58;
  letter-spacing: -0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.narrow { max-width: 880px; }
.section-pad { padding: 96px 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 231, 245, 0.78);
  background: rgba(251, 251, 255, 0.84);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-logo {
  width: auto;
  height: 30px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #363b72;
  font-size: 14px;
  font-weight: 800;
}
.nav-links > a:not(.btn) { opacity: 0.84; }
.nav-links > a:not(.btn):hover { opacity: 1; color: var(--discord); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-discord {
  color: white;
  background: linear-gradient(135deg, var(--discord), #6f5cff);
  box-shadow: 0 14px 32px rgba(88, 101, 242, 0.28);
}
.btn-discord:hover { background: linear-gradient(135deg, var(--discord-dark), #614de4); }
.btn-large {
  min-height: 58px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 17px;
}
.discord-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}
.discord-icon svg { width: 100%; height: 100%; fill: currentColor; }
.text-link {
  position: relative;
  display: inline-flex;
  font-weight: 900;
  color: var(--discord);
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.hero { padding: 90px 0 82px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--discord);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  animation: status-blink 1.4s ease-in-out infinite;
}
@keyframes status-blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(67, 201, 135, 0.36);
  }
  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 7px rgba(67, 201, 135, 0);
  }
}
.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.07em;
}
.hero-lead {
  position: relative;
  display: block;
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
}
.hero-hand-note {
  position: relative;
  z-index: 0;
  display: block;
  margin: 10px 0 0 42px;
  width: fit-content;
  padding: 4px 10px;
  color: #fff;
  font-family: 'OngleIpSeaBreeze', "Pretendard", cursive;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: rotate(-1deg);
}
.hero-hand-note::before {
  content: "";
  position: absolute;
  inset: 3px 0 1px;
  z-index: -1;
  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  animation: marker-fill 0.85s ease 0.45s forwards;
}
@keyframes marker-fill {
  to { transform: scaleX(1); }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.tag-row span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.hero-art {
  position: relative;
  min-height: 560px;
}
.session-shot {
  position: absolute;
  left: 8%;
  top: 0;
  width: 64%;
  min-width: 300px;
  filter: drop-shadow(0 28px 44px rgba(18, 20, 63, 0.20));
}
.camera-shot {
  position: absolute;
  right: 0;
  top: 120px;
  width: 62%;
  min-width: 310px;
  border-radius: 24px;
  filter: drop-shadow(0 24px 48px rgba(18, 20, 63, 0.18));
  transform: rotate(3deg);
}
.float-bubble {
  position: absolute;
  right: 8%;
  top: 72px;
  z-index: 3;
  padding: 18px 24px;
  border-radius: 26px;
  background: white;
  color: var(--ink-2);
  font-family: 'OngleIpSeaBreeze', "Pretendard", cursive;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.08;
  letter-spacing: 0;
  box-shadow: var(--shadow-soft);
  transform: rotate(-4deg);
}
.float-bubble::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -15px;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 0 0 8px 0;
  box-shadow: 10px 12px 24px rgba(48, 55, 130, 0.06);
  transform: rotate(45deg) skew(8deg, 8deg);
  transform-origin: center;
}

.section-head { margin-bottom: 34px; }
.section-head.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.label {
  margin: 0 0 10px;
  color: var(--discord);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.06em;
}
h2.split-weight {
  font-weight: 500;
}
h2.split-weight strong {
  font-weight: 700;
}
.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}
.strong-line {
  display: inline-block;
  padding: 5px 10px;
  color: #fff !important;
  background: #111;
  font-weight: 950 !important;
}

.problem-section,
.how-section,
.maker-section,
.cta-section {
  background:
    linear-gradient(180deg, rgba(244, 247, 255, 0.86), rgba(251, 251, 255, 0.98));
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.problem-card,
.step-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}
.problem-card {
  min-height: 238px;
  padding: 28px;
  text-align: center;
}
.icon-badge {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.icon-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
h3 { margin: 0; font-size: 20px; line-height: 1.28; letter-spacing: -0.04em; }
.hand-note {
  display: inline-block;
  margin-top: 6px;
  color: #b91c1c;
  font-family: 'OngleIpSeaBreeze', "Pretendard", cursive;
  font-size: 1.18em;
  font-weight: normal;
  letter-spacing: 0;
  transform: rotate(-1.5deg);
}
.problem-card p,
.step-card p,
.feature-card p,
.persona-card p { margin: 12px 0 0; color: var(--muted); font-size: 15px; font-weight: 400; }
.step-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--discord);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: center;
}
.session-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.panel-top {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}
.panel-top strong { font-size: 17px; }
.panel-top span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: #198a59;
  font-size: 12px;
  font-weight: 950;
}
.session-list { padding: 12px; }
.session-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.session-row:last-child { border-bottom: 0; }
.session-row b { display: block; margin-bottom: 5px; font-size: 16px; }
.session-row small { color: var(--muted); font-weight: 650; }
.session-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
}
.session-meta span,
.session-meta em {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}
.session-meta button {
  height: 34px;
  padding: 0 12px;
  border: 1px solid #c9ceff;
  border-radius: 10px;
  background: white;
  color: var(--discord);
  font-weight: 950;
}
.panel-link {
  display: block;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  color: var(--discord);
  font-weight: 950;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
}
.step-num {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--discord);
  color: white;
  font-weight: 950;
}
.step-illustration {
  height: 92px;
  margin: 32px 0 22px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--panel-2);
  color: var(--discord);
  font-size: 48px;
  font-weight: 950;
}
.discord-illus {
  background:
    radial-gradient(circle at 72% 28%, var(--green) 0 20%, transparent 21%),
    linear-gradient(135deg, #eff1ff, #e7ebff);
}
.discord-illus svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
}
.list-illus {
  gap: 10px;
  place-items: stretch;
  padding: 20px;
}
.list-illus span { border-radius: 10px; background: linear-gradient(90deg, #b7befe, #edf0ff); }
.work-illus { background: linear-gradient(135deg, #f4efff, #fff7df); }
.work-illus svg {
  width: 64px;
  height: 64px;
}
.work-illus rect {
  fill: #fff;
  stroke: #8b6bff;
  stroke-width: 5;
}
.work-illus path {
  fill: none;
  stroke: #43c987;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.persona-marquee {
  overflow: hidden;
  padding: 8px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.persona-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: persona-scroll 74s linear infinite;
}
.persona-marquee:hover .persona-track {
  animation-play-state: paused;
}
.persona-card {
  position: relative;
  flex: 0 0 520px;
  min-height: 252px;
  padding: 42px 42px 36px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}
.persona-card::after {
  content: "“";
  position: absolute;
  right: 34px;
  top: 26px;
  color: #dde1e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}
.review-stars {
  display: block;
  margin-bottom: 24px;
  color: #ffb51f;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 2px;
}
.persona-card p {
  margin-top: 0;
  color: #5e6470;
  font-size: 17px;
  line-height: 1.72;
}
.persona-card h3 {
  margin-top: 24px;
  color: #25272d;
  font-size: 17px;
  font-weight: 900;
}
@keyframes persona-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

.maker-card {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
.maker-card h2 strong {
  font-weight: 950;
}
.maker-card h2 {
  font-weight: 500;
}
.maker-image {
  width: min(100%, 620px);
  margin: 32px auto 0;
}
.maker-note {
  margin: 20px 0 0;
  padding-bottom: 54px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.maker-note-swap {
  position: relative;
  display: inline-block;
  color: var(--ink-2);
  cursor: default;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.maker-note-swap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
.maker-note-swap .tap-hint {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  color: #6f7688;
  font-size: 40px;
  line-height: 1;
  transform-origin: 50% 100%;
  animation: tap-hint 1.25s ease-in-out infinite;
}
.maker-note-swap .swap-text {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  width: max-content;
  color: #b91c1c;
  font-family: 'OngleIpSeaBreeze', "Pretendard", cursive;
  font-size: 1.26em;
  font-weight: normal;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-50%, -4px) rotate(-1deg);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.maker-note-swap:hover::after {
  transform: scaleX(1);
}
.maker-note-swap:hover {
  text-decoration-color: transparent;
}
.maker-note-swap:hover .tap-hint {
  opacity: 0;
}
.maker-note-swap:hover .swap-text {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-1deg);
}
@keyframes tap-hint {
  0%, 100% { transform: translate(-50%, 0) rotate(-10deg) scale(1); }
  42% { transform: translate(-50%, 6px) rotate(-10deg) scale(0.92); }
  58% { transform: translate(-50%, 0) rotate(-10deg) scale(1.04); }
}
.x-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.x-grid div {
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}
.x-grid span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--panel);
  font-size: 30px;
  position: relative;
}
.x-grid span::after {
  content: "×";
  position: absolute;
  right: -7px;
  top: -7px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff6b7a;
  color: white;
  font-weight: 950;
  font-size: 18px;
}
.x-grid b { font-size: 17px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 240px;
  padding: 28px;
}
.feature-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--panel-2);
  font-size: 28px;
}

.faq-section .container {
  position: relative;
}
.faq-hand {
  position: absolute;
  right: 150px;
  top: 4px;
  color: #a8afbd;
  font-family: 'OngleIpSeaBreeze', "Pretendard", cursive;
  font-size: 38px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(7deg);
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: white;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
}
.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 10px 3px auto;
  height: 2px;
  border-radius: 2px;
  background: var(--discord);
  transition: transform 0.18s ease;
}
.faq-question span::after { transform: rotate(90deg); }
.faq-item.is-open .faq-question span::after { transform: rotate(0deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}
.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  font-weight: 650;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }

.cta-section {
  position: relative;
  overflow: hidden;
}
.floating-thinkers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.floating-thinkers img {
  position: absolute;
  bottom: -72px;
  width: 54px;
  opacity: 0.24;
  filter: blur(0.1px);
  animation: float-thinker 9s ease-in-out infinite;
}
.floating-thinkers img:nth-child(1) { left: 7%; width: 50px; animation-delay: -0.6s; animation-duration: 9.4s; }
.floating-thinkers img:nth-child(2) { left: 23%; width: 36px; animation-delay: 1.8s; animation-duration: 7.8s; }
.floating-thinkers img:nth-child(3) { left: 43%; width: 42px; animation-delay: 0.5s; animation-duration: 10.6s; }
.floating-thinkers img:nth-child(4) { left: 57%; width: 58px; animation-delay: 3.1s; animation-duration: 8.7s; }
.floating-thinkers img:nth-child(5) { right: 24%; width: 32px; animation-delay: 2.2s; animation-duration: 11.2s; }
.floating-thinkers img:nth-child(6) { right: 12%; width: 46px; animation-delay: 0.9s; animation-duration: 8.2s; }
.floating-thinkers img:nth-child(7) { right: 3%; width: 30px; animation-delay: 4.4s; animation-duration: 9.8s; }
@keyframes float-thinker {
  0% {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.94);
    opacity: 0;
  }
  18%, 72% {
    opacity: 0.24;
  }
  100% {
    transform: translate3d(18px, -230px, 0) rotate(10deg) scale(1.04);
    opacity: 0;
  }
}

.cta-card {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  text-align: center;
}
.cta-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.site-footer {
  padding: 48px 0 58px;
  border-top: 1px solid var(--line);
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}
.footer-brand { margin-bottom: 14px; }
.site-footer p,
.site-footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.site-footer h3 {
  margin-bottom: 12px;
  font-size: 15px;
}
.site-footer a {
  margin: 8px 0;
  font-weight: 400;
}
.site-footer a:hover { color: var(--discord); }
.copyright { margin-top: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .floating-thinkers img { animation: none; opacity: 0.18; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; }
  .session-shot { left: 4%; }
  .camera-shot { right: 5%; }
  .problem-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section-pad { padding: 72px 0; }
  .container, .nav-shell { width: min(100% - 32px, var(--max)); }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
  }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px; }
  .nav-cta { margin-top: 8px; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-art { min-height: 470px; }
  .session-shot { width: 64%; min-width: 260px; }
  .camera-shot { width: 60%; min-width: 270px; top: 128px; }
  .float-bubble { right: 4%; top: 54px; font-size: 22px; }
  .steps-grid, .x-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .hero-actions .btn,
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-lead { display: block; max-width: 100%; }
  .hero-hand-note {
    position: static;
    display: block;
    margin: 10px 0 0 8px;
    padding-inline: 6px;
    font-size: clamp(18px, 5.6vw, 21px);
    transform: rotate(-1deg);
    white-space: nowrap;
  }
  h2.split-weight strong {
    display: block;
  }
  .problem-grid, .feature-grid { grid-template-columns: 1fr; }
  .persona-card { flex-basis: 300px; }
  .faq-hand {
    left: 50%;
    right: auto;
    top: -34px;
    font-size: 30px;
    transform: translateX(-50%) rotate(7deg);
  }
  .maker-note-swap .swap-text { white-space: nowrap; font-size: 1.12em; }
  .session-row { grid-template-columns: 1fr; }
  .session-meta { flex-wrap: wrap; min-width: 0; }
  .cta-action { justify-content: stretch; }
  .cta-action .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; }
  .session-shot { left: 0; width: 64%; min-width: 220px; }
  .camera-shot { right: 0; top: 150px; width: 72%; min-width: 240px; }
}
