:root {
  color-scheme: light;
  --ink: #070809;
  --muted: #665f57;
  --paper: #f8ecde;
  --panel: #ffffff;
  --line: #ead8c9;
  --brand: #ef5f7a;
  --brand-dark: #d84261;
  --mint: #a8d7bd;
  --teal: #438f74;
  --gold: #f5c76b;
  --shadow: 0 20px 55px rgba(7, 8, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 236, 222, 0.92);
  border-bottom: 1px solid rgba(234, 216, 201, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 4px 4px 0 rgba(239, 95, 122, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: #fff7ee;
  color: var(--ink);
}

.channel-link,
.primary-action,
.secondary-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-link {
  padding: 9px 14px 9px 10px;
  border-radius: 8px;
  background: white;
  color: #1f1715;
  box-shadow: 0 8px 18px rgba(7, 8, 9, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.channel-link:hover {
  box-shadow: 0 10px 24px rgba(7, 8, 9, 0.16);
  transform: translateY(-1px);
}

.youtube-mark {
  width: 32px;
  height: 22px;
}

.youtube-mark rect {
  fill: #ff0033;
}

.youtube-mark path {
  fill: white;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  flex: 0 0 auto;
}

.facebook-icon {
  background: #1877f2;
}

.instagram-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 15%, #fd5949 36%, #d6249f 62%, #285aeb 100%);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.facebook-icon svg {
  fill: white;
}

.instagram-icon svg {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.primary-action svg,
.secondary-action svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 28px;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 7% 18%, rgba(239, 95, 122, 0.24) 0 12%, transparent 13%),
    radial-gradient(circle at 93% 76%, rgba(168, 215, 189, 0.42) 0 16%, transparent 17%),
    linear-gradient(135deg, #fff7ed 0%, #f8ecde 55%, #fffaf4 100%);
  padding: clamp(38px, 6vw, 72px) clamp(18px, 4vw, 56px) 88px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  left: -92px;
  bottom: -90px;
  border-radius: 48% 52% 44% 56%;
  background: var(--mint);
}

.hero::after {
  width: 260px;
  height: 260px;
  right: -82px;
  top: -86px;
  border-radius: 50%;
  background: rgba(239, 95, 122, 0.58);
}

.hero-content {
  width: min(760px, 100%);
  color: var(--ink);
  text-align: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  order: -1;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(260px, 70vw);
  aspect-ratio: 1;
  border: 4px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 18px 18px 0 rgba(7, 8, 9, 0.08), 30px 30px 0 rgba(239, 95, 122, 0.22);
}

.shape {
  position: absolute;
  border-radius: 999px;
}

.shape-pink {
  width: 120px;
  height: 120px;
  top: 24px;
  right: 26px;
  background: rgba(239, 95, 122, 0.76);
}

.shape-mint {
  width: 168px;
  height: 168px;
  left: 16px;
  bottom: 28px;
  background: rgba(168, 215, 189, 0.92);
}

.shape-gold {
  width: 82px;
  height: 82px;
  right: 46px;
  bottom: 70px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--brand-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 10vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #312b27;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.primary-action,
.secondary-action {
  padding: 13px 18px;
  border-radius: 8px;
}

.primary-action {
  background: var(--brand);
  color: white;
}

.primary-action:hover {
  background: var(--brand-dark);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--ink);
  color: var(--ink);
}

.quick-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 76px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.quick-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 20px;
  background: #fff9f2;
  font-weight: 800;
}

.quick-panel svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex: 0 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
}

.section-head.compact {
  width: 100%;
  margin: 0 0 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(430px, 100%);
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}

.search-box svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
}

.workspace {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 90px;
  align-items: start;
}

.filters,
.tool-card,
.path-grid article,
.resource-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}

.filters {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.filters h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.filter-group span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff5eb;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--teal);
  background: var(--mint);
}

.filter-note {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.filter-note svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.filter-note p {
  margin-bottom: 0;
}

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

.tool-card {
  display: grid;
  gap: 16px;
  min-height: 254px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(21, 33, 31, 0.06);
}

.tool-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tool-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #eef7f3;
  color: var(--teal);
}

.tool-icon svg {
  width: 22px;
  height: 22px;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2f0eb;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tool-card h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.tool-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.mini-action.secondary {
  background: #edf7ef;
  color: var(--teal);
}

.mini-action svg {
  width: 15px;
  height: 15px;
}

.start-guide,
.comparison-section,
.prompts-section,
.glossary-section,
.resources {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 90px;
}

.start-guide {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 18px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.start-guide .eyebrow {
  color: var(--gold);
}

.start-guide .section-copy {
  color: #cfc6be;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.start-steps li {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.start-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.start-steps li:last-child {
  padding-right: 0;
}

.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.start-steps > li > svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--mint);
}

.start-steps h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.start-steps p {
  flex: 1;
  margin-bottom: 20px;
  color: #cfc6be;
  font-size: 14px;
  line-height: 1.55;
}

.start-steps a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.start-steps a svg {
  width: 15px;
  height: 15px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.path-grid article {
  padding: 24px;
  background: #fff8ef;
}

.path-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--brand);
}

.path-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.path-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf4;
  box-shadow: 0 12px 32px rgba(21, 33, 31, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 19px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  background: #f1e3d4;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody th {
  white-space: nowrap;
  font-size: 17px;
}

.tool-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
}

.chatgpt-dot {
  background: #10a37f;
}

.claude-dot {
  background: #d97757;
}

.gemini-dot {
  background: #4285f4;
}

.free-badge,
.comparison-table a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.free-badge {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eaf5ee;
  color: var(--teal);
}

.free-badge svg,
.comparison-table a svg {
  width: 14px;
  height: 14px;
}

.comparison-table a {
  color: var(--brand-dark);
}

.comparison-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.comparison-foot p {
  max-width: 710px;
  margin-bottom: 0;
  line-height: 1.55;
}

.official-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
}

.official-sources span {
  width: 100%;
  text-align: right;
}

.official-sources a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prompt-heading {
  align-items: end;
}

.section-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.prompt-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.prompt-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8ef;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.prompt-filter:hover,
.prompt-filter.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

.prompt-browser {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.62);
}

.prompt-list {
  display: grid;
  align-content: start;
  gap: 8px;
  max-height: 510px;
  overflow-y: auto;
  padding: 2px 6px 2px 2px;
}

.prompt-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.prompt-option:hover {
  background: white;
}

.prompt-option.is-active {
  border-color: var(--ink);
  background: white;
  box-shadow: 4px 4px 0 var(--mint);
}

.prompt-option strong,
.prompt-option small {
  display: block;
}

.prompt-option strong {
  font-size: 15px;
}

.prompt-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.prompt-option svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.prompt-empty {
  padding: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.prompt-preview {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 10px;
  background: var(--ink);
  color: white;
}

.prompt-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prompt-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-preview .tag {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.prompt-preview h3 {
  margin: 22px 0 14px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.prompt-preview .prompt-text {
  flex: 1;
  margin: 0;
  color: #f7eee5;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}

.prompt-tip {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 16px;
  color: #c8beb5;
  font-size: 14px;
}

.prompt-tip svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: 0 0 auto;
}

.copy-prompt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  align-self: flex-start;
  background: var(--brand);
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.copy-prompt:hover {
  background: var(--brand-dark);
}

.copy-prompt svg {
  width: 17px;
  height: 17px;
}

.copy-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

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

.glossary-grid article {
  position: relative;
  padding: 22px 22px 22px 78px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
}

.glossary-grid article::before {
  content: "Aa";
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.glossary-grid h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.glossary-grid p {
  margin-bottom: 8px;
  color: #3d3732;
  line-height: 1.5;
}

.glossary-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.glossary-empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}

.text-link {
  color: var(--teal);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-list a {
  display: flex;
  gap: 14px;
  min-height: 128px;
  padding: 18px;
}

.resource-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  flex: 0 0 auto;
}

.resource-icon svg {
  width: 21px;
  height: 21px;
}

.resource-list strong,
.resource-list small {
  display: block;
}

.resource-list small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

@media (max-width: 880px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 720px;
  }

  .hero-visual {
    min-height: 320px;
    order: -1;
  }

  .hero-visual img {
    width: min(300px, 76vw);
  }

  .quick-panel,
  .workspace,
  .tools-grid,
  .path-grid,
  .prompt-browser,
  .glossary-grid,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .start-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .start-steps li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .comparison-foot {
    flex-direction: column;
  }

  .official-sources {
    justify-content: flex-start;
  }

  .official-sources span {
    text-align: left;
  }

  .prompt-preview {
    min-height: 350px;
  }

  .prompt-list {
    max-height: 360px;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .filters {
    position: static;
  }

  .filter-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-group span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .channel-link span {
    display: none;
  }

  .hero {
    min-height: 680px;
    padding-bottom: 76px;
  }

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

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

  .quick-panel {
    margin-top: 22px;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .start-guide {
    padding: 28px 22px;
  }

  .start-steps {
    grid-template-columns: 1fr;
  }

  .start-steps li,
  .start-steps li:first-child,
  .start-steps li:nth-child(3),
  .start-steps li:last-child {
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .start-steps li:last-child {
    border-bottom: 0;
  }

  .glossary-grid article {
    padding: 76px 20px 20px;
  }

  footer {
    flex-direction: column;
  }
}
