:root {
  --ink: #14110f;
  --muted: #655f58;
  --line: #e9e1d6;
  --paper: #fffdf8;
  --soft: #f6efe5;
  --clay: #b4532a;
  --clay-soft: #fff0e6;
  --teal: #0f766e;
  --teal-soft: #e7f6f2;
  --gold: #b7791f;
  --gold-soft: #fff8df;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 0 max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(233, 225, 214, .95);
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(20,17,15,.05);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; font-weight: 950; }
.brand-mark {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 950;
}
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; color: #3d3935; font-weight: 850; }
.nav a { min-height: 38px; display: inline-flex; align-items: center; border-radius: 8px; padding: 8px 11px; white-space: nowrap; }
.nav a:hover { background: var(--soft); color: var(--clay); }
.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 48px;
  align-items: center;
  padding: 52px 0 72px;
}
.hero-copy { max-width: 780px; }
.eyebrow {
  display: inline-flex; align-items: center; min-height: 34px; margin: 0 0 16px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #6b6259; font-size: 13px; font-weight: 900;
}
h1, h2, h3 { margin: 0; letter-spacing: 0; line-height: 1.04; }
h1 { font-size: clamp(48px, 6vw, 84px); }
h2 { font-size: clamp(31px, 4.6vw, 56px); }
h3 { font-size: 23px; }
.lead { margin-top: 24px; color: var(--muted); font-size: clamp(19px, 2vw, 24px); max-width: 780px; }
.micro { margin-top: 18px; color: #756f68; font-size: 15px; max-width: 720px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary, .secondary {
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; padding: 0 20px; font-weight: 950; text-align: center;
}
.primary { background: var(--ink); color: #fff; }
.secondary { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.hero-panel, .mini-board {
  border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: linear-gradient(180deg, #fff, #fff8ef);
  box-shadow: 0 30px 90px rgba(20,17,15,.08);
}
.hero-workbench {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(180,83,42,.10), transparent 34%),
    linear-gradient(315deg, rgba(15,118,110,.12), transparent 38%),
    #fff;
  box-shadow: 0 34px 95px rgba(20,17,15,.10);
}
.workbench-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,17,15,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,17,15,.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.2));
}
.tool-chip {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 190px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(233,225,214,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(20,17,15,.10);
}
.tool-chip b { font-size: 18px; }
.tool-chip span { color: var(--muted); font-weight: 800; font-size: 13px; }
.tool-chip.one { left: 34px; top: 42px; transform: rotate(-4deg); }
.tool-chip.two { right: 42px; top: 76px; transform: rotate(5deg); }
.tool-chip.three { left: 74px; bottom: 72px; transform: rotate(3deg); }
.tool-chip.four { right: 54px; bottom: 44px; transform: rotate(-3deg); }
.workbench-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  min-height: 190px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 24px;
  font-weight: 950;
  box-shadow: 0 24px 70px rgba(20,17,15,.22);
}
.panel-row, .mini-board div {
  display: flex; justify-content: space-between; gap: 18px; padding: 16px; border-bottom: 1px solid var(--line);
  color: #6b6259; font-weight: 800;
}
.panel-row:last-child, .mini-board div:last-child { border-bottom: 0; }
.panel-row b, .mini-board b { color: var(--ink); }
.panel-row.highlighted, .mini-board .final { border-radius: 8px; background: var(--clay-soft); color: var(--clay); }
section { padding: 72px 0; }
.section-head { width: min(980px, calc(100% - 32px)); margin: 0 auto 34px; text-align: center; }
.section-head p:not(.eyebrow) { max-width: 840px; margin: 18px auto 0; color: var(--muted); font-size: 19px; }
.soft, .comparison, .faq, .guides { background: var(--soft); }
.cards, .intent-grid, .tool-card-list, .guide-grid {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; gap: 14px;
}
.cards.three, .tool-card-list, .guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.intent-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards article, .intent-grid article, .tool-card-list article, .guide-grid a {
  min-height: 205px; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 22px;
  box-shadow: 0 16px 50px rgba(20,17,15,.045);
}
.cards article > span, .intent-grid span {
  display: block; margin: 0 0 10px; color: var(--clay); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .06em;
}
.cards p, .intent-grid p, .tool-card-list p, .guide-grid span { display: block; margin-top: 12px; color: var(--muted); font-weight: 650; }
.bento {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
}
.bento article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 16px 50px rgba(20,17,15,.045);
}
.bento article:nth-child(1) {
  grid-row: span 2;
  background: linear-gradient(180deg, #fff, var(--clay-soft));
}
.bento article:nth-child(4) {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, var(--teal-soft));
}
.bento span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bento p { color: var(--muted); font-weight: 650; margin-top: 12px; }
.scene-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.scene-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255,255,255,.75);
  color: #554d45;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.scene-output {
  margin-top: 22px;
  border-top: 1px solid rgba(233,225,214,.9);
  padding-top: 18px;
  color: var(--clay);
  font-weight: 950;
}
.video-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.video-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 16px 50px rgba(20,17,15,.045);
}
.video-thumb {
  min-height: 220px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(180,83,42,.24), transparent),
    linear-gradient(315deg, rgba(15,118,110,.25), transparent),
    #fff7ed;
  position: relative;
  overflow: hidden;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(20,17,15,.18);
  border-radius: 12px;
}
.video-thumb::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}
.video-card h3 { margin-top: 0; }
.tool-url {
  display: block;
  margin-top: 5px;
  color: #8a8178;
  font-size: 13px;
  font-weight: 800;
}
.video-card p { color: var(--muted); font-weight: 650; margin-top: 10px; }
.video-card small {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 6px 10px;
  font-weight: 950;
}
.recipe-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.recipe {
  display: grid;
  grid-template-columns: 190px 1fr 180px;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 14px 42px rgba(20,17,15,.045);
}
.recipe strong { font-size: 20px; }
.recipe p { color: var(--muted); font-weight: 650; }
.recipe code {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  font: inherit;
  font-weight: 900;
}
.link-row {
  width: min(1180px, calc(100% - 32px)); margin: 18px auto 0; display: flex; flex-wrap: wrap; gap: 10px;
}
.link-row a {
  min-height: 42px; display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 13px; background: #fff; color: #3d3935; font-weight: 850;
}
.link-row a:hover { color: var(--clay); background: #fff7ed; }
.table-wrap {
  width: min(1180px, calc(100% - 32px)); margin: 0 auto; overflow-x: auto; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; box-shadow: 0 18px 60px rgba(20,17,15,.06);
}
.comparison-table { width: 100%; min-width: 1080px; border-collapse: collapse; }
.comparison-table th {
  padding: 16px; background: #fff8ef; color: #554d45; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
}
.comparison-table td { padding: 18px 16px; border-top: 1px solid var(--line); vertical-align: top; color: #302a25; font-weight: 650; }
.comparison-table td small { display: block; margin-top: 5px; color: var(--muted); font-weight: 650; }
.rank {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px;
  background: var(--clay-soft); color: var(--clay); font-size: 13px; font-weight: 950;
}
.section-cta { width: min(1180px, calc(100% - 32px)); margin: 26px auto 0; display: flex; justify-content: center; align-items: center; }
.content, .article { width: min(900px, calc(100% - 32px)); margin: 0 auto; }
.article h2 { margin-top: 42px; font-size: clamp(30px, 4vw, 48px); }
.article h3 { margin-top: 28px; font-size: 24px; }
.article p, .article li { color: var(--muted); font-size: 19px; }
.article p { margin-top: 16px; }
.article ul, .article ol { margin: 18px 0 0; padding-left: 22px; }
.article li + li { margin-top: 8px; }
.article-callout {
  margin-top: 28px; border: 1px solid #f0c7af; border-radius: 8px; background: var(--clay-soft); padding: 20px; color: #7c3419; font-weight: 850;
}
.faq-list { width: min(980px, calc(100% - 32px)); margin: 0 auto; display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
summary { cursor: pointer; padding: 18px 20px; color: var(--ink); font-size: 18px; font-weight: 950; }
details p { padding: 0 20px 20px; color: var(--muted); font-size: 17px; }
.footer { padding: 54px 18px 34px; border-top: 1px solid var(--line); color: #756f68; font-size: 14px; background: #fffdf8; }
.footer-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 26px; text-align: left; }
.footer h3 { margin: 0 0 12px; color: var(--ink); font-size: 16px; line-height: 1.2; }
.footer p { margin: 0; color: #756f68; }
.footer a { display: block; margin-top: 8px; color: #3d3935; font-weight: 850; }
.footer a:hover { color: var(--clay); }
.footer-bottom { width: min(1180px, calc(100% - 32px)); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid var(--line); color: #756f68; text-align: left; }
.mobile-nav-toggle {
  display: none; width: 44px; height: 44px; flex: 0 0 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer;
}
.mobile-nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-nav-open .mobile-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; }
.mobile-nav-open .mobile-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.scroll-reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .scroll-reveal { opacity: 1; transform: none; transition: none; } }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 40px; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .actions { justify-content: center; }
  .cards.three, .tool-card-list, .guide-grid, .intent-grid, .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento article:nth-child(1), .bento article:nth-child(4) { grid-column: auto; grid-row: auto; }
  .recipe { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1120px) {
  .topbar { min-height: 66px; gap: 12px; padding: 10px 18px; }
  .topbar .brand { min-width: 0; overflow: hidden; }
  .topbar .brand span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .topbar nav {
    display: none !important; position: absolute; top: calc(100% + 10px); left: 18px; right: 18px; z-index: 50;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 8px;
    background: #fff; box-shadow: 0 22px 60px rgba(20,17,15,.16);
  }
  .topbar.mobile-nav-open nav { display: flex !important; }
  .topbar nav a { min-height: 44px; display: flex; align-items: center; border-radius: 8px; padding: 10px 12px; white-space: normal; }
  .topbar .mobile-nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  section { padding: 54px 0; }
  .cards.three, .tool-card-list, .guide-grid, .intent-grid, .bento { grid-template-columns: 1fr; }
  .hero-workbench { min-height: 460px; }
  .tool-chip { width: 165px; }
  .tool-chip.one { left: 18px; top: 28px; }
  .tool-chip.two { right: 18px; top: 92px; }
  .tool-chip.three { left: 18px; bottom: 74px; }
  .tool-chip.four { right: 18px; bottom: 24px; }
  .workbench-center { width: 150px; min-height: 150px; font-size: 14px; }
  .video-card { grid-template-columns: 1fr; }
  .video-thumb { min-height: 170px; }
  .footer-inner { grid-template-columns: 1fr; }
  .primary, .secondary { width: 100%; }
  .section-cta { justify-content: stretch; }
  .panel-row, .mini-board div { flex-direction: column; gap: 4px; }
}
