:root {
  --ice: #eff9fd;
  --ice-2: #dff4fb;
  --white: #ffffff;
  --ink: #24336f;
  --ink-deep: #13294b;
  --muted: #6d7b91;
  --line: rgba(71, 104, 143, 0.18);
  --cyan: #72e9ef;
  --sky: #75c9ff;
  --hero-sky: #244a8f;
  --hero-sky-deep: #2f6f9f;
  --lavender: #bda7ff;
  --pink: #ef8bea;
  --font: "Pretendard", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 60px rgba(57, 90, 129, 0.14);
  --ease: cubic-bezier(.23, 1, .32, 1);
}

@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Pretendard";
  src: url("./fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700 900;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-deep);
  background: var(--ice);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; }

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 22px 0;
  background: rgba(245, 251, 253, .82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 42px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-text {
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-text:hover {
  color: #655bd8;
}

.pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 18px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 100ms var(--ease), box-shadow 180ms var(--ease);
}

.pill:active { transform: translateY(1px); }
.pill-dark { color: #fff; background: var(--ink-deep); box-shadow: 0 10px 24px rgba(19, 41, 75, .18); }
.pill-light { color: var(--ink); background: rgba(255,255,255,.78); box-shadow: inset 0 0 0 1px var(--line), 0 10px 24px rgba(57,90,129,.08); }
.pill-outline { color: var(--ink); background: transparent; box-shadow: inset 0 0 0 2px rgba(36, 51, 111, .68); }
.arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-button { display: none; }
.mobile-menu-tree { display: none; }

.all-menu {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.all-menu span,
.all-menu::before,
.all-menu::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: .18s var(--ease);
}
.all-menu span { display: block; }
.all-menu::before, .all-menu::after { content: ""; position: absolute; }
.all-menu::before { transform: translateY(-6px); }
.all-menu::after { transform: translateY(6px); }
.all-menu[aria-expanded="true"] span { opacity: 0; }
.all-menu[aria-expanded="true"]::before { transform: rotate(45deg); }
.all-menu[aria-expanded="true"]::after { transform: rotate(-45deg); }

.mega-menu {
  position: absolute;
  z-index: 19;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 60px rgba(46,75,110,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .2s var(--ease);
}
.mega-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.mega-column { padding-left: 20px; border-left: 1px solid var(--line); }
.mega-column:first-child { padding-left: 0; border-left: 0; }
.mega-column > a {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}
.mega-column ul { margin: 0; padding: 0; list-style: none; }
.mega-column li + li { margin-top: 10px; }
.mega-column li a { color: var(--muted); font-size: 14px; font-weight: 700; }
.mega-column a:hover { color: #655bd8; }

.home-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 30%, rgba(255,255,255,.94), transparent 29rem),
    linear-gradient(135deg, #f5fbfd 0%, #eaf8fc 45%, #dff3fa 100%);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(500px, 1.24fr);
  align-items: center;
  gap: 16px;
  padding-bottom: 50px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(640px, 52vw);
  max-width: 640px;
  padding-bottom: 40px;
}

.kicker {
  margin: 0 0 22px;
  color: var(--hero-sky-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--hero-sky);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(46px, 4.85vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.044em;
  word-break: keep-all;
}

.hero-copy > p:not(.kicker) {
  max-width: 540px;
  margin: 28px 0 0;
  color: #51667f;
  font-size: 20px;
  line-height: 1.78;
  font-weight: 500;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.art {
  position: absolute;
  z-index: 1;
  top: -86px;
  right: -180px;
  width: 850px;
  height: 790px;
  pointer-events: none;
}

.soft-ribbon {
  position: absolute;
  border-radius: 999px;
  background: rgba(204, 236, 247, .55);
  transform: rotate(-24deg);
}
.soft-ribbon.one { top: 10px; right: -80px; width: 820px; height: 120px; }
.soft-ribbon.two { right: -40px; bottom: 30px; width: 760px; height: 118px; opacity: .58; }
.soft-ribbon.three { top: 70px; left: 10px; width: 450px; height: 82px; opacity: .28; transform: rotate(-12deg); }

.orb {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -28px -38px 58px rgba(128, 96, 220, .16), 0 34px 90px rgba(73, 157, 205, .12);
}

.orb-main {
  left: 128px;
  top: 180px;
  width: 540px;
  height: 540px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.94) 0 5%, rgba(255,255,255,.2) 28%, transparent 42%),
    radial-gradient(circle at 76% 72%, rgba(242,126,232,.96), transparent 31%),
    radial-gradient(circle at 62% 48%, rgba(116,187,255,.88), transparent 43%),
    linear-gradient(145deg, #d6fff8 3%, #8cebf1 36%, #80cfff 62%, #b7a6ff 81%, #f38be5 100%);
}

.orb-small {
  top: 102px;
  right: 86px;
  width: 214px;
  height: 214px;
  opacity: .82;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.92), transparent 31%),
    linear-gradient(145deg, #cbfbf4 0%, #9ee3f9 43%, #b9a7ff 72%, #ed9be7 100%);
}

.dot-field {
  position: absolute;
  z-index: 3;
  top: 280px;
  left: 122px;
  width: 230px;
  height: 190px;
  background-image: radial-gradient(circle, rgba(255,255,255,.96) 0 2px, transparent 2.5px);
  background-size: 15px 15px;
}

.shape {
  position: absolute;
  z-index: 4;
  border-color: rgba(255,255,255,.95);
}

.shape.square {
  top: 105px;
  left: 330px;
  width: 72px;
  height: 72px;
  border: 5px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
}

.shape.ring {
  width: 76px;
  height: 76px;
  border: 5px solid rgba(255,255,255,.92);
  border-radius: 50%;
}
.shape.ring.one { top: 242px; left: 515px; }
.shape.ring.two { right: 115px; bottom: 82px; }
.shape.ring.three { top: 310px; right: 28px; width: 28px; height: 28px; border-width: 3px; }

.shape.arc {
  width: 74px;
  height: 74px;
  border: 14px solid rgba(255,255,255,.94);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.shape.arc.one { top: 125px; right: 120px; transform: rotate(-45deg); }
.shape.arc.two { left: 12px; top: 350px; transform: rotate(42deg); }
.shape.arc.three { left: 100px; bottom: 60px; width: 42px; height: 42px; border-width: 8px; transform: rotate(18deg); }

.shape.line { width: 72px; height: 3px; background: rgba(255,255,255,.92); }
.shape.line.one { top: 360px; right: 120px; }
.shape.line.two { bottom: 92px; left: 410px; width: 54px; }

.shape.plus::before,
.shape.plus::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.86);
}
.shape.plus::before { width: 54px; height: 3px; left: -27px; }
.shape.plus::after { width: 3px; height: 54px; top: -26px; }
.shape.plus.one { top: 485px; left: 114px; }
.shape.plus.two { top: 495px; right: 122px; }

.pager {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: flex;
  gap: 10px;
}
.pager span {
  width: 13px;
  height: 13px;
  border: 2px solid #6877a1;
  border-radius: 50%;
}
.pager span:first-child { background: var(--ink); border-color: var(--ink); }

.content-page { min-height: 100vh; background: linear-gradient(180deg, #f4fbfe, #eaf7fc); }
.page-main { padding: 74px 0 110px; }
.page-intro { max-width: 760px; margin-bottom: 42px; }
.page-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.06em;
  word-break: keep-all;
}
.page-intro p { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.panel-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; }
.panel {
  padding: 28px;
  border: 1px solid rgba(95,126,162,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel-title { margin: 0 0 22px; color: var(--ink-deep); font-size: 20px; }
.field { display: grid; gap: 8px; margin-top: 16px; }
.field label, .label { color: #71809a; font-size: 12px; font-weight: 800; }
.control {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: rgba(255,255,255,.86);
  color: var(--ink-deep);
  font-weight: 700;
}
textarea.control { min-height: 100px; resize: vertical; }
.panel .pill { margin-top: 20px; }
.result {
  min-height: 330px;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  color: #7b8aa1;
  background:
    radial-gradient(circle at 80% 85%, rgba(234,140,233,.24), transparent 34%),
    linear-gradient(145deg, rgba(216,255,249,.72), rgba(208,237,255,.8) 50%, rgba(226,217,255,.72));
  font-size: 17px;
  line-height: 1.8;
}
.result.has-message { align-items: flex-start; color: var(--ink-deep); font-weight: 700; }
.result-buttons { display: none; gap: 10px; flex-wrap: wrap; }
.result-buttons.show { display: flex; }

.feature-grid,
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section-block { margin-top: 88px; }
.section-heading { max-width: 700px; margin-bottom: 30px; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4vw, 52px); letter-spacing: -.05em; }
.section-heading p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.tool-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.tool-choice {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
}
.tool-choice strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 18px; }
.tool-choice span { color: var(--muted); font-size: 14px; line-height: 1.6; }
.privacy-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
}
.privacy-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(145deg,var(--cyan),var(--lavender)); }
.privacy-box h3 { margin: 0 0 8px; color: var(--ink); }
.privacy-box p { margin: 0; color: var(--muted); line-height: 1.7; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(209,252,248,.86), rgba(210,235,255,.88), rgba(228,216,255,.85));
}
.cta-band h2 { margin: 0; color: var(--ink); font-size: 30px; letter-spacing: -.04em; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.content-search {
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 18px;
}
.content-search .control { flex: 1; }
.content-search .pill { flex: 0 0 auto; margin: 0; }
.filter-button {
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 800;
  cursor: pointer;
}
.filter-button.active { color: #fff; background: var(--ink); }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.content-thumb {
  height: 180px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--cyan), var(--sky) 48%, var(--lavender) 76%, var(--pink));
  font-size: 25px;
  font-weight: 900;
}
.content-body { padding: 22px; }
.content-body small { color: #7168cf; font-weight: 900; }
.content-body h2 { margin: 10px 0 8px; color: var(--ink); font-size: 21px; }
.content-body p { margin: 0; color: var(--muted); line-height: 1.65; }
.content-card.hidden { display: none; }

.timeline { display: grid; gap: 16px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-date { color: #7168cf; font-size: 13px; font-weight: 900; }
.timeline-item h2 { margin: 0 0 8px; color: var(--ink); font-size: 22px; }
.timeline-item p { margin: 0; color: var(--muted); line-height: 1.6; }
.timeline-arrow { color: var(--ink); font-size: 24px; }

.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.value-list { display: grid; gap: 16px; }
.value-item { padding: 24px; border-radius: 20px; background: rgba(255,255,255,.72); }
.value-item strong { color: var(--ink); font-size: 20px; }
.value-item p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 20px 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; color: var(--muted); line-height: 1.75; }
.feature-card,
.example-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(95,126,162,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
}
.feature-mark {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--sky), var(--lavender), var(--pink));
  box-shadow: inset -8px -10px 16px rgba(120,83,210,.14);
}
.feature-card h2, .example-card h2 { margin: 0; color: var(--ink); font-size: 23px; letter-spacing: -.035em; }
.feature-card p, .example-card p { color: var(--muted); line-height: 1.7; }
.example-card .tag { color: #7168cf; font-size: 12px; font-weight: 900; letter-spacing: .08em; }

.beta-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.benefits { display: grid; gap: 12px; margin-top: 28px; }
.benefit { padding: 16px 18px; border-radius: 15px; background: rgba(255,255,255,.65); font-weight: 800; color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  padding: 11px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink-deep);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .18s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 961px) {
  .site-header:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .shell { width: min(100% - 36px, 740px); }
  .nav-links, .nav-actions .nav-text { display: none; }
  .menu-button {
    position: relative;
    display: inline-flex;
    width: 44px;
    min-height: 42px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink-deep);
    box-shadow: none;
    font-size: 0;
  }
  .menu-button::before,
  .menu-button::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: top .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  }
  .menu-button::before {
    top: 13px;
    box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
  }
  .menu-button::after {
    top: 20px;
    opacity: 0;
  }
  .menu-button[aria-expanded="true"]::before {
    top: 20px;
    box-shadow: none;
    transform: translateX(-50%) rotate(45deg);
  }
  .menu-button[aria-expanded="true"]::after {
    opacity: 1;
    transform: translateX(-50%) rotate(-45deg);
  }
  .all-menu { display: none; }
  .nav-links.open {
    position: absolute;
    top: 68px;
    right: 18px;
    width: min(340px, calc(100vw - 36px));
    max-height: calc(100vh - 92px);
    display: block;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }
  .nav-links.open > a {
    display: none;
  }
  .nav-links.open .mobile-menu-tree {
    display: grid;
    gap: 24px;
  }
  .mobile-menu-section {
    display: grid;
    gap: 11px;
  }
  .mobile-menu-heading {
    color: var(--ink);
    font-size: 17px;
    font-weight: 900;
  }
  .mobile-submenu {
    display: grid;
    gap: 9px;
    margin-left: 7px;
    padding-left: 17px;
    border-left: 2px solid rgba(101, 91, 216, .18);
  }
  .mobile-submenu a {
    position: relative;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-submenu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -18px;
    width: 9px;
    height: 1px;
    background: rgba(101, 91, 216, .38);
  }
  .hero { grid-template-columns: 1fr; padding-top: 70px; align-items: start; }
  .hero-copy { width: auto; padding-bottom: 540px; }
  .art { top: 370px; left: 50%; right: auto; width: 720px; height: 680px; transform: translateX(-47%); }
  .orb-main { width: 470px; height: 470px; }
  .orb-small { right: 70px; }
  .pager { bottom: 24px; }
  .panel-grid, .beta-wrap { grid-template-columns: 1fr; }
  .feature-grid, .example-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-choices, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .site-header { padding: 16px 0; }
  .brand { height: 38px; }
  .brand-logo { height: 28px; }
  .nav-actions .pill-dark { display: none; }
  .nav-actions .menu-button { display: inline-flex; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-copy > p:not(.kicker) { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .pill { width: 100%; }
  .hero-copy { padding-bottom: 430px; }
  .art { top: 430px; width: 540px; height: 520px; transform: translateX(-46%); }
  .orb-main { left: 80px; top: 120px; width: 350px; height: 350px; }
  .orb-small { top: 58px; right: 42px; width: 145px; height: 145px; }
  .dot-field { top: 190px; left: 76px; width: 145px; height: 130px; background-size: 12px 12px; }
  .shape.square { top: 55px; left: 220px; width: 50px; height: 50px; }
  .shape.arc.one { right: 55px; }
  .shape.arc.two { left: 0; top: 260px; }
  .shape.ring.one { top: 150px; left: 340px; width: 54px; height: 54px; }
  .shape.plus.one { top: 330px; left: 90px; }
  .shape.plus.two { top: 335px; right: 80px; }
  .pager { display: none; }
  .page-main { padding-top: 52px; }
  .feature-grid, .example-grid, .form-grid { grid-template-columns: 1fr; }
  .tool-choices, .content-grid, .mega-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .panel, .feature-card, .example-card { padding: 22px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-arrow { display: none; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .content-search { align-items: stretch; flex-direction: column; }
}
