:root {
  --ink: #f5efe4;
  --muted: #b9b1a5;
  --paper: #14171b;
  --paper-strong: #1d2229;
  --paper-soft: #252b33;
  --cream: #f1e8d8;
  --cream-strong: #fffaf0;
  --line: #35404c;
  --blue: #7d91ac;
  --blue-deep: #101721;
  --blue-black: #111820;
  --green: #566c5e;
  --moss: #8f9b82;
  --clay: #8a665f;
  --gold: #c2a46b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(49, 67, 47, 0.34);
  background:
    linear-gradient(90deg, rgba(190, 204, 164, 0.97), rgba(165, 184, 144, 0.97));
  box-shadow: 0 8px 24px rgba(38, 48, 35, 0.14);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: grid;
  width: min(300px, 34vw);
}

.brand-link img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(5, 12, 23, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  color: #253126;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #4d351f;
}

.site-nav .nav-cta {
  border: 1px solid rgba(45, 62, 43, 0.38);
  border-radius: 6px;
  background: rgba(245, 239, 228, 0.74);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 23, 33, 0.22);
  border-radius: 6px;
  background: var(--cream-strong);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-deep);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 52px) 120px;
}

.concept-world {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 84% 17%, rgba(127, 54, 39, 0.08), transparent 19%),
    radial-gradient(circle at 72% 76%, rgba(55, 43, 35, 0.09), transparent 28%),
    repeating-linear-gradient(8deg, rgba(72, 57, 45, 0.025) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, #e7ddcc 0%, #d9cbb7 54%, #cdbca4 100%);
}

.concept-world > * {
  z-index: 2;
}

.concept-world::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 72%;
  height: 76%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 54% 54%, rgba(31, 28, 26, 0.17) 0 3%, transparent 3.5%),
    radial-gradient(ellipse at 48% 65%, rgba(31, 28, 26, 0.1) 0 20%, transparent 49%),
    radial-gradient(ellipse at 70% 48%, rgba(31, 28, 26, 0.08) 0 18%, transparent 52%);
  filter: blur(8px);
  transform: rotate(-8deg);
}

.concept-world::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 8%;
  height: 2px;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent, rgba(43, 35, 30, 0.42) 12%, rgba(43, 35, 30, 0.2) 78%, transparent);
  box-shadow:
    0 7px 0 rgba(43, 35, 30, 0.06),
    0 -5px 0 rgba(43, 35, 30, 0.04);
  transform: rotate(-1deg);
}

.sun,
.cloud,
.mountain,
.shrine,
.tree,
.signal {
  position: absolute;
}

.sun {
  width: 116px;
  height: 116px;
  right: 10%;
  top: 11%;
  border-radius: 50%;
  background: rgba(139, 55, 39, 0.68);
  box-shadow:
    inset 8px -5px 0 rgba(85, 37, 30, 0.12),
    0 0 0 8px rgba(139, 55, 39, 0.035);
  opacity: 0.84;
}

.cloud {
  width: 220px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(44, 38, 34, 0.26) 18% 78%, transparent);
  box-shadow:
    38px 15px 0 -5px rgba(44, 38, 34, 0.14),
    -24px 27px 0 -7px rgba(44, 38, 34, 0.12),
    74px 34px 0 -7px rgba(44, 38, 34, 0.09);
  filter: blur(1px);
}

.cloud-one {
  top: 19%;
  right: 32%;
  transform: rotate(-3deg);
}

.cloud-two {
  top: 31%;
  right: 7%;
  transform: scale(0.72) rotate(4deg);
}

.mountain {
  bottom: 9%;
  width: min(520px, 43vw);
  height: 58%;
  background:
    linear-gradient(138deg, transparent 0 38%, rgba(39, 34, 31, 0.12) 38.5% 41%, transparent 41.5%),
    linear-gradient(42deg, transparent 0 48%, rgba(39, 34, 31, 0.17) 48.5% 51%, transparent 51.5%),
    linear-gradient(136deg, transparent 0 54%, rgba(39, 34, 31, 0.09) 54.5% 57%, transparent 57.5%);
  clip-path: polygon(0 100%, 13% 73%, 25% 82%, 45% 29%, 55% 49%, 67% 15%, 79% 53%, 90% 38%, 100% 100%);
  filter: drop-shadow(0 8px 0 rgba(49, 40, 34, 0.05));
}

.mountain-one {
  right: 2%;
}

.mountain-two {
  right: 27%;
  bottom: 5%;
  opacity: 0.52;
  transform: scale(0.78);
  transform-origin: bottom right;
}

.shrine {
  right: clamp(70px, 9vw, 150px);
  bottom: 10%;
  width: 190px;
  height: 154px;
  z-index: 7;
  background:
    linear-gradient(90deg, transparent 0 20px, rgba(40, 34, 30, 0.76) 20px 28px, transparent 28px 162px, rgba(40, 34, 30, 0.72) 162px 170px, transparent 170px),
    linear-gradient(90deg, transparent 0 82px, rgba(40, 34, 30, 0.76) 82px 108px, transparent 108px),
    linear-gradient(180deg, transparent 0 50px, rgba(40, 34, 30, 0.08) 50px 146px, transparent 146px);
  box-shadow:
    inset 0 -3px 0 rgba(40, 34, 30, 0.46),
    9px 7px 0 -7px rgba(40, 34, 30, 0.24);
  opacity: 0.82;
}

.shrine::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 22px;
  width: 230px;
  height: 48px;
  background: rgba(37, 32, 29, 0.78);
  clip-path: polygon(0 65%, 12% 46%, 23% 35%, 31% 12%, 50% 27%, 69% 12%, 77% 35%, 88% 46%, 100% 65%, 95% 77%, 5% 77%);
  filter: drop-shadow(0 5px 0 rgba(37, 32, 29, 0.16));
}

.shrine::after {
  content: "";
  position: absolute;
  left: 76px;
  bottom: 3px;
  width: 38px;
  height: 66px;
  background:
    linear-gradient(90deg, rgba(40, 34, 30, 0.72) 0 3px, transparent 3px 18px, rgba(40, 34, 30, 0.72) 18px 21px, transparent 21px 35px, rgba(40, 34, 30, 0.72) 35px 38px),
    linear-gradient(180deg, transparent 0 31px, rgba(40, 34, 30, 0.68) 31px 34px, transparent 34px);
}

.tree {
  width: 98px;
  height: 180px;
  opacity: 0.66;
  filter: drop-shadow(8px 8px 0 rgba(45, 37, 32, 0.06));
}

.tree::before {
  content: "";
  position: absolute;
  left: 46px;
  bottom: 0;
  width: 7px;
  height: 136px;
  border-radius: 50% 50% 20% 20%;
  background: rgba(39, 34, 31, 0.75);
  transform: rotate(2deg);
}

.tree::after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 98px;
  height: 145px;
  background:
    linear-gradient(155deg, transparent 0 42%, rgba(38, 33, 30, 0.7) 43% 48%, transparent 49%),
    linear-gradient(205deg, transparent 0 42%, rgba(38, 33, 30, 0.62) 43% 48%, transparent 49%),
    linear-gradient(160deg, transparent 0 56%, rgba(38, 33, 30, 0.52) 57% 62%, transparent 63%),
    linear-gradient(200deg, transparent 0 56%, rgba(38, 33, 30, 0.48) 57% 62%, transparent 63%);
  clip-path: polygon(50% 0, 58% 15%, 53% 24%, 78% 39%, 62% 46%, 92% 61%, 68% 68%, 100% 84%, 57% 78%, 51% 100%, 44% 79%, 0 85%, 31% 68%, 7% 62%, 38% 46%, 21% 39%, 47% 24%, 42% 15%);
}

.tree-one {
  right: 23%;
  bottom: 7%;
  z-index: 7;
  transform: scale(1.08) rotate(-2deg);
}

.tree-two {
  right: 39%;
  bottom: 11%;
  z-index: 3;
  transform: scale(0.72) rotate(4deg);
  opacity: 0.4;
}

.tree-three {
  right: 2%;
  bottom: 5%;
  z-index: 8;
  transform: scale(1.2) rotate(2deg);
}

.tree-four {
  right: 21%;
  bottom: 12%;
  z-index: 4;
  transform: scale(0.62) rotate(-4deg);
  opacity: 0.36;
}

.signal {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(52, 43, 37, 0.18);
  border-radius: 50%;
  opacity: 0.38;
}

.signal::before,
.signal::after {
  content: "";
  position: absolute;
  background: rgba(52, 43, 37, 0.32);
}

.signal::before {
  left: 50%;
  top: 12px;
  width: 1px;
  height: 92px;
}

.signal::after {
  left: 12px;
  top: 50%;
  width: 92px;
  height: 1px;
}

.signal-one {
  top: 14%;
  right: 23%;
  transform: rotate(9deg);
}

.signal-two {
  left: 43%;
  bottom: 10%;
  transform: scale(0.58) rotate(-12deg);
}

.signal-three {
  right: 3%;
  top: 42%;
  transform: scale(0.68) rotate(18deg);
}

.hero-content {
  width: min(760px, 100%);
  color: #211c18;
  text-shadow: 0 1px 0 rgba(255, 250, 240, 0.35);
}

.hero .eyebrow {
  color: #6f4b3f;
}

.hero-copy {
  color: #51473f;
}

.hero .button.primary {
  color: #f7efe2;
  background: #28211d;
}

.hero .button.secondary {
  color: #2c2520;
  border-color: rgba(44, 37, 32, 0.34);
  background: rgba(239, 228, 210, 0.7);
}

.primary-logo {
  width: min(340px, 76vw);
  margin-bottom: 24px;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 22px rgba(41, 103, 184, 0.18));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
}

.hero-copy,
.section-copy p,
.section-heading p,
.feature-card p,
.roadmap-list p,
.contact-section p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: #51473f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  color: var(--cream-strong);
  background: #22334a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  border: 1px solid rgba(125, 145, 172, 0.32);
  background: rgba(37, 43, 51, 0.72);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #0f141b;
  border-top: 1px solid rgba(125, 145, 172, 0.2);
  border-bottom: 1px solid rgba(125, 145, 172, 0.2);
}

.status-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: var(--paper-strong);
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip strong {
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.status-strip span {
  color: var(--muted);
}

.section {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.section[id] {
  scroll-margin-top: 128px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.section-copy {
  max-width: 560px;
}

.asset-section {
  border-top: 1px solid rgba(125, 145, 172, 0.18);
}

.asset-heading {
  max-width: 800px;
}

.asset-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.asset-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 145, 172, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, #252b33, #1d2229);
  box-shadow: var(--shadow);
}

.concept-card {
  grid-column: 1 / -1;
}

.asset-frame {
  display: grid;
  place-items: center;
  min-height: 290px;
  padding: clamp(20px, 4vw, 44px);
  overflow: hidden;
  border-bottom: 1px solid rgba(125, 145, 172, 0.16);
  background:
    radial-gradient(circle at 50% 42%, rgba(194, 164, 107, 0.13), transparent 42%),
    linear-gradient(135deg, #171b20, #202831);
}

.concept-card .asset-frame {
  min-height: 720px;
}

.concept-card .asset-frame img {
  width: min(100%, 760px);
  border-radius: 4px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.sprite-card .asset-frame img,
.npc-card .asset-frame img,
.enemy-card .asset-frame img {
  width: min(100%, 384px);
}

.enemy-card .asset-frame {
  background:
    radial-gradient(circle at 50% 46%, rgba(143, 155, 130, 0.3), transparent 46%),
    linear-gradient(135deg, #171d1a, #263127);
}

.enemy-card .asset-frame img {
  width: min(100%, 256px);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.32));
}

.inn-card .asset-frame img {
  width: min(100%, 420px);
}

.pixel-frame img {
  image-rendering: pixelated;
}

.asset-card figcaption {
  padding: 22px 24px 26px;
}

.asset-card figcaption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-card h3 {
  margin: 8px 0 10px;
  color: var(--cream-strong);
  font-size: 1.35rem;
}

.asset-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border: 1px solid rgba(125, 145, 172, 0.18);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(37, 43, 51, 0.98), rgba(29, 34, 41, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.feature-card img {
  width: min(155px, 100%);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 16px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 12px rgba(241, 232, 216, 0.12));
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  border-top: 1px solid rgba(125, 145, 172, 0.18);
}

.ai-preview {
  min-height: 440px;
  border: 1px solid rgba(125, 145, 172, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 25% 22%, rgba(201, 155, 67, 0.18), transparent 28%),
    linear-gradient(135deg, #20252b, #2b3848 58%, #1d2025);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.workspace-panel {
  width: min(460px, 82%);
  min-height: 300px;
  border: 1px solid rgba(255, 254, 250, 0.22);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 254, 250, 0.14), 0 30px 70px rgba(0, 0, 0, 0.28);
  padding: 18px;
}

.panel-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 254, 250, 0.16);
}

.panel-bar span {
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #7fa0ca;
}

.node-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 166px;
  margin: 24px 0;
}

.node-map::before {
  content: "";
  position: absolute;
  inset: 23px 42px;
  border: 1px solid rgba(127, 160, 202, 0.34);
  border-radius: 8px;
}

.node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(127, 160, 202, 0.5);
  border-radius: 6px;
  color: #d9e5f6;
  background: rgba(23, 25, 28, 0.56);
  font-weight: 800;
}

.node.core {
  grid-column: 2;
  color: #17191c;
  background: #c6d8f0;
}

.terminal-lines {
  display: grid;
  gap: 9px;
}

.terminal-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(217, 229, 246, 0.28);
}

.terminal-lines span:nth-child(2) {
  width: 72%;
}

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

.roadmap-section {
  border-top: 1px solid rgba(125, 145, 172, 0.18);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
}

.roadmap-list li {
  min-height: 230px;
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--paper-strong);
}

.roadmap-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.9rem;
}

.roadmap-list strong {
  display: block;
  font-size: 1.18rem;
}

.contact-section {
  width: min(var(--max-width), calc(100% - 36px));
  margin-bottom: clamp(56px, 7vw, 92px);
  padding: clamp(30px, 5vw, 46px);
  border: 1px solid rgba(125, 145, 172, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #1d2229, #252b33);
  box-shadow: var(--shadow);
}

.contact-section > img {
  width: min(190px, 58vw);
  filter:
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 14px rgba(241, 232, 216, 0.12));
}

.contact-section .button {
  justify-self: end;
}

.site-footer {
  margin-top: 0;
  padding: 30px 18px 0;
  border-top: 1px solid rgba(87, 116, 154, 0.34);
  background: #17191c;
  overflow: hidden;
}

.site-footer img {
  width: min(230px, 58vw);
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
}

.footer-copy {
  margin: 0 -18px;
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(87, 116, 154, 0.22);
  color: rgba(245, 239, 228, 0.74);
  background: #0f141b;
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid rgba(49, 67, 47, 0.34);
    background: rgba(177, 194, 153, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 8px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-content {
    width: min(430px, 100%);
  }

  .concept-world {
    opacity: 0.82;
  }

  .tree-one {
    right: 19%;
  }

  .status-strip,
  .ai-section,
  .feature-grid,
  .capability-grid,
  .roadmap-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section .button {
    justify-self: start;
  }
}

@media (max-width: 1100px) and (min-width: 861px) {
  .hero-content {
    width: min(620px, 100%);
  }
}

@media (max-width: 700px) and (min-width: 561px) {
  .hero-content {
    width: min(390px, 100%);
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 8.5vw, 3.2rem);
    line-height: 1.03;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-right: 20px;
    padding-left: 20px;
    overflow-x: clip;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .brand-link {
    width: min(230px, calc(100vw - 112px));
  }

  .primary-logo {
    width: min(280px, 78vw);
    margin-bottom: 18px;
  }

  .concept-world {
    opacity: 0.72;
  }

  .shrine,
  .tree {
    display: none;
  }

  .mountain {
    right: -28%;
    width: 110%;
    opacity: 0.38;
  }

  .mountain-two,
  .cloud-two,
  .signal-two,
  .signal-three {
    display: none;
  }

  .sun {
    right: 9%;
    top: 13%;
    transform: scale(0.72);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.04;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .asset-showcase {
    grid-template-columns: 1fr;
  }

  .concept-card {
    grid-column: auto;
  }

  .concept-card .asset-frame {
    min-height: 380px;
  }

  .asset-frame {
    min-height: 260px;
    padding: 18px;
  }

}

@media (max-width: 900px) {
  .asset-showcase {
    grid-template-columns: 1fr;
  }

  .concept-card {
    grid-column: auto;
  }

  .concept-card .asset-frame {
    min-height: clamp(380px, 54vw, 520px);
  }
}
