:root {
  --ink: #101114;
  --muted: #5b616b;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --line: rgba(16, 17, 20, 0.14);
  --blue: #245cff;
  --coral: #e85d45;
  --steel: #b8c1c9;
  --shadow: 0 24px 80px rgba(16, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(16, 17, 20, 0.78);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.7);
}

.hero {
  position: relative;
  min-height: 96vh;
  padding: 136px clamp(20px, 5vw, 72px) 70px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,244,238,0.98) 0%, rgba(247,244,238,0.72) 39%, rgba(247,244,238,0.10) 100%),
    linear-gradient(135deg, #fff6df 0%, #dfe7ea 42%, #9fb3bd 100%);
  transform: translateY(var(--scroll-shift, 0));
  transition: transform 180ms linear;
}

.studio-window {
  position: absolute;
  top: 0;
  left: 42%;
  width: 42%;
  height: 55%;
  background:
    linear-gradient(90deg, transparent 24%, rgba(16,17,20,0.28) 24% 25%, transparent 25% 49%, rgba(16,17,20,0.28) 49% 50%, transparent 50% 74%, rgba(16,17,20,0.28) 74% 75%, transparent 75%),
    linear-gradient(0deg, transparent 32%, rgba(16,17,20,0.22) 32% 33%, transparent 33% 66%, rgba(16,17,20,0.22) 66% 67%, transparent 67%),
    rgba(255,255,255,0.45);
  opacity: 0.65;
  transform: skewX(-8deg);
}

.studio-table {
  position: absolute;
  left: 28%;
  right: -6%;
  bottom: 0;
  height: 31%;
  background: linear-gradient(10deg, #b89672, #dbc6aa 50%, #f3dec0);
  box-shadow: 0 -20px 70px rgba(16,17,20,0.08);
}

.studio-book,
.studio-screen,
.studio-stone {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-book {
  right: 14%;
  bottom: 12%;
  width: 220px;
  height: 32px;
  background: #fffdf8;
  transform: rotate(-2deg);
}

.studio-screen {
  right: 31%;
  bottom: 19%;
  width: 170px;
  height: 104px;
  background: linear-gradient(145deg, #101114, #59636e);
  transform: perspective(500px) rotateY(-28deg) rotateX(4deg);
}

.studio-stone {
  right: 7%;
  bottom: 27%;
  width: 96px;
  height: 138px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(145deg, #101114, #7b8389);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  font-size: clamp(54px, 7.2vw, 108px);
}

.hero-home h1 {
  max-width: 860px;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(38px, 5.5vw, 84px);
}

h3 {
  font-size: clamp(29px, 3vw, 44px);
}

.hero-copy p:not(.eyebrow),
.product-hero > p:not(.eyebrow),
.large-copy,
.feature-panel p,
.wide-copy p,
.closing p {
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.38;
  color: rgba(16, 17, 20, 0.74);
}

.actions,
.closing .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  color: #fff;
  background: var(--ink);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.statement-band {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.statement-band.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.16);
}

.statement-grid p {
  min-height: 190px;
  margin: 0;
  padding: 26px;
  display: flex;
  align-items: end;
  background: rgba(255,255,255,0.045);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 48px);
  line-height: 1;
}

.split-section,
.feature-panel,
.product-grid,
.archive-section,
.list-section,
.pricing-section,
.closing {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 110px);
}

.large-copy p {
  margin: 0 0 24px;
}

.feature-panel {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(42px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel p {
  max-width: 740px;
}

.price {
  font-weight: 800;
  color: var(--ink) !important;
}

.precision-visual {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36,92,255,0.12), rgba(232,93,69,0.10)),
    #eef1f2;
  transform: translateY(var(--scroll-shift, 0));
  transition: transform 180ms linear, box-shadow 600ms ease;
}

.precision-visual span {
  position: absolute;
  display: block;
  border: 1px solid rgba(16,17,20,0.34);
  background: rgba(255,255,255,0.42);
  box-shadow: var(--shadow);
}

.precision-visual span:nth-child(1) {
  width: 52%;
  height: 24%;
  left: 14%;
  top: 18%;
}

.precision-visual span:nth-child(2) {
  width: 42%;
  height: 42%;
  right: 8%;
  top: 28%;
}

.precision-visual span:nth-child(3) {
  width: 36%;
  height: 18%;
  left: 20%;
  bottom: 16%;
}

.precision-visual span:nth-child(4) {
  width: 1px;
  height: 86%;
  left: 50%;
  top: 7%;
  background: var(--coral);
  border: 0;
}

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

.product-grid article,
.pricing-section article {
  padding: 30px;
  min-height: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-grid article p,
.pricing-section article p,
.two-column-list p {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
}

.product-grid article a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  color: var(--blue);
}

.wide-visual-section {
  min-height: 90vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: #dce7e8;
}

.light-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,244,238,0.94) 0%, rgba(247,244,238,0.72) 45%, rgba(247,244,238,0.24) 100%),
    repeating-linear-gradient(90deg, rgba(16,17,20,0.18) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, #fff7dc, #c8d9dd 55%, #78909b);
  transform: translateY(var(--scroll-shift, 0));
  transition: transform 180ms linear;
}

.wide-copy {
  position: relative;
  max-width: 920px;
  z-index: 1;
}

.archive-section h2 {
  max-width: 980px;
}

.archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.archive-tags span,
.archive-tags a {
  display: inline-flex;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,248,0.65);
  font-weight: 750;
}

.closing {
  background: var(--ink);
  color: var(--white);
}

.closing h2 {
  max-width: 1100px;
}

.closing p {
  color: rgba(255,253,248,0.76);
}

.closing .primary {
  background: var(--white);
  color: var(--ink);
}

.contact-section {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,253,248,0.96), rgba(220,231,232,0.56)),
    var(--white);
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy h2 {
  font-size: clamp(36px, 4.8vw, 72px);
}

.contact-copy p {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(16, 17, 20, 0.72);
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 17, 20, 0.18);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
  padding: 14px;
  line-height: 1.45;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 92, 255, 0.18);
  border-color: rgba(36, 92, 255, 0.58);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.product-hero {
  padding: 150px clamp(20px, 5vw, 72px) 90px;
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(90deg, rgba(247,244,238,1), rgba(247,244,238,0.72)),
    linear-gradient(135deg, #f7f4ee, #dce7e8 56%, #94a7b1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 920ms ease,
    transform 920ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .feature-panel.reveal,
.js .product-grid article.reveal,
.js .pricing-section article.reveal {
  transform: translateY(52px) scale(0.978);
}

.js .feature-panel.reveal.is-visible,
.js .product-grid article.reveal.is-visible,
.js .pricing-section article.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .statement-grid p.reveal-step,
.js .two-column-list p.reveal-step {
  transform: translateY(28px);
}

.js .statement-grid p.reveal-step.is-visible,
.js .two-column-list p.reveal-step.is-visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-visual,
  .precision-visual,
  .light-visual {
    transform: none !important;
  }
}

.product-hero.personal {
  background:
    linear-gradient(90deg, rgba(247,244,238,1), rgba(247,244,238,0.70)),
    linear-gradient(135deg, #fff3dd, #e5ecea 52%, #d7b398);
}

.product-hero.presentation {
  background:
    linear-gradient(90deg, rgba(247,244,238,1), rgba(247,244,238,0.69)),
    linear-gradient(135deg, #fff8e5, #dce7e8 48%, #8fa1c7);
}

.product-hero h1,
.product-hero p {
  max-width: 1050px;
}

.list-section h2 {
  max-width: 780px;
  margin-bottom: 36px;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
}

.two-column-list p {
  margin: 0;
  padding: 24px;
  min-height: 98px;
  background: rgba(255,253,248,0.58);
  color: var(--ink);
}

.pricing-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-section.two {
  grid-template-columns: repeat(2, 1fr);
}

.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 150px clamp(20px, 5vw, 72px) 100px;
}

.article-page h1 {
  font-size: clamp(48px, 7vw, 104px);
  margin-bottom: 30px;
}

.article-page h2 {
  font-size: clamp(30px, 4vw, 54px);
  margin: 58px 0 18px;
}

.article-page p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(16, 17, 20, 0.76);
}

.article-page .article-lead {
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.35;
  color: var(--ink);
}

.related-articles {
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.related-articles div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-articles a {
  min-height: 116px;
  padding: 18px;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
  line-height: 1.18;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.related-articles a:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 92, 255, 0.38);
  background: var(--white);
}

.game-promo {
  padding: clamp(70px, 10vw, 150px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--white);
}

.game-promo p {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.4;
  color: var(--muted);
}

.game-promo img,
.comic-sample img {
  display: block;
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.game-hero {
  min-height: 100vh;
  padding: 140px clamp(20px, 5vw, 72px) 70px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.game-hero-copy p:not(.eyebrow) {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.38;
  color: var(--muted);
}

.comic-sample {
  margin: 0;
}

.game-shell {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 72px);
  background: #eef1f2;
}

.game-progress {
  max-width: 1180px;
  margin: 0 auto 18px;
  display: grid;
  gap: 10px;
  font-weight: 800;
}

.game-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(16, 17, 20, 0.12);
}

.game-progress i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 420ms ease;
}

.scenario-card,
.game-result {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scenario-brief h2 {
  max-width: 900px;
}

.scenario-brief p:not(.eyebrow),
.game-result p {
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.4;
  color: var(--muted);
}

.comic-panel-stage {
  margin: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comic-panel {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 6px;
  background: #dbe9ee;
}

.panel-caption {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 7px 10px;
  border: 3px solid var(--ink);
  background: #fff1c2;
  font-weight: 900;
}

.comic-room {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.62), transparent 28%),
    linear-gradient(90deg, transparent 0 68%, rgba(16,17,20,0.11) 68% 69%, transparent 69%),
    linear-gradient(180deg, #dcebf0 0 62%, #c4b29c 62% 100%);
}

.comic-window {
  position: absolute;
  right: 8%;
  top: 13%;
  width: 32%;
  height: 30%;
  border: 4px solid rgba(16,17,20,0.74);
  background:
    linear-gradient(90deg, transparent 48%, rgba(16,17,20,0.24) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(16,17,20,0.24) 48% 52%, transparent 52%),
    rgba(255,255,255,0.38);
  transform: skewX(-6deg);
}

.comic-board {
  position: absolute;
  left: 8%;
  top: 14%;
  width: 28%;
  height: 22%;
  border: 4px solid rgba(16,17,20,0.66);
  background:
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(16,17,20,0.16) 16px 18px),
    #f8f1d6;
  transform: rotate(-2deg);
}

.comic-table {
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: 9%;
  height: 22%;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 18px 18px;
  background: #d6b18a;
  box-shadow: inset 0 -18px 0 rgba(16,17,20,0.08);
}

.comic-person {
  position: absolute;
  width: 112px;
  height: 165px;
  bottom: 20%;
  border: 4px solid var(--ink);
  border-radius: 48px 52px 18px 18px;
  background: #8798aa;
  transform: rotate(-2deg);
}

.comic-person::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -58px;
  width: 58px;
  height: 66px;
  border: 4px solid var(--ink);
  border-radius: 47% 53% 49% 51%;
  background: #f0c7a5;
}

.comic-person::after {
  content: "";
  position: absolute;
  left: 42px;
  top: -28px;
  width: 32px;
  height: 10px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  border-radius: 50%;
}

.comic-person.manager {
  left: 17%;
  background: #9aa8b4;
}

.comic-person.employee {
  right: 17%;
  background: #6f7f93;
  transform: rotate(3deg);
}

.comic-person.manager::before {
  border-radius: 56% 44% 48% 52%;
}

.comic-person.employee::before {
  background: #e9b993;
  border-radius: 44% 56% 53% 47%;
}

.speech {
  position: absolute;
  z-index: 4;
  max-width: 230px;
  padding: 14px 16px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: #fffdf8;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.manager-speech {
  left: 9%;
  top: 17%;
}

.employee-thought {
  right: 8%;
  top: 18%;
  border-style: dotted;
}

.result-panel {
  padding: 76px 28px 28px;
  background:
    radial-gradient(circle at 80% 18%, rgba(232,93,69,0.17), transparent 30%),
    linear-gradient(135deg, #f5d9b9, #dce7e8);
}

.result-panel h3 {
  margin-top: 42px;
  max-width: 88%;
}

.result-panel p {
  max-width: 92%;
  font-size: 20px;
  line-height: 1.35;
  color: rgba(16,17,20,0.72);
}

.result-symbol {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 96px;
  height: 96px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 43%, var(--ink) 43% 48%, transparent 48%),
    linear-gradient(-45deg, transparent 43%, var(--ink) 43% 48%, transparent 48%),
    #fffdf8;
  opacity: 0.42;
}

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

.choice-button,
.share-options button {
  min-height: 96px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 0 rgba(16,17,20,0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.choice-button:hover,
.choice-button.selected,
.share-options button:hover {
  transform: translateY(-3px);
  background: #fff1c2;
  box-shadow: 0 12px 0 rgba(16,17,20,0.15);
}

.fk-note {
  margin-top: 24px;
  padding: 22px;
  border-left: 6px solid var(--blue);
  background: rgba(36, 92, 255, 0.08);
}

.fk-note p:last-child {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.4;
}

.game-actions {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.game-actions button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.game-result {
  margin-top: 32px;
}

.share-box {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 238, 0.72);
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.share-options button {
  min-height: 72px;
}

.compact-visual {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
}

.presentation-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36,92,255,0.14), rgba(232,93,69,0.08)),
    #eef1f2;
}

.presentation-visual span {
  position: absolute;
  display: block;
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(16, 17, 20, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.presentation-visual span:nth-child(1) {
  left: 13%;
  top: 15%;
  width: 70%;
  height: 18%;
}

.presentation-visual span:nth-child(2) {
  left: 21%;
  top: 40%;
  width: 58%;
  height: 18%;
}

.presentation-visual span:nth-child(3) {
  left: 31%;
  top: 65%;
  width: 42%;
  height: 18%;
  background: rgba(36, 92, 255, 0.82);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  nav {
    gap: 12px;
    font-size: 13px;
  }

  nav a:not(.nav-cta):nth-child(3) {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-visual {
    opacity: 0.72;
  }

  .statement-grid,
  .product-grid,
  .related-articles div,
  .split-section,
  .feature-panel,
  .contact-section,
  .pricing-section,
  .pricing-section.two,
  .two-column-list,
  .game-promo,
  .game-hero,
  .comic-panel-stage,
  .choice-grid,
  .share-options {
    grid-template-columns: 1fr;
  }

  .statement-grid p {
    min-height: 118px;
  }

  .feature-panel {
    margin: 0 16px;
  }

  .contact-copy {
    position: static;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .precision-visual,
  .compact-visual,
  .presentation-visual {
    min-height: 270px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 19px;
  }

  nav {
    gap: 8px;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .hero-home h1 {
    font-size: 49px;
  }

  h2 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

  .actions {
    width: 100%;
  }
}
