/* ============================================================================
   Immersed Advertising — design system
   ============================================================================
   Hand-written CSS, no build step, no CDN. Replaces cdn.tailwindcss.com, which
   compiles in the browser on every page load: a third-party runtime dependency
   plus a flash of unstyled content, neither acceptable on a public site.

   Direction: clean light SaaS structure (spacious, quiet chrome, tabular
   numbers) with bold editorial punch on marketing surfaces (oversized type,
   hard colour blocks, high contrast).

   Organisation:
     1. Tokens
     2. Reset + base
     3. Layout
     4. Type
     5. Buttons
     6. Forms
     7. Cards, tiles, tables, badges
     8. Nav + footer
     9. Marketing (landing page only)
    10. Utilities
    11. Responsive
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Ink — warm-neutral greys, not blue-greys, so the accent stays the only hue. */
  --ink-900: #14131a;
  --ink-800: #24222e;
  --ink-700: #3a3745;
  --ink-600: #55515f;
  --ink-500: #767281;
  --ink-400: #a29ead;
  --ink-300: #cdc9d4;
  --ink-200: #e5e2ea;
  --ink-100: #f1eff4;
  --ink-050: #f8f7fa;
  --white: #ffffff;

  /* Accent — violet reads as "game tech" without being a neon cliché. */
  --accent-700: #4c1fb8;
  --accent-600: #5b28d9;
  --accent-500: #6d3ded;
  --accent-100: #ece5fe;
  --accent-050: #f5f1ff;

  /* Support */
  --lime-500: #b8f000; /* editorial highlight; used sparingly, on dark only */
  --ok-700: #15704a;
  --ok-100: #dcf5e8;
  --warn-700: #8a5a00;
  --warn-100: #fdf1d6;
  --bad-700: #a1202c;
  --bad-100: #fde4e6;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(20, 19, 26, 0.06);
  --shadow: 0 2px 8px rgba(20, 19, 26, 0.07), 0 1px 2px rgba(20, 19, 26, 0.05);
  --shadow-lg: 0 12px 32px rgba(20, 19, 26, 0.13), 0 2px 8px rgba(20, 19, 26, 0.06);

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  --page: 1120px;
  --page-narrow: 760px;
}

/* ---------- 2. Reset + base --------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--ink-050);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-600);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Visible focus for keyboard users on every interactive element. */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- 3. Layout --------------------------------------------------- */
.page {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px;
}
.page--narrow {
  max-width: var(--page-narrow);
}
.main {
  padding: 32px 0 72px;
}
.stack > * + * {
  margin-top: 16px;
}
.stack-lg > * + * {
  margin-top: 32px;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.row--between {
  justify-content: space-between;
}
.row--wrap {
  flex-wrap: wrap;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section {
  padding: 72px 0;
}
.section--tight {
  padding: 44px 0;
}
.section--ink {
  background: var(--ink-900);
  color: var(--ink-100);
}
.section--accent {
  background: var(--accent-050);
}

/* ---------- 4. Type ----------------------------------------------------- */
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 650;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 15px;
}
p {
  margin: 0;
}
.lede {
  font-size: 18px;
  color: var(--ink-600);
  line-height: 1.6;
}
.muted {
  color: var(--ink-500);
}
.small {
  font-size: 13px;
}
.tiny {
  font-size: 12px;
}
.strong {
  font-weight: 600;
}
.mono {
  font-family: var(--font-mono);
  font-size: 13px;
}
/* Tabular figures so money and counts line up down a column. */
.num {
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.section--ink .eyebrow {
  color: var(--lime-500);
}
.section--ink h1,
.section--ink h2,
.section--ink h3 {
  color: var(--white);
}
.section--ink .lede,
.section--ink .muted {
  color: var(--ink-300);
}

/* ---------- 5. Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease,
    transform 0.06s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent-600);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-700);
}
.btn--dark {
  background: var(--ink-900);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--ink-800);
}
.btn--ghost {
  background: var(--white);
  color: var(--ink-800);
  border-color: var(--ink-300);
}
.btn--ghost:hover {
  background: var(--ink-050);
  border-color: var(--ink-400);
}
.btn--danger {
  background: var(--white);
  color: var(--bad-700);
  border-color: #f0c2c7;
}
.btn--danger:hover {
  background: var(--bad-100);
}
.btn--lg {
  padding: 14px 26px;
  font-size: 16px;
}
.btn--sm {
  padding: 6px 12px;
  font-size: 13px;
}
.btn--block {
  width: 100%;
}
/* A button that should read as a plain link (inline form actions). */
.btn-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--accent-600);
  cursor: pointer;
  text-decoration: underline;
}
.btn-link--muted {
  color: var(--ink-500);
}

/* ---------- 6. Forms --------------------------------------------------- */
.field {
  display: block;
}
.field + .field {
  margin-top: 16px;
}
.label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.hint {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 6px;
}
.input,
.select,
.textarea {
  width: 100%;
  font: inherit;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: var(--radius);
  padding: 9px 12px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-100);
  outline: none;
}
.textarea {
  min-height: 90px;
  resize: vertical;
}
.input[type="file"] {
  padding: 8px;
  background: var(--ink-050);
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-700);
  cursor: pointer;
}
.check input {
  margin: 3px 0 0;
  flex: none;
  accent-color: var(--accent-600);
}
/* Multi-select checkbox groups (targeting, platforms, art styles…). */
.checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px 16px;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* ---------- 7. Cards, tiles, tables, badges --------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card--flush {
  padding: 0;
  overflow: hidden;
}
.card__head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-200);
}
.card__body {
  padding: 20px;
}
.card-title {
  font-size: 15px;
  font-weight: 650;
  color: var(--ink-900);
}

/* Stat tile: label above, big tabular figure below. */
.tile {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.tile__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.tile__value {
  font-size: 26px;
  font-weight: 650;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.tile__note {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}

.table-wrap {
  overflow-x: auto;
}
table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 10px 12px;
  border-bottom: 1px solid var(--ink-200);
  white-space: nowrap;
}
.table td {
  padding: 12px;
  border-bottom: 1px solid var(--ink-100);
  vertical-align: top;
}
.table tbody tr:last-child td {
  border-bottom: 0;
}
.table tbody tr:hover {
  background: var(--ink-050);
}
.table .right,
.right {
  text-align: right;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-700);
  white-space: nowrap;
}
.badge--ok {
  background: var(--ok-100);
  color: var(--ok-700);
}
.badge--warn {
  background: var(--warn-100);
  color: var(--warn-700);
}
.badge--bad {
  background: var(--bad-100);
  color: var(--bad-700);
}
.badge--accent {
  background: var(--accent-100);
  color: var(--accent-700);
}

.note {
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid;
}
.note--info {
  background: var(--accent-050);
  border-color: #d9cbfc;
  color: var(--accent-700);
}
.note--ok {
  background: var(--ok-100);
  border-color: #b6e6cd;
  color: var(--ok-700);
}
.note--warn {
  background: var(--warn-100);
  border-color: #f0d79a;
  color: var(--warn-700);
}
.note--bad {
  background: var(--bad-100);
  border-color: #f0c2c7;
  color: var(--bad-700);
}

.empty {
  border: 1px dashed var(--ink-300);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--ink-500);
  font-size: 14px;
}

.divider {
  border: 0;
  border-top: 1px solid var(--ink-200);
  margin: 24px 0;
}

/* Read-only key/value detail lists (game profile, campaign targeting). */
.dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
}
.dl > div {
  min-width: 0;
}
.dl--wide > div {
  grid-column: 1 / -1;
}
.dl .span-2 {
  grid-column: 1 / -1;
}
.dl dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.dl dd {
  margin: 2px 0 0;
  color: var(--ink-900);
  font-size: 14px;
}
.dl dd.pre {
  white-space: pre-wrap;
}
.break {
  overflow-wrap: anywhere;
}
@media (max-width: 640px) {
  .dl {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Copy-to-clipboard key/URL display. */
.keyline {
  display: flex;
  gap: 8px;
  align-items: center;
}
.keyline code {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--ink-900);
  color: #e9e4ff;
  padding: 9px 12px;
  border-radius: var(--radius);
}

/* ---------- 8. Nav + footer ------------------------------------------- */
.nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--ink-200);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-size: 16px;
}
.brand:hover {
  text-decoration: none;
}
.brand__mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent-600);
  position: relative;
  flex: none;
}
/* A small "frame within a frame" — the billboard idea, at favicon scale. */
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 7px 6px;
  border: 2px solid var(--lime-500);
  border-radius: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink-700);
  font-weight: 500;
}
.nav__links a:hover {
  color: var(--ink-900);
  text-decoration: none;
}
.nav__links a.is-active {
  color: var(--accent-700);
  font-weight: 600;
}
.nav__who {
  color: var(--ink-500);
  font-size: 13px;
}

.footer {
  background: var(--ink-900);
  color: var(--ink-400);
  padding: 44px 0 32px;
  font-size: 14px;
}
.footer a {
  color: var(--ink-200);
}
.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li + li {
  margin-top: 7px;
}
.footer__bar {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-800);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- 9. Marketing ---------------------------------------------- */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 460px at 78% -8%, var(--accent-050), transparent 62%),
    linear-gradient(180deg, var(--white), var(--ink-050));
  border-bottom: 1px solid var(--ink-200);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
/* Editorial display type — the one place the site raises its voice. */
.display {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink-900);
}
.display em {
  font-style: normal;
  color: var(--accent-600);
}
/* Hard colour block behind a phrase — bold-editorial, used exactly once. */
.mark {
  background: var(--lime-500);
  color: var(--ink-900);
  padding: 0 0.14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__proof {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-500);
}

/* Before/after: the product demo. */
.ba {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* Stacked, not side by side. In the hero's half-width column two 16:9 images
   side by side are ~215px wide each, which makes the ad content — the entire
   point of the comparison — unreadable. Stacking doubles each one's width and
   reads as a clearer before -> after. */
.ba__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.ba__cell {
  padding: 14px;
}
.ba__cell + .ba__cell {
  border-top: 1px solid var(--ink-200);
  background: var(--accent-050);
}
.ba__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 9px;
}
.ba__cell + .ba__cell .ba__tag {
  color: var(--accent-700);
}
.ba__img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-200);
  background: var(--ink-100);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.ba__foot {
  border-top: 1px solid var(--ink-200);
  padding: 11px 14px;
  font-size: 12px;
  color: var(--ink-500);
  background: var(--white);
}

/* Numbered step list. */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 44px;
}
.steps li + li {
  margin-top: 20px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-100);
  color: var(--accent-700);
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.section--ink .steps li::before {
  background: var(--accent-600);
  color: var(--white);
}

.feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-100);
  color: var(--accent-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.section--ink .feature__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime-500);
}

.faq {
  border-top: 1px solid var(--ink-200);
}
.faq details {
  border-bottom: 1px solid var(--ink-200);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent-600);
  font-weight: 700;
  flex: none;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  margin-top: 10px;
  color: var(--ink-600);
}

/* Auth pages: a single centred card. */
.auth {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: start center;
  padding: 56px 24px 72px;
}
.auth__card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.auth__switch {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-500);
  text-align: center;
}

/* ---------- 10. Utilities --------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 32px; }
.flex-1 { flex: 1; min-width: 0; }
.nowrap { white-space: nowrap; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.center { text-align: center; }
.hide { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 11. Responsive -------------------------------------------- */
@media (max-width: 900px) {
  .hero__grid,
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding: 56px 0 48px;
  }
  .section {
    padding: 52px 0;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav__inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
  }
  .nav__links {
    gap: 14px;
    font-size: 13px;
    flex-wrap: wrap;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .main {
    padding: 20px 0 56px;
  }
  .card,
  .auth__card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* The same logo and centered wordmark used on the public site. */
.brand__logo{width:36px;height:36px;object-fit:contain;flex:none}
.brand__wordmark{display:block;font-size:23px;font-weight:750;line-height:1.05;letter-spacing:-1px;text-align:center}
.brand__subtitle{display:block;font-size:12px;font-weight:600;line-height:1.2;letter-spacing:1.3px;text-indent:1.3px;margin-top:5px;text-align:center}
.brand__logo{clip-path:none}

/* Explicit policy consent and the ComfyUI sample studio */
.legal-consent{margin:18px 0;padding:16px;background:#f3f6ed;border:1px solid #dce4d3;border-radius:10px;font-size:13px;line-height:1.65}
.legal-consent label{display:flex;align-items:flex-start;gap:11px;cursor:pointer}.legal-consent input[type=checkbox]{width:18px;height:18px;flex:0 0 18px;margin-top:4px;accent-color:#31523b}
.legal-links{display:block;margin-top:6px}.legal-links a{text-decoration:underline;text-underline-offset:3px}
.sample-studio .page-header{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.sample-allowance{display:grid;padding:16px 24px;background:#e9f0e1;border-radius:12px;color:#31523b;font-size:13px}.sample-allowance strong{font-size:26px}
.sample-worlds{border:0;padding:0;margin:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.sample-worlds legend{float:none;font-weight:700;font-size:18px;margin-bottom:15px}.sample-world{position:relative;border:2px solid #e1e6da;border-radius:12px;overflow:hidden;cursor:pointer;min-width:0}
.sample-world:has(input:checked){border-color:#36583e;box-shadow:0 0 0 2px #d7e5cb}.sample-world input{position:absolute;top:12px;left:12px;width:20px;height:20px;accent-color:#36583e;z-index:1}
.sample-world img{width:100%;height:150px;object-fit:cover;display:block}.sample-world-copy{display:grid;gap:6px;padding:15px}.sample-world-copy strong{font-size:17px}.sample-world-copy span{font-size:12px;color:#527047}.sample-world-copy small{line-height:1.55;color:#6b7662}
.sample-comparison{display:grid;grid-template-columns:1fr 1fr;gap:20px}.sample-comparison figure{min-width:0}.sample-comparison img{width:100%;aspect-ratio:16/9;object-fit:contain;background:#f1f3ed;border:1px solid #e0e5d9;border-radius:8px}.sample-comparison figcaption{font-size:12px;margin-top:8px;color:#64715a}
.sample-scene{display:block;width:100%;border-radius:10px}.sample-result{scroll-margin-top:30px}.sample-result h3{font-size:20px}
.sample-studio .hint{max-width:75ch;line-height:1.7}.sample-form>.btn:disabled{opacity:.6;cursor:wait}.sample-studio figure{margin-inline:0}
@media(max-width:700px){.sample-worlds{grid-template-columns:1fr}.sample-world{display:grid;grid-template-columns:130px 1fr}.sample-world img{height:100%;min-height:140px}.sample-comparison{grid-template-columns:1fr}.sample-allowance{width:100%}.legal-consent{font-size:12px;padding:13px}.sample-result .row{align-items:flex-start;flex-wrap:wrap}}
