html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

#root {
  min-height: 100dvh;
}
:root {
  --canvas: #f6f7fb;
  --surface: #ffffff;
  --surface-soft: #eef1f8;
  --surface-strong: #e4e8f3;
  --ink: #171923;
  --ink-secondary: #4f5568;
  --ink-muted: #606678;
  --border: #d9deea;
  --line: #d9deea;
  --accent: #3156d9;
  --cobalt: #3156d9;
  --accent-hover: #2747bb;
  --accent-soft: #e7ecff;
  --coral-art: #f26b54;
  --mint-art: #97d5c9;
  --yellow-art: #f0bd43;
  --container: 1240px;
  --radius-control: 14px;
  --radius-card: 20px;
  --radius-media: 28px;
  --shadow-sm: 0 8px 24px rgba(29, 43, 81, 0.08);
  --shadow-md: 0 20px 60px rgba(29, 43, 81, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: 'Segoe UI Variable', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius-control);
  transform: translateY(-160%);
  transition: transform 160ms var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
section[id] {
  scroll-margin-top: 88px;
}
.section-heading {
  max-width: 560px;
}
.section-heading.narrow {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading h2,
.presentation-copy h2,
.editor-copy h2,
.value-grid > h2,
.disclosure-panel h2,
.final-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
.section-heading p,
.presentation-copy > p,
.editor-copy > p,
.disclosure-panel > p,
.final-copy > p {
  margin: 20px 0 0;
  color: var(--ink-secondary);
  font-size: 20px;
  line-height: 1.5;
}
.eyebrow,
.card-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 222, 234, 0.84);
  background: rgba(246, 247, 251, 0.94);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.wordmark {
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 26px;
}
.main-nav a {
  color: var(--ink-secondary);
  font-size: 15px;
  font-weight: 600;
}
.header-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease);
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.98);
}
.button:focus-visible,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(49, 86, 217, 0.34);
  outline-offset: 3px;
}
.button-primary {
  color: #fff;
  background: var(--accent);
}
.button-primary:hover {
  background: var(--accent-hover);
}
.button-secondary {
  border-color: var(--border);
  background: var(--surface);
}
.button-ghost {
  background: transparent;
}
.button-sm {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}
.button-lg {
  min-height: 54px;
  padding-inline: 28px;
}
.button-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero {
  min-height: 748px;
  display: flex;
  align-items: center;
  padding: 54px 0 74px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
}
.hero-copy h1 {
  max-width: 590px;
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -2px;
}
.hero-lead {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--ink-secondary);
  font-size: 20px;
  line-height: 1.5;
}
.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.capability-section {
  background: var(--surface);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 245px;
  gap: 20px;
}
.cap-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}
.cap-card-content {
  position: relative;
  z-index: 2;
}
.cap-card-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44%;
  object-fit: cover;
  object-position: center;
}
.cap-card h3 {
  max-width: 340px;
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.cap-card p {
  max-width: 400px;
  margin: 14px 0 0;
  color: var(--ink-secondary);
}
.cap-card-large {
  grid-column: span 7;
  grid-row: span 2;
}
.cap-card-tall {
  grid-column: span 5;
  grid-row: span 2;
  background: var(--surface-soft);
}
.cap-card-soft {
  grid-column: span 4;
  background: #edf5f2;
}
.cap-card-wide {
  grid-column: span 5;
  background: var(--accent-soft);
}
.cap-card-coral {
  grid-column: span 3;
  background: #fbeae6;
}
.cap-card-yellow {
  grid-column: span 4;
  background: #fff4d5;
}
.cap-card-cobalt {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.cap-card-cobalt .card-kicker,
.cap-card-cobalt p {
  color: rgba(255, 255, 255, 0.88);
}
.cap-card-large .cap-card-photo {
  height: 52%;
  object-position: center 56%;
}
.cap-card-large::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: calc(52% - 1px);
  left: 0;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  content: '';
  pointer-events: none;
}
.cap-card-tall .cap-card-photo {
  height: 56%;
  object-position: center;
}
.prompt-preview {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(49, 86, 217, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}
.prompt-preview span {
  color: var(--ink-secondary);
}
.prompt-preview b {
  align-self: flex-start;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
}
.experience-section {
  background: var(--surface-soft);
}
.experience-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: 64px;
}
.task-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}
.task-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  color: var(--ink-secondary);
  background: transparent;
  text-align: left;
}
.task-button span {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
}
.task-button.active {
  color: var(--ink);
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.experience-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.experience-toolbar {
  display: flex;
  height: 68px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}
.toolbar-title {
  font-weight: 700;
}
.experience-toolbar a {
  margin-left: auto;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.experience-body {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 520px;
}
.slide-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 16px;
  border-right: 1px solid var(--border);
  background: #f4f5f9;
}
.slide-thumb {
  display: grid;
  height: 68px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink-muted);
  background: var(--surface);
  font-size: 12px;
}
.slide-thumb.selected {
  border: 2px solid var(--accent);
}
.slide-canvas {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 42px;
  padding: 54px;
  border-radius: 18px;
  color: #fff;
  background: #1d2741;
}
.slide-label {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(20, 27, 47, 0.86);
  font-size: 14px;
  font-weight: 700;
}
.slide-canvas strong {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 10px;
  align-self: flex-start;
  color: #fff;
  background: rgba(20, 27, 47, 0.92);
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -1px;
}
.slide-art {
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral-art);
}
.slide-art i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--mint-art);
}
.slide-art i:nth-child(1) {
  left: -80px;
  bottom: -30px;
  width: 160px;
  height: 160px;
}
.slide-art i:nth-child(2) {
  top: -46px;
  left: 44px;
  width: 92px;
  height: 92px;
  background: var(--yellow-art);
}

.showcase-section {
  background: var(--canvas);
}
.gallery-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-md);
}
.gallery-media img {
  width: 100%;
  height: 690px;
  object-fit: cover;
}

.steps-section {
  background: var(--surface);
}
.steps-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.steps-flow li {
  min-height: 240px;
  padding: 34px 42px 20px 0;
  border-right: 1px solid var(--border);
}
.steps-flow li + li {
  padding-left: 42px;
}
.steps-flow li:last-child {
  border-right: 0;
}
.steps-flow span,
.value-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(49, 86, 217, 0.16);
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 8px 20px rgba(49, 86, 217, 0.08);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.steps-flow h3 {
  margin: 28px 0 12px;
  font-size: 26px;
}
.steps-flow p {
  margin: 0;
  color: var(--ink-secondary);
}

.presentation-section {
  background: var(--surface-soft);
}
.presentation-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 5vw, 72px);
}
.presentation-copy {
  max-width: 470px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 800;
}
.presentation-visual {
  position: relative;
  height: 560px;
}
.deck-card {
  position: absolute;
  right: 0;
  width: 560px;
  height: 380px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.deck-stage-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.deck-stage-heading span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: rgba(49, 86, 217, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.deck-stage-heading strong {
  color: var(--ink);
  font-size: 16px;
}
.deck-outline {
  width: 62%;
  margin-top: 38px;
}
.deck-outline i {
  display: block;
  height: 12px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e6eaf2;
}
.deck-outline i:nth-child(2) {
  width: 82%;
}
.deck-outline i:nth-child(3) {
  width: 54%;
}
.deck-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 72px);
  gap: 12px;
  width: 72%;
  margin-top: 34px;
}
.deck-layout i {
  border: 1px solid rgba(49, 86, 217, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}
.deck-layout i:first-child {
  grid-row: span 2;
  background: rgba(49, 86, 217, 0.1);
}
.deck-card-back {
  top: 0;
  right: 80px;
  transform: rotate(-6deg);
  color: var(--ink-muted);
}
.deck-card-middle {
  top: 60px;
  right: 38px;
  transform: rotate(3deg);
  color: var(--ink-muted);
  background: #fff5d8;
}
.deck-card-front {
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--accent);
}
.deck-card-front strong {
  position: relative;
  z-index: 2;
  max-width: 430px;
  font-size: 42px;
  line-height: 1.06;
}
.deck-badge {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
}
.deck-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.deck-chart {
  position: absolute;
  top: 28px;
  right: 34px;
  display: flex;
  height: 150px;
  align-items: flex-end;
  gap: 12px;
}
.deck-chart i {
  width: 38px;
  height: 54px;
  border-radius: 10px 10px 0 0;
  background: var(--mint-art);
}
.deck-chart i:nth-child(2) {
  height: 92px;
  background: var(--yellow-art);
}
.deck-chart i:nth-child(3) {
  height: 126px;
  background: var(--coral-art);
}
.deck-chart i:nth-child(4) {
  height: 76px;
  background: rgba(255, 255, 255, 0.74);
}

.before-after-section {
  background: var(--canvas);
}
.before-after-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-md);
}
.before-after-media img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}
.before-after-media figcaption {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
}
.before-after-media figcaption span {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.editor-section {
  background: var(--surface);
}
.editor-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 72px;
}
.editor-panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  background: var(--surface-soft);
  box-shadow: var(--shadow-md);
}
.editor-menu {
  display: flex;
  gap: 4px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.editor-menu a {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 12px;
  color: var(--ink-secondary);
  background: transparent;
}
.editor-menu a.active {
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 700;
}
.editor-preview {
  position: relative;
  min-height: 540px;
  padding: 42px;
}
.editor-photo {
  position: relative;
  overflow: hidden;
  height: 456px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #15335a 0 50%, #f0b33e 50% 100%);
}
.editor-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.editor-status b {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
}
.editor-artboard {
  position: relative;
  width: min(72%, 380px);
  height: 330px;
  margin: 26px auto 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f0e7;
  box-shadow: 0 22px 52px rgba(9, 26, 52, 0.3);
}
.editor-artboard-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 56%;
  padding: 30px 0 0 28px;
}
.editor-artboard-copy small {
  color: #9b6845;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.editor-artboard-copy strong {
  margin-top: 13px;
  color: #152641;
  font-size: 27px;
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.editor-artboard-copy span {
  margin-top: 12px;
  color: #6c6e70;
  font-size: 10px;
  line-height: 1.45;
}
.editor-artwork {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 74%;
  background: #dbc4aa;
}
.editor-artwork i {
  position: absolute;
  display: block;
}
.editor-artwork i:first-child {
  top: 24px;
  right: 24px;
  width: 72px;
  height: 112px;
  border: 8px solid #f3e6d5;
  background: #8eb6ae;
}
.editor-artwork i:nth-child(2) {
  right: 22px;
  bottom: 0;
  width: 108px;
  height: 82px;
  border-radius: 48px 48px 10px 10px;
  background: #325b59;
}
.editor-artwork i:nth-child(3) {
  right: 104px;
  bottom: 18px;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: #a66c48;
  box-shadow: 0 18px 0 -2px #a66c48;
}
.editor-palette {
  position: absolute;
  bottom: 22px;
  left: 28px;
  display: flex;
  gap: 6px;
}
.editor-palette i {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #315b59;
  box-shadow: 0 2px 8px rgba(21, 38, 65, 0.12);
}
.editor-palette i:nth-child(2) {
  background: #dbc4aa;
}
.editor-palette i:nth-child(3) {
  background: #a66c48;
}
.editor-selection {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 138px;
  height: 112px;
  border: 1.5px solid #3156d9;
  pointer-events: none;
}
.editor-selection i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #3156d9;
  background: #fff;
}
.editor-selection i:nth-child(1) {
  top: -4px;
  left: -4px;
}
.editor-selection i:nth-child(2) {
  top: -4px;
  right: -4px;
}
.editor-selection i:nth-child(3) {
  bottom: -4px;
  left: -4px;
}
.editor-selection i:nth-child(4) {
  right: -4px;
  bottom: -4px;
}
.control-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 270px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}
.control-row + .control-row {
  margin-top: 10px;
}
.control-card label {
  display: flex;
  justify-content: space-between;
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 700;
}
.control-card input {
  width: 100%;
  accent-color: var(--accent);
}
.editor-copy {
  max-width: 420px;
}
.editor-copy .button {
  margin-top: 28px;
}

.usecase-section {
  background: var(--surface-soft);
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 280px 250px;
  gap: 20px;
}
.usecase-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}
.usecase-grid span {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
}
.usecase-grid h3 {
  margin: 16px 0 0;
  font-size: 28px;
  line-height: 1.1;
}
.usecase-grid p {
  max-width: 420px;
  color: var(--ink-secondary);
}
.usecase-grid article > span,
.usecase-grid article > h3,
.usecase-grid article > p {
  position: relative;
  z-index: 1;
}
.usecase-main {
  grid-row: span 2;
  background: #1d2741 !important;
  color: #fff;
}
.usecase-main p,
.usecase-main span {
  color: rgba(255, 255, 255, 0.72);
}
.usecase-main::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--coral-art);
}
.usecase-blue {
  background: var(--accent) !important;
  color: #fff;
}
.usecase-blue span {
  color: rgba(255, 255, 255, 0.88);
}
.usecase-photo {
  background: #edf5f2 !important;
}
.usecase-photo::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: -28px;
  width: 130px;
  height: 180px;
  border-radius: 70px 70px 18px 18px;
  background: var(--mint-art);
}
.usecase-paper {
  background: #fff4d5 !important;
}
.usecase-list {
  background: #fbeae6 !important;
}
.usecase-grid article::after {
  z-index: 0;
}
.usecase-art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.usecase-art i {
  position: absolute;
  display: block;
}
.usecase-art-deck {
  right: 34px;
  bottom: 36px;
  left: 34px;
  height: 150px;
}
.usecase-art-deck i {
  bottom: 0;
  width: 66%;
  height: 112px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(9, 17, 42, 0.2);
}
.usecase-art-deck i:nth-child(1) {
  left: 0;
  transform: rotate(-4deg);
}
.usecase-art-deck i:nth-child(2) {
  right: 0;
  width: 48%;
  height: 92px;
  background: var(--yellow-art);
  transform: rotate(5deg);
}
.usecase-art-deck i:nth-child(3) {
  right: 38px;
  bottom: -8px;
  width: 44%;
  height: 72px;
  background: var(--coral-art);
}
.usecase-art-social {
  right: 22px;
  bottom: 18px;
  width: 138px;
  height: 104px;
}
.usecase-art-social i {
  bottom: 0;
  width: 58px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}
.usecase-art-social i:nth-child(1) {
  left: 0;
  height: 82px;
}
.usecase-art-social i:nth-child(2) {
  right: 0;
  height: 104px;
  background: var(--yellow-art);
}
.usecase-art-social i:nth-child(3) {
  right: 36px;
  height: 62px;
  background: var(--coral-art);
}
.usecase-art-product {
  right: 24px;
  bottom: 20px;
  width: 132px;
  height: 118px;
}
.usecase-art-product i:nth-child(1) {
  inset: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}
.usecase-art-product i:nth-child(2) {
  right: 18px;
  bottom: 16px;
  width: 56px;
  height: 66px;
  border-radius: 28px 28px 12px 12px;
  background: var(--mint-art);
}
.usecase-art-product i:nth-child(3) {
  top: 20px;
  left: 18px;
  width: 38px;
  height: 7px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 14px 0 rgba(49, 86, 217, 0.2);
}
.usecase-art-paper {
  right: 26px;
  bottom: 18px;
  width: 112px;
  height: 122px;
  transform: rotate(3deg);
}
.usecase-art-paper i:nth-child(1) {
  inset: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(89, 67, 18, 0.12);
}
.usecase-art-paper i:nth-child(2) {
  top: 18px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral-art);
}
.usecase-art-paper i:nth-child(3) {
  bottom: 24px;
  left: 18px;
  width: 52px;
  height: 7px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 14px 0 rgba(49, 86, 217, 0.18);
}
.usecase-art-formats {
  right: 22px;
  bottom: 20px;
  left: 22px;
  height: 76px;
}
.usecase-art-formats i {
  bottom: 0;
  width: 31%;
  border-radius: 12px;
}
.usecase-art-formats i:nth-child(1) {
  left: 0;
  height: 52px;
  background: var(--yellow-art);
}
.usecase-art-formats i:nth-child(2) {
  left: 34.5%;
  height: 76px;
  background: var(--coral-art);
}
.usecase-art-formats i:nth-child(3) {
  right: 0;
  height: 60px;
  background: var(--mint-art);
}

.workflow-section {
  background: var(--canvas);
}
.workflow-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 80px;
}
.workflow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--accent);
}
.workflow-line article {
  min-height: 190px;
  padding: 26px 20px 20px 0;
}
.workflow-line span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.workflow-line strong {
  display: block;
  margin-top: 56px;
  font-size: 19px;
  line-height: 1.3;
}

.value-section {
  background: var(--surface);
}
.value-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 100px;
}
.value-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.value-list article:first-child {
  padding-top: 0;
}
.value-list h3 {
  margin: 0;
  font-size: 24px;
}
.value-list p {
  margin: 8px 0 0;
  color: var(--ink-secondary);
}

.disclosure-section {
  background: var(--surface-soft);
}
.disclosure-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  background: var(--surface);
}

.faq-section {
  background: var(--canvas);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: start;
  gap: 92px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list summary {
  position: relative;
  padding: 26px 44px 26px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list p {
  max-width: 690px;
  margin: -6px 0 26px;
  color: var(--ink-secondary);
}

.final-section {
  padding: 96px 0 56px;
  background: var(--surface);
}
.final-panel {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: var(--accent-soft);
  text-align: center;
}
.final-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.final-copy .button {
  margin-top: 30px;
}
.final-orbit {
  position: absolute;
  inset: 0;
}
.orbit-card {
  position: absolute;
  width: 190px;
  height: 150px;
  border: 12px solid var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.orbit-one {
  top: 50px;
  left: 70px;
  transform: rotate(-9deg);
  background: var(--coral-art);
}
.orbit-two {
  top: 78px;
  right: 60px;
  transform: rotate(8deg);
  background: var(--yellow-art);
}
.orbit-three {
  right: 110px;
  bottom: 48px;
  transform: rotate(-5deg);
  background: var(--mint-art);
}

.site-footer {
  padding: 72px 0 30px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
}
.footer-grid h3 {
  margin: 0 0 18px;
  font-size: 14px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid > div a {
  margin: 7px 0;
  color: var(--ink-secondary);
  font-size: 14px;
}
.footer-copyright {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

@media (max-width: 1180px) {
  .presentation-grid,
  .editor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .presentation-copy,
  .editor-copy {
    max-width: 720px;
  }
  .presentation-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }
  .editor-panel {
    width: min(100%, 900px);
    margin-inline: auto;
  }
}

@media (max-width: 1023px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }
  .main-nav {
    display: none;
  }
  .hero-grid,
  .experience-grid,
  .workflow-grid,
  .value-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    min-height: auto;
  }
  .hero-media img {
    height: 520px;
  }
  .cap-card-large,
  .cap-card-tall {
    grid-column: span 6;
  }
  .cap-card-soft,
  .cap-card-wide,
  .cap-card-coral,
  .cap-card-yellow {
    grid-column: span 6;
  }
  .presentation-copy,
  .editor-copy {
    max-width: 720px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }
  .section {
    padding: 56px 0;
  }
  .section-heading h2,
  .presentation-copy h2,
  .editor-copy h2,
  .value-grid > h2,
  .disclosure-panel h2,
  .final-copy h2 {
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }
  .section-heading p,
  .presentation-copy > p,
  .editor-copy > p,
  .disclosure-panel > p,
  .final-copy > p {
    font-size: 18px;
    line-height: 1.55;
  }
  .header-inner {
    height: 66px;
    gap: 16px;
  }
  .site-header {
    position: relative;
    top: auto;
    backdrop-filter: none;
  }
  .header-actions .button-ghost {
    display: none;
  }
  .header-actions .button-primary {
    min-height: 42px;
    padding-inline: 15px;
  }
  .hero {
    padding: 48px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.8px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-media img {
    height: 330px;
  }
  .section-heading.narrow {
    margin-bottom: 34px;
  }
  .capability-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .cap-card,
  .cap-card-large,
  .cap-card-tall,
  .cap-card-soft,
  .cap-card-wide,
  .cap-card-coral,
  .cap-card-yellow {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }
  .cap-card-photo {
    height: 42%;
  }
  .cap-card-large {
    min-height: 360px;
  }
  .cap-card-tall {
    min-height: 340px;
  }
  .cap-card-large .cap-card-photo {
    height: 42%;
  }
  .cap-card-tall .cap-card-photo {
    height: 50%;
  }
  .cap-card-large::after {
    bottom: calc(42% - 1px);
  }
  .experience-grid {
    gap: 36px;
  }
  .experience-toolbar {
    min-height: 64px;
    height: auto;
    gap: 12px;
    padding: 12px 16px;
  }
  .toolbar-title {
    min-width: 0;
    line-height: 1.25;
  }
  .experience-toolbar a {
    flex: none;
  }
  .experience-body {
    display: block;
    min-height: auto;
    padding: 16px;
  }
  .slide-rail {
    display: none;
  }
  .slide-canvas {
    min-height: 360px;
    margin: 0;
    padding: 24px;
  }
  .slide-canvas strong {
    max-width: 280px;
    font-size: 32px;
  }
  .slide-art {
    right: -48px;
    bottom: -36px;
    width: 240px;
    height: 240px;
  }
  .gallery-media img,
  .before-after-media img {
    height: 360px;
  }
  .steps-flow {
    grid-template-columns: 1fr;
  }
  .steps-flow li,
  .steps-flow li + li {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .steps-flow h3 {
    margin-top: 18px;
  }
  .presentation-grid {
    gap: 36px;
  }
  .presentation-visual {
    height: 360px;
  }
  .deck-card {
    width: calc(100% - 42px);
    height: 260px;
    padding: 24px;
  }
  .deck-card-back {
    right: 34px;
  }
  .deck-card-middle {
    top: 46px;
    right: 16px;
  }
  .deck-card-front strong {
    font-size: 27px;
  }
  .deck-stage-heading,
  .deck-stage-heading strong {
    font-size: 13px;
  }
  .deck-stage-heading span {
    width: 28px;
    height: 28px;
  }
  .deck-outline {
    margin-top: 22px;
  }
  .deck-outline i {
    height: 8px;
    margin-top: 10px;
  }
  .deck-layout {
    grid-template-rows: repeat(2, 45px);
    margin-top: 20px;
  }
  .deck-meta {
    margin-top: 16px;
    padding-top: 10px;
    font-size: 9px;
  }
  .editor-preview {
    min-height: 430px;
    padding: 18px;
  }
  .editor-photo {
    height: 390px;
    padding: 20px;
  }
  .editor-artboard {
    width: min(78%, 340px);
    height: 300px;
    margin-top: 20px;
  }
  .editor-artboard-copy {
    padding: 24px 0 0 22px;
  }
  .editor-artboard-copy strong {
    font-size: 23px;
  }
  .editor-artwork {
    width: 58%;
  }
  .control-card {
    width: calc(100% - 36px);
  }
  .usecase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .usecase-grid article {
    min-height: 260px;
    grid-row: auto;
  }
  .usecase-grid .usecase-main {
    min-height: 400px;
    grid-row: auto;
  }
  .usecase-main::after {
    right: -32px;
    bottom: -60px;
    width: 120px;
    height: 120px;
  }
  .workflow-line {
    grid-template-columns: 1fr 1fr;
  }
  .workflow-line article {
    min-height: 150px;
  }
  .workflow-line strong {
    margin-top: 30px;
  }
  .disclosure-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px;
  }
  .final-panel {
    min-height: 480px;
    padding: 44px 24px;
  }
  .final-orbit {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .reveal-copy,
  .motion-enabled .reveal-visual,
  .motion-enabled .reveal-item {
    will-change: transform, filter, clip-path;
  }
  .motion-enabled .reveal-copy {
    transform: translateY(24px);
    clip-path: inset(0 0 16% 0);
    filter: blur(3px);
    transition:
      transform 680ms var(--ease),
      clip-path 680ms var(--ease),
      filter 520ms var(--ease);
  }
  .motion-enabled .reveal-visual {
    transform: translateY(30px) scale(0.985);
    clip-path: inset(3% 0 5% 0 round var(--radius-media));
    filter: saturate(0.88) blur(2px);
    transition:
      transform 760ms var(--ease),
      clip-path 760ms var(--ease),
      filter 680ms var(--ease);
  }
  .motion-enabled .reveal-item {
    transform: translateY(18px);
    filter: blur(2px);
    transition:
      transform 580ms var(--ease),
      filter 460ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .motion-enabled .reveal-copy.is-visible,
  .motion-enabled .reveal-visual.is-visible,
  .motion-enabled .reveal-item.is-visible {
    transform: none;
    filter: none;
  }
  .motion-enabled .reveal-copy.is-visible {
    clip-path: inset(0);
  }
  .motion-enabled .reveal-visual.is-visible {
    clip-path: inset(0 round var(--radius-media));
  }
  .motion-enabled .reveal-copy.is-visible,
  .motion-enabled .reveal-visual.is-visible,
  .motion-enabled .reveal-item.is-visible {
    will-change: auto;
  }
  .experience-body {
    animation: experience-swap 440ms var(--ease) both;
  }
  @keyframes experience-swap {
    from {
      opacity: 0.35;
      transform: translateX(12px);
      filter: blur(3px);
    }
    to {
      opacity: 1;
      transform: none;
      filter: none;
    }
  }
  .cap-card,
  .usecase-grid article {
    transition:
      transform 260ms var(--ease),
      box-shadow 260ms var(--ease);
  }
  .cap-card:hover,
  .usecase-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .button:active {
    transform: scale(0.98);
    transition-duration: 110ms;
  }
}

/* SEO landing template */
.seo-page {
  background: var(--canvas);
}
.seo-hero {
  padding-top: clamp(48px, 7vw, 104px);
}
.seo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
}
.seo-hero-copy h1 {
  max-width: 760px;
  margin: 16px 0 24px;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--ink-muted);
  font-size: 13px;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.seo-hero-media,
.seo-example-media {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #e8edf7;
  box-shadow: 0 28px 72px rgba(24, 31, 56, 0.13);
}
.seo-hero-media img,
.seo-example-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-hero-media {
  aspect-ratio: 8 / 5;
}
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.seo-card {
  min-height: 330px;
  padding: 30px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
}
.seo-card:nth-child(1),
.seo-card:nth-child(4) {
  grid-column: span 3;
}
.seo-card:nth-child(2),
.seo-card:nth-child(3),
.seo-card:nth-child(5) {
  grid-column: span 2;
}
.seo-card span,
.seo-benefit-grid span {
  margin-bottom: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--cobalt);
}
.seo-card > span {
  margin-bottom: 0;
}
.seo-card h3,
.seo-benefit-grid h3 {
  margin: 26px 0 10px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.seo-card p,
.seo-benefit-grid p,
.seo-usecase-list p,
.seo-step-list p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}
.seo-card-1 {
  background: var(--cobalt);
  color: #fff;
}
.seo-card-1 span,
.seo-card-1 p {
  color: #fff;
}
.seo-card-2 {
  background: #e8f8f4;
}
.seo-card-3 {
  background: #fff0eb;
}
.seo-card-art {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 78px;
  margin: 22px 0 auto;
}
.seo-card-art i {
  display: block;
  flex: 1;
  max-width: 92px;
  height: 58%;
  border-radius: 12px;
  background: rgba(49, 86, 217, 0.16);
}
.seo-card-art i:nth-child(2) {
  height: 100%;
  background: var(--mint-art);
}
.seo-card-art i:nth-child(3) {
  height: 76%;
  background: var(--yellow-art);
}
.seo-card-1 .seo-card-art i {
  background: rgba(255, 255, 255, 0.92);
}
.seo-card-1 .seo-card-art i:nth-child(2) {
  background: var(--yellow-art);
}
.seo-card-1 .seo-card-art i:nth-child(3) {
  background: var(--coral-art);
}
.seo-card-2 .seo-card-art {
  align-items: center;
}
.seo-card-2 .seo-card-art i {
  height: 58px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: transparent;
}
.seo-card-2 .seo-card-art i:nth-child(2) {
  height: 76px;
  background: rgba(151, 213, 201, 0.8);
  transform: rotate(4deg);
}
.seo-card-2 .seo-card-art i:nth-child(3) {
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-art);
}
.seo-card-3 .seo-card-art i {
  height: 64px;
  border-radius: 50%;
  background: var(--coral-art);
}
.seo-card-3 .seo-card-art i:nth-child(2) {
  height: 76px;
  border: 2px solid var(--coral-art);
  border-radius: 15px;
  background: transparent;
}
.seo-card-3 .seo-card-art i:nth-child(3) {
  height: 46px;
  border-radius: 12px;
  background: var(--mint-art);
}
.seo-workflow {
  background: #121a31;
  color: #fff;
}
.seo-workflow .eyebrow {
  color: #a9bcff;
}
.seo-audience {
  background: var(--surface);
}
.seo-audience-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: start;
}
.seo-audience-list {
  border-top: 1px solid var(--border);
}
.seo-audience-list article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.seo-audience-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.seo-audience-list p {
  max-width: 62ch;
  margin: 0;
  color: var(--ink-secondary);
  font-size: 18px;
  line-height: 1.55;
}
.seo-workflow-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: center;
}
.seo-workflow-grid > * {
  min-width: 0;
}
.seo-workflow h2 {
  margin: 14px 0 42px;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.seo-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seo-step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.seo-step-list li > span {
  color: #75dfcb;
  font-size: 13px;
  font-weight: 800;
}
.seo-step-list h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.seo-step-list p {
  color: rgba(255, 255, 255, 0.68);
}
.seo-product-ui {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #f6f7fb;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}
.seo-ui-toolbar {
  min-height: 68px;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dfe4ef;
}
.seo-ui-toolbar span {
  margin-right: auto;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.seo-ui-toolbar i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #eef1f7;
}
.seo-ui-toolbar b {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--cobalt);
  color: #fff;
  font-size: 12px;
}
.seo-ui-body {
  min-width: 0;
  min-height: 430px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
}
.seo-ui-rail {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #e9edf5;
}
.seo-ui-rail span {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  background: #fff;
  color: var(--ink-muted);
  font-size: 11px;
}
.seo-ui-canvas {
  min-width: 0;
  margin: 34px;
  padding: 34px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.seo-ui-canvas small {
  color: var(--cobalt);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.seo-ui-canvas strong {
  max-width: 420px;
  margin-top: 14px;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.seo-ui-art {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.5fr;
  gap: 10px;
  align-items: end;
  height: 140px;
  margin-top: auto;
}
.seo-ui-art i {
  display: block;
  height: 68%;
  border-radius: 14px;
  background: #bdebe1;
}
.seo-ui-art i:nth-child(2) {
  height: 100%;
  background: #ffb29f;
}
.seo-ui-art i:nth-child(3) {
  height: 46%;
  background: #ffd75a;
}
.seo-usecases-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.seo-example-media {
  aspect-ratio: 16 / 10;
}
.seo-usecase-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.seo-usecase-list article {
  padding: 22px;
  border-top: 1px solid var(--border);
}
.seo-usecase-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.seo-benefits {
  background: #eef2f9;
}
.seo-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.seo-benefit-grid article {
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
}
.seo-benefit-grid article > span {
  margin-bottom: 0;
}
.seo-benefit-art {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 68px;
  margin: 22px 0 auto;
}
.seo-benefit-art i {
  display: block;
  width: 28%;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
}
.seo-benefit-art i:nth-child(2) {
  height: 68px;
  background: var(--coral-art);
}
.seo-benefit-art i:nth-child(3) {
  height: 56px;
  background: var(--mint-art);
}
.seo-benefit-grid article:nth-child(2) .seo-benefit-art {
  align-items: center;
}
.seo-benefit-grid article:nth-child(2) .seo-benefit-art i {
  height: 58px;
  border: 2px solid var(--accent);
  background: transparent;
}
.seo-benefit-grid article:nth-child(2) .seo-benefit-art i:nth-child(2) {
  height: 68px;
  border-color: var(--coral-art);
  transform: rotate(5deg);
}
.seo-benefit-grid article:nth-child(2) .seo-benefit-art i:nth-child(3) {
  height: 42px;
  border-color: var(--mint-art);
  border-radius: 50%;
}
.seo-benefit-grid article:nth-child(3) .seo-benefit-art i {
  height: 42px;
  border-radius: 21px;
  background: var(--yellow-art);
}
.seo-benefit-grid article:nth-child(3) .seo-benefit-art i:nth-child(2) {
  height: 58px;
  background: var(--accent);
}
.seo-benefit-grid article:nth-child(3) .seo-benefit-art i:nth-child(3) {
  height: 50px;
  background: var(--mint-art);
}
.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-links a {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.related-links a:hover {
  transform: translateY(-3px);
  border-color: var(--cobalt);
}
.related-links span {
  color: var(--cobalt);
  font-size: 28px;
}
.not-found {
  min-height: 72vh;
  padding: 140px 0 100px;
  display: grid;
  align-items: center;
}
.not-found h1 {
  max-width: 760px;
  margin: 12px 0 24px;
  font-size: clamp(64px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.not-found p {
  max-width: 620px;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .seo-hero-grid,
  .seo-workflow-grid,
  .seo-usecases-grid,
  .seo-audience-grid {
    grid-template-columns: 1fr;
  }
  .seo-hero-media {
    max-height: 620px;
  }
  .seo-card:nth-child(n) {
    grid-column: span 3;
  }
}

@media (max-width: 700px) {
  .seo-hero {
    padding-top: 36px;
  }
  .seo-hero-grid {
    gap: 38px;
  }
  .seo-hero-copy h1 {
    font-size: clamp(44px, 13vw, 64px);
  }
  .seo-workflow h2 {
    font-size: clamp(34px, 10.5vw, 42px);
    overflow-wrap: break-word;
  }
  .seo-hero-media {
    border-radius: 24px;
    aspect-ratio: 1 / 1;
  }
  .breadcrumbs {
    margin-bottom: 20px;
  }
  .seo-card-grid,
  .seo-usecase-list,
  .seo-benefit-grid,
  .related-links {
    grid-template-columns: 1fr;
  }
  .seo-card:nth-child(n) {
    grid-column: auto;
    min-height: 300px;
  }
  .seo-audience-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
  .seo-audience-list p {
    font-size: 16px;
  }
  .seo-ui-body {
    min-height: 330px;
    grid-template-columns: 58px 1fr;
  }
  .seo-ui-canvas {
    margin: 16px;
    padding: 22px;
  }
  .seo-ui-canvas small,
  .seo-ui-canvas strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .seo-ui-canvas strong {
    font-size: 22px;
    line-height: 1.08;
  }
  .seo-ui-art {
    height: 110px;
  }
  .seo-benefit-grid article {
    min-height: 300px;
  }
  .related-links a {
    min-height: 120px;
  }
}

@media (max-width: 360px) {
  .seo-ui-body {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .seo-ui-rail {
    padding: 12px 6px;
  }
  .seo-ui-canvas {
    margin: 12px;
    padding: 18px;
  }
  .seo-ui-canvas small {
    font-size: 10px;
    overflow-wrap: normal;
  }
  .seo-ui-canvas strong {
    font-size: 19px;
    overflow-wrap: normal;
  }
}
