:root {
  --ink: #171714;
  --paper: #f5f3ea;
  --paper-deep: #ebe7da;
  --lime: #c9ff3d;
  --violet: #9c8cff;
  --coral: #ff826e;
  --line: rgba(23, 23, 20, 0.18);
  --muted: #65645d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral);
  transform-origin: left;
}

.section-shell {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 74px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 234, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: max-content;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -1.8px;
}

.brand span {
  color: #6a9c00;
}

.brand-image {
  position: relative;
  display: block;
  width: 112px;
  height: 33px;
  overflow: hidden;
}

.brand-image img {
  position: absolute;
  top: -120px;
  left: -31px;
  width: 180px;
  max-width: none;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100vh - 74px);
  padding-top: clamp(64px, 8vw, 118px);
  padding-bottom: 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #72a900;
  box-shadow: 0 0 0 5px rgba(114, 169, 0, 0.12);
  animation: pulse 2.2s ease infinite;
}

.hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(72px, 8vw, 142px);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.84;
}

.scribble {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-left: 0.08em;
  font-style: italic;
  font-weight: 480;
  letter-spacing: -0.1em;
}

.scribble::before {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.04em;
  left: -0.08em;
  height: 0.46em;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: rotate(-3deg);
}

.hero-lede {
  max-width: 550px;
  margin: 0;
  color: #525149;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 520;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}

.button-dark {
  background: var(--ink);
  color: white;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button-dark:hover {
  box-shadow: 6px 6px 0 var(--lime);
  transform: translate(-3px, -3px);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 730;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 64px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack i {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--violet);
  color: var(--ink);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.avatar-stack i:nth-child(2) {
  background: var(--coral);
}

.avatar-stack i:nth-child(3) {
  background: var(--lime);
}

.hero-stage {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  margin-left: 45px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 48% 48% 8px 8px;
  background: #a99cf3;
  box-shadow: 18px 18px 0 var(--ink);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(23, 23, 20, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
}

.official-mark {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 35px;
  width: 140px;
  height: 122px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: white;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(4deg);
}

.official-mark img {
  position: absolute;
  top: -68px;
  left: -40px;
  width: 220px;
  max-width: none;
  height: auto;
}

.floating-tool {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--ink);
  background: #fbfaf5;
  box-shadow: 8px 8px 0 rgba(23, 23, 20, 0.95);
  animation: float 5s ease-in-out infinite;
}

.floating-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 780;
}

.floating-head b {
  margin-left: auto;
  font-size: 8px;
  letter-spacing: 3px;
}

.tool-mini-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 13px;
}

.lime {
  background: var(--lime);
}

.violet {
  background: var(--violet);
}

.tool-prompt {
  top: 95px;
  left: 7%;
  width: 56%;
  padding: 18px;
  transform: rotate(-3deg);
}

.prompt-lines {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}

.prompt-lines span {
  display: block;
  width: 92%;
  height: 7px;
  border-radius: 10px;
  background: #d9d6cb;
}

.prompt-lines span:nth-child(2) {
  width: 78%;
}

.prompt-lines span:nth-child(3) {
  width: 48%;
}

.tool-prompt button {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.tool-color {
  top: 330px;
  right: 5%;
  width: 52%;
  padding: 18px;
  animation-delay: -1.5s;
  transform: rotate(3deg);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 86px;
  margin: 18px 0 10px;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.tool-color small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.tool-focus {
  right: 43%;
  bottom: 48px;
  display: grid;
  width: 170px;
  padding: 16px;
  place-items: center;
  animation-delay: -3s;
  transform: rotate(-5deg);
}

.focus-ring {
  display: grid;
  width: 105px;
  height: 105px;
  margin: 7px;
  place-content: center;
  border: 9px solid var(--lime);
  border-right-color: var(--paper-deep);
  border-radius: 50%;
  text-align: center;
}

.focus-ring span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 18px;
  font-weight: 800;
}

.focus-ring small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.focus-controls {
  margin-top: 10px;
  font-size: 11px;
}

.cursor-label {
  position: absolute;
  z-index: 4;
  top: 245px;
  right: 11%;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  transform: rotate(-8deg);
}

.cursor-arrow {
  font-size: 47px;
  line-height: 1;
  transform: rotate(-14deg);
}

.cursor-label b {
  padding: 7px 11px;
  background: var(--coral);
  font-size: 11px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
  transform: rotate(-1deg) scale(1.02);
}

.ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 14px 0;
  animation: marquee 22s linear infinite;
}

.ticker span {
  padding: 0 34px;
  font-size: 14px;
  font-weight: 850;
}

.toolbox {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 6vw, 92px);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.section-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.tool-controls {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  gap: 24px;
  align-items: center;
  margin: 34px 0 20px;
}

.search-box {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  background: #fffefa;
}

.search-box > span {
  font-size: 25px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

kbd {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  border-bottom-color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-list button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.category-list button:hover,
.category-list button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.tool-count {
  margin: 22px 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #f9f7ef;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.tool-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--tool-color);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.tool-card:hover {
  z-index: 2;
  box-shadow: 9px 9px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.favorite {
  width: 30px;
  height: 30px;
  margin: -8px -8px 0 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.favorite.saved {
  color: #e84f3c;
}

.card-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 26px 0 36px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--tool-color);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 25px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.tool-card h3 {
  margin: 12px 0 10px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.tool-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.card-open {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.card-open span {
  transition: transform 160ms ease;
}

.card-open:hover span {
  transform: translate(3px, -3px);
}

.empty-state {
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  border: 1px solid var(--ink);
  text-align: center;
}

.empty-state > span {
  font-size: 44px;
}

.empty-state h3 {
  margin: 12px 0 4px;
  font-size: 25px;
}

.empty-state p {
  color: var(--muted);
}

.empty-state button {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--lime);
  cursor: pointer;
}

.finder {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 720px;
  margin-bottom: 150px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
}

.finder-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 6vw, 84px);
  border-right: 1px solid rgba(255,255,255,0.22);
}

.finder-copy .section-index {
  color: #aaa99f;
}

.finder-copy h2 {
  margin: 46px 0 24px;
  font-size: clamp(48px, 5.1vw, 82px);
  letter-spacing: -0.075em;
  line-height: 0.99;
}

.finder-copy h2 em {
  color: var(--lime);
  font-weight: 470;
}

.finder-copy > p {
  max-width: 470px;
  margin: 0;
  color: #bbb9af;
  font-size: 16px;
  line-height: 1.8;
}

.suggestion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 60px;
}

.suggestion-chips button {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 13px;
  border: 1px solid #5e5d57;
  border-radius: 999px;
  background: transparent;
  color: white;
  font-size: 11px;
  cursor: pointer;
}

.suggestion-chips button:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.finder-terminal {
  margin: clamp(22px, 3vw, 42px);
  border: 1px solid white;
  background: #f3f1e7;
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--lime);
}

.terminal-bar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--ink);
  background: #dfddd3;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.terminal-bar div {
  display: flex;
  gap: 5px;
}

.terminal-bar i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.terminal-bar i:nth-child(2) {
  background: #ffd45c;
}

.terminal-bar i:nth-child(3) {
  background: var(--lime);
}

.terminal-bar b {
  padding: 4px 7px;
  border: 1px solid var(--line);
  background: #f3f1e7;
}

.finder-terminal form {
  padding: clamp(25px, 4vw, 48px);
}

.finder-terminal label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.terminal-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-bottom: 2px solid var(--ink);
}

.terminal-input > span {
  padding-right: 10px;
  font-size: 28px;
}

.terminal-input input {
  min-width: 0;
  height: 64px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 680;
}

.terminal-input button {
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 760;
  cursor: pointer;
}

.terminal-result {
  min-height: 390px;
  padding: 0 clamp(25px, 4vw, 48px) 38px;
}

.terminal-idle {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.idle-orbit {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px dashed var(--ink);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

.idle-orbit span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--violet);
  font-size: 20px;
  animation: spinBack 12s linear infinite;
}

.terminal-idle p {
  max-width: 260px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.terminal-result > small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.terminal-result > button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  background: white;
  text-align: left;
  cursor: pointer;
}

.terminal-result > button:last-child {
  border-bottom: 1px solid var(--ink);
}

.terminal-result > button:hover {
  background: var(--lime);
}

.terminal-result > button > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
}

.terminal-result > button div {
  display: grid;
  gap: 3px;
}

.terminal-result > button b {
  font-size: 14px;
}

.terminal-result > button small {
  color: var(--muted);
  font-size: 9px;
}

.terminal-result > button i {
  font-style: normal;
}

.about {
  padding-bottom: 150px;
}

.about-statement {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 70px;
  margin: 65px 0 90px;
}

.about-statement p {
  max-width: 340px;
  margin: 12px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.about-statement h2 {
  margin: 0;
  font-size: clamp(60px, 8vw, 126px);
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.about-statement h2 span {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 480;
}

.about-statement h2 span::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 8px;
  background: var(--coral);
  content: "";
  transform: rotate(-2deg);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.principles article {
  min-height: 340px;
  padding: 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.principles article > span {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.principle-mark {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 55px 0 45px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-size: 30px;
  transition: border-radius 220ms ease, transform 220ms ease;
}

.principles article:nth-child(2) .principle-mark {
  background: var(--violet);
}

.principles article:nth-child(3) .principle-mark {
  background: var(--coral);
}

.principles article:hover .principle-mark {
  border-radius: 2px;
  transform: rotate(8deg);
}

.principles h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.principles p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.more-tools {
  padding-bottom: 150px;
}

.more-tools-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ink);
}

.more-tools-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(54px, 6.5vw, 98px);
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.more-tools-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.network-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.network-line i {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0,
    var(--ink) 7px,
    transparent 7px,
    transparent 13px
  );
}

.network-line b {
  color: var(--ink);
}

.simple-tools-feature {
  position: relative;
  display: grid;
  min-height: 500px;
  margin-bottom: 22px;
  overflow: hidden;
  grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid var(--ink);
  background: #c9ff3d;
  color: var(--ink);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.simple-tools-feature:hover {
  box-shadow: 11px 11px 0 var(--ink);
  transform: translate(-5px, -5px);
}

.simple-tools-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.13) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 75%);
}

.simple-tools-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(34px, 5vw, 68px);
}

.simple-tools-kicker {
  color: #46542e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.simple-tools-copy h3 {
  max-width: 700px;
  margin: 58px 0 22px;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.simple-tools-copy p {
  max-width: 420px;
  margin: 0;
  color: #46542e;
  font-size: 14px;
  line-height: 1.7;
}

.simple-tools-link {
  display: flex;
  width: min(245px, 100%);
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 12px;
}

.simple-tools-link b {
  color: #c9ff3d;
  font-size: 19px;
  transition: transform 180ms ease;
}

.simple-tools-feature:hover .simple-tools-link b {
  transform: translate(4px, -4px);
}

.simple-tools-preview {
  position: relative;
  z-index: 1;
  min-height: 500px;
}

.simple-float-card {
  position: absolute;
  display: flex;
  width: 188px;
  height: 140px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(17, 17, 15, 0.18);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.simple-float-card strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 34px;
}

.simple-float-card span {
  color: var(--muted);
  font-size: 11px;
}

.simple-card-one {
  top: 12%;
  left: 7%;
  transform: rotate(-5deg);
}

.simple-card-two {
  top: 34%;
  right: 8%;
  background: #a996ff;
  transform: rotate(4deg);
}

.simple-card-three {
  bottom: 10%;
  left: 18%;
  background: var(--ink);
  color: #c9ff3d;
  transform: rotate(-1deg);
}

.simple-card-three span {
  color: #a4aa9e;
}

.simple-tools-feature:hover .simple-card-one {
  transform: rotate(-9deg) translate(-10px, -9px);
}

.simple-tools-feature:hover .simple-card-two {
  transform: rotate(8deg) translate(13px, -11px);
}

.simple-tools-feature:hover .simple-card-three {
  transform: rotate(-3deg) translateY(-13px);
}

.ann-feature {
  margin-top: 22px;
  background: #9c8cff;
}

.ann-feature .simple-tools-grid {
  background-image:
    radial-gradient(rgba(23, 23, 20, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.1) 1px, transparent 1px);
  background-size: 18px 18px, 72px 72px;
}

.ann-feature .simple-tools-kicker,
.ann-feature .simple-tools-copy p {
  color: #302853;
}

.ann-feature .simple-tools-link b {
  color: #b9adff;
}

.ann-preview {
  isolation: isolate;
}

.ann-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(23, 23, 20, 0.35);
  border-radius: 50%;
  animation: ann-orbit 14s linear infinite;
}

.ann-orbit::after {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #c9ff3d;
  content: "";
}

.ann-orbit-one {
  top: 8%;
  right: 4%;
  width: 390px;
  height: 390px;
}

.ann-orbit-two {
  top: 21%;
  right: 17%;
  width: 260px;
  height: 260px;
  animation-direction: reverse;
  animation-duration: 10s;
}

.ann-feature .simple-card-one {
  background: #f5f3ea;
}

.ann-feature .simple-card-two {
  background: #c9ff3d;
}

.ann-feature .simple-card-three {
  background: var(--ink);
}

@keyframes ann-orbit {
  to {
    transform: rotate(360deg);
  }
}

.sound-feature {
  margin-top: 22px;
  background: #58d9ff;
}

.sound-feature .simple-tools-grid {
  background-image:
    linear-gradient(rgba(23, 23, 20, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 82%);
}

.sound-feature .simple-tools-kicker,
.sound-feature .simple-tools-copy p {
  color: #154756;
}

.sound-feature .simple-tools-link b {
  color: #58d9ff;
}

.sound-preview {
  display: grid;
  place-items: center;
}

.sound-player {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 56px));
  padding: 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 10px 10px 0 rgba(23, 23, 20, 0.18);
  transform: rotate(-2deg);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sound-feature:hover .sound-player {
  transform: rotate(0deg) scale(1.025);
}

.sound-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9da39a;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.sound-player-top b {
  color: #58d9ff;
}

.sound-wave {
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 22px 0 15px;
  overflow: hidden;
}

.sound-wave i {
  width: 5px;
  height: 45%;
  flex: 0 0 5px;
  border-radius: 99px;
  background: #58d9ff;
  animation: sound-pulse 1.05s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(3n) {
  height: 82%;
  animation-delay: -0.65s;
}

.sound-wave i:nth-child(4n) {
  height: 28%;
  background: #c9ff3d;
  animation-delay: -0.35s;
}

.sound-wave i:nth-child(5n) {
  height: 64%;
  animation-delay: -0.8s;
}

.sound-wave i:nth-child(7n) {
  height: 95%;
  animation-delay: -0.15s;
}

.sound-progress {
  height: 2px;
  overflow: hidden;
  background: #3c403a;
}

.sound-progress i {
  display: block;
  width: 42%;
  height: 100%;
  background: #c9ff3d;
  transition: width 500ms ease;
}

.sound-feature:hover .sound-progress i {
  width: 78%;
}

.sound-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 23px;
  color: #a7aca3;
  font-family: var(--font-geist-mono), monospace;
}

.sound-controls strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #c9ff3d;
  color: var(--ink);
  font-size: 13px;
  transition: transform 200ms ease;
}

.sound-feature:hover .sound-controls strong {
  transform: scale(1.1);
}

.sound-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 90px;
  height: 78px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(23, 23, 20, 0.2);
  transition: transform 240ms ease;
}

.sound-chip span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 19px;
  font-weight: 800;
}

.sound-chip small {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.sound-chip-one {
  top: 11%;
  right: 7%;
  transform: rotate(6deg);
}

.sound-chip-two {
  bottom: 10%;
  left: 4%;
  background: #c9ff3d;
  transform: rotate(-7deg);
}

.sound-feature:hover .sound-chip-one {
  transform: rotate(10deg) translate(7px, -8px);
}

.sound-feature:hover .sound-chip-two {
  transform: rotate(-11deg) translate(-6px, 8px);
}

@keyframes sound-pulse {
  to {
    height: 18%;
    opacity: 0.58;
  }
}

.sport-feature {
  margin-top: 22px;
  background: #ff826e;
}

.sport-feature .simple-tools-grid {
  background-image:
    linear-gradient(rgba(23, 23, 20, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 3%, #000 78%);
}

.sport-feature .simple-tools-kicker,
.sport-feature .simple-tools-copy p {
  color: #672f29;
}

.sport-feature .simple-tools-link b {
  color: #ff826e;
}

.sport-preview {
  position: relative;
  overflow: hidden;
}

.sport-court {
  position: absolute;
  inset: 7% 4% 7% 7%;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 20, 0.6);
  border-radius: 52% 0 0 52%;
}

.sport-court-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 51%;
  width: 1px;
  background: rgba(23, 23, 20, 0.45);
}

.sport-circle {
  position: absolute;
  top: 50%;
  left: 51%;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(23, 23, 20, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sport-ball {
  position: absolute;
  top: 27%;
  left: 21%;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #c9ff3d;
  box-shadow: 4px 4px 0 rgba(23, 23, 20, 0.25);
  animation: sport-ball 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.sport-scoreboard {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(390px, calc(100% - 64px));
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 9px 9px 0 rgba(23, 23, 20, 0.2);
  transform: translate(-50%, -50%) rotate(2deg);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sport-feature:hover .sport-scoreboard {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.025);
}

.sport-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ff826e;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sport-live > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff826e;
  box-shadow: 0 0 0 4px rgba(255, 130, 110, 0.15);
  animation: sport-live-pulse 1.15s ease-in-out infinite;
}

.sport-live span {
  margin-left: auto;
  color: #979c94;
  font-weight: 500;
}

.sport-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 22px;
  margin: 31px 0 25px;
  text-align: center;
}

.sport-score > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sport-score small {
  color: #888e84;
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.14em;
}

.sport-score strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: clamp(45px, 5vw, 68px);
  line-height: 1;
}

.sport-score > b {
  padding-bottom: 8px;
  color: #c9ff3d;
  font-size: 22px;
}

.sport-meter {
  height: 4px;
  overflow: hidden;
  background: #373b36;
}

.sport-meter i {
  display: block;
  width: 66%;
  height: 100%;
  background: #c9ff3d;
  transition: width 500ms ease;
}

.sport-feature:hover .sport-meter i {
  width: 82%;
}

.sport-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 105px;
  height: 82px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(23, 23, 20, 0.19);
  transition: transform 240ms ease;
}

.sport-stat strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 22px;
}

.sport-stat span {
  color: var(--muted);
  font-size: 9px;
}

.sport-stat-one {
  top: 9%;
  right: 4%;
  transform: rotate(5deg);
}

.sport-stat-two {
  bottom: 8%;
  left: 3%;
  background: #c9ff3d;
  transform: rotate(-6deg);
}

.sport-feature:hover .sport-stat-one {
  transform: rotate(9deg) translate(5px, -7px);
}

.sport-feature:hover .sport-stat-two {
  transform: rotate(-10deg) translate(-5px, 7px);
}

@keyframes sport-ball {
  0%,
  100% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(240px, 130px);
  }
  70% {
    transform: translate(85px, 275px);
  }
}

@keyframes sport-live-pulse {
  50% {
    opacity: 0.42;
    transform: scale(0.72);
  }
}

.font-feature {
  margin-top: 22px;
  background: #ff9bc2;
}

.font-feature .simple-tools-grid {
  background-image:
    linear-gradient(rgba(23, 23, 20, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent 4%, #000 80%);
}

.font-feature .simple-tools-kicker,
.font-feature .simple-tools-copy p {
  color: #652a43;
}

.font-feature .simple-tools-link b {
  color: #ff9bc2;
}

.font-preview {
  display: grid;
  place-items: center;
}

.font-stage {
  position: relative;
  z-index: 2;
  width: min(455px, calc(100% - 64px));
  min-height: 300px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 rgba(23, 23, 20, 0.2);
  transform: rotate(1.5deg);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.font-feature:hover .font-stage {
  transform: rotate(0deg) scale(1.025);
}

.font-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 23, 20, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
  pointer-events: none;
}

.font-stage-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.font-effect-word {
  position: relative;
  z-index: 1;
  margin: 42px 0 35px;
  color: var(--ink);
  font-size: clamp(66px, 8vw, 116px);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 0.72;
  text-align: center;
  transform-origin: center;
  animation: font-breathe 3.4s ease-in-out infinite;
}

.font-effect-word::before,
.font-effect-word::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  pointer-events: none;
  transition: transform 260ms ease;
}

.font-effect-word::before {
  z-index: -1;
  color: #c9ff3d;
  transform: translate(-5px, 5px);
}

.font-effect-word::after {
  z-index: -2;
  color: #9c8cff;
  -webkit-text-stroke: 1px var(--ink);
  transform: translate(5px, -5px);
}

.font-feature:hover .font-effect-word::before {
  transform: translate(-10px, 8px);
}

.font-feature:hover .font-effect-word::after {
  transform: translate(10px, -8px);
}

.font-controls {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  align-items: center;
  gap: 8px 12px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
}

.font-controls > i {
  height: 3px;
  background: rgba(23, 23, 20, 0.18);
}

.font-controls > i b {
  position: relative;
  display: block;
  width: 68%;
  height: 100%;
  background: var(--ink);
  transition: width 420ms ease;
}

.font-controls > i b::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #c9ff3d;
  content: "";
  transform: translateY(-50%);
}

.font-controls > i:nth-of-type(2) b {
  width: 42%;
}

.font-feature:hover .font-controls > i b {
  width: 86%;
}

.font-feature:hover .font-controls > i:nth-of-type(2) b {
  width: 58%;
}

.font-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 104px;
  height: 86px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(23, 23, 20, 0.2);
  transition: transform 240ms ease;
}

.font-chip strong {
  font-size: 25px;
  letter-spacing: -0.08em;
}

.font-chip span {
  font-family: var(--font-geist-mono), monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.font-chip-one {
  top: 8%;
  right: 3%;
  background: #c9ff3d;
  transform: rotate(7deg);
}

.font-chip-two {
  bottom: 7%;
  left: 2%;
  background: var(--ink);
  color: #ff9bc2;
  transform: rotate(-7deg);
}

.font-feature:hover .font-chip-one {
  transform: rotate(11deg) translate(6px, -7px);
}

.font-feature:hover .font-chip-two {
  transform: rotate(-11deg) translate(-6px, 7px);
}

@keyframes font-breathe {
  0%,
  100% {
    font-weight: 650;
    letter-spacing: -0.11em;
    transform: scaleX(0.92);
  }
  50% {
    font-weight: 900;
    letter-spacing: -0.04em;
    transform: scaleX(1.04);
  }
}

.other-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.other-tool-card {
  position: relative;
  display: flex;
  min-height: 345px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #f9f7ef;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.other-tool-card::before {
  position: absolute;
  z-index: 0;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--network-color);
  content: "";
  transform: scale(0.6);
  transition: transform 240ms ease;
}

.other-tool-card:hover {
  z-index: 2;
  background: white;
  box-shadow: 9px 9px 0 var(--ink);
  transform: translate(-4px, -4px);
}

.other-tool-card:hover::before {
  transform: scale(1);
}

.other-tool-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.other-tool-top b {
  color: var(--ink);
}

.other-tool-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  margin: 34px 0 30px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--network-color);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 25px;
  font-weight: 850;
}

.other-tool-card > small {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.other-tool-card h3 {
  position: relative;
  z-index: 1;
  margin: 9px 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.other-tool-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.card-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 10px;
  font-weight: 800;
}

.card-route i {
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform 180ms ease;
}

.other-tool-card:hover .card-route i {
  transform: scaleX(0.7);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  margin-bottom: 30px;
  padding: 75px 24px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--lime);
  text-align: center;
}

.final-cta .section-index {
  color: var(--ink);
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  margin: 34px 0 16px;
  font-size: clamp(58px, 7vw, 108px);
  letter-spacing: -0.085em;
  line-height: 0.9;
}

.final-cta p {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  font-size: 15px;
}

.email-form {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(540px, 100%);
  min-height: 58px;
  border: 1px solid var(--ink);
  background: white;
  box-shadow: 7px 7px 0 var(--ink);
}

.email-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
}

.email-form button {
  margin: 6px;
  padding: 0 17px;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.success-message {
  display: grid;
  width: 100%;
  place-items: center;
  font-weight: 760;
}

.cta-shape {
  position: absolute;
  border: 1px solid var(--ink);
}

.shape-one {
  top: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--violet);
}

.shape-two {
  right: -70px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  background: var(--coral);
  transform: rotate(20deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  min-height: 140px;
  align-items: center;
  gap: 30px;
}

.site-footer p {
  color: var(--muted);
  font-size: 12px;
}

.site-footer > div {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer small {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}

.modal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(23, 23, 20, 0.72);
  backdrop-filter: blur(7px);
  animation: fadeIn 160ms ease;
}

.tool-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--lime);
  animation: modalIn 220ms ease;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}

.modal-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 30px;
}

.tool-modal > small {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.tool-modal h2 {
  margin: 10px 0;
  font-size: 42px;
  letter-spacing: -0.06em;
}

.tool-modal > p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-preview {
  margin: 26px 0;
  padding: 17px;
  border: 1px solid var(--line);
  background: #fffefa;
}

.modal-preview > span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.modal-preview div {
  display: grid;
  gap: 7px;
  margin: 22px 0;
}

.modal-preview i {
  display: block;
  width: 90%;
  height: 7px;
  border-radius: 99px;
  background: var(--paper-deep);
}

.modal-preview i:nth-child(2) {
  width: 70%;
}

.modal-preview i:nth-child(3) {
  width: 45%;
}

.modal-preview b {
  font-size: 11px;
}

.modal-button {
  width: 100%;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 9px rgba(114, 169, 0, 0); }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spinBack {
  to { transform: rotate(-360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(80px, 16vw, 140px);
  }

  .hero-stage {
    min-height: 640px;
    margin: 70px 10px 20px;
  }

  .official-mark {
    top: 25px;
    right: 24px;
    width: 112px;
    height: 98px;
  }

  .official-mark img {
    top: -58px;
    left: -36px;
    width: 184px;
  }

  .hero-note {
    margin-top: 0;
  }

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

  .finder {
    grid-template-columns: 1fr;
  }

  .finder-copy {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }

  .about-statement {
    grid-template-columns: 1fr;
  }

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

  .simple-tools-feature {
    grid-template-columns: 1fr;
  }

  .simple-tools-copy {
    min-height: 430px;
  }

  .simple-tools-preview {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 32px, 1380px);
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    height: 66px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    grid-column: 2;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(62px, 21vw, 92px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    padding-top: 40px;
  }

  .hero-stage {
    min-height: 500px;
    margin: 56px 6px 20px 0;
    border-radius: 180px 180px 4px 4px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .tool-prompt {
    top: 80px;
    left: 4%;
    width: 65%;
  }

  .tool-color {
    top: 270px;
    width: 60%;
  }

  .tool-focus {
    right: 40%;
    bottom: 24px;
    width: 135px;
  }

  .focus-ring {
    width: 78px;
    height: 78px;
    border-width: 7px;
  }

  .cursor-label {
    top: 225px;
    right: 5%;
  }

  .toolbox {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .tool-controls {
    grid-template-columns: 1fr;
  }

  .category-list {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
  }

  .category-list button {
    flex: 0 0 auto;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 350px;
  }

  .finder {
    width: 100%;
    margin-bottom: 100px;
    border-right: 0;
    border-left: 0;
  }

  .finder-copy {
    min-height: 520px;
    padding: 50px 20px;
  }

  .finder-copy h2 {
    font-size: 52px;
  }

  .finder-terminal {
    margin: 18px;
    box-shadow: 7px 7px 0 var(--lime);
  }

  .terminal-input {
    grid-template-columns: auto 1fr;
  }

  .terminal-input button {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    padding: 12px;
  }

  .about {
    padding-bottom: 100px;
  }

  .about-statement {
    gap: 25px;
    margin: 45px 0 60px;
  }

  .about-statement h2 {
    font-size: 64px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: 300px;
  }

  .more-tools {
    padding-bottom: 100px;
  }

  .more-tools-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .more-tools-heading h2 {
    font-size: 54px;
  }

  .other-tools-grid {
    grid-template-columns: 1fr;
  }

  .simple-tools-feature {
    min-height: 760px;
  }

  .simple-tools-copy {
    min-height: 410px;
    padding: 30px 24px;
  }

  .simple-tools-copy h3 {
    margin-top: 45px;
    font-size: 46px;
  }

  .simple-tools-preview {
    min-height: 350px;
  }

  .simple-float-card {
    width: 152px;
    height: 112px;
    padding: 15px;
  }

  .simple-float-card strong {
    font-size: 28px;
  }

  .other-tool-card {
    min-height: 315px;
  }

  .final-cta {
    min-height: 590px;
    margin-bottom: 24px;
  }

  .final-cta h2 {
    font-size: 58px;
  }

  .email-form {
    flex-direction: column;
    padding: 6px;
  }

  .email-form input {
    min-height: 52px;
  }

  .email-form button {
    min-height: 48px;
  }

  .shape-one,
  .shape-two {
    width: 190px;
    height: 190px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 30px 0;
  }

  .site-footer > div {
    grid-column: 1 / -1;
  }

  .site-footer small {
    text-align: right;
  }

  .tool-modal {
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
