:root {
  color-scheme: dark;
  --bg: #020704;
  --panel: rgba(3, 30, 16, 0.78);
  --panel-strong: rgba(5, 42, 21, 0.9);
  --line: rgba(145, 255, 96, 0.64);
  --line-soft: rgba(94, 255, 112, 0.22);
  --green: #7cff4d;
  --green-2: #13f088;
  --gold: #e2ff8b;
  --text: #f4fff0;
  --muted: #c7d7c5;
  --shadow: rgba(53, 255, 83, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 12%, rgba(48, 255, 60, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(28, 255, 140, 0.18), transparent 22rem),
    linear-gradient(180deg, #010503 0%, #031108 50%, #020604 100%);
  color: var(--text);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(84, 255, 59, 0.25) 39%, transparent 42%),
    linear-gradient(158deg, transparent 0 62%, rgba(19, 240, 136, 0.18) 63%, transparent 66%),
    repeating-linear-gradient(90deg, rgba(115, 255, 102, 0.05) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(115, 255, 102, 0.035) 0 1px, transparent 1px 112px);
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

body::after {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(145, 255, 96, 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 238, 93, 0.7) 0 1px, transparent 1.8px);
  background-position:
    0 0,
    34px 42px;
  background-size:
    120px 120px,
    180px 180px;
  opacity: 0.34;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 34px;
}

.brand {
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: clamp(58px, 7vw, 82px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 255, 77, 0.58);
  border-radius: 28% 36% 30% 40%;
  background:
    radial-gradient(circle at 58% 36%, rgba(255, 255, 255, 0.78), transparent 10%),
    linear-gradient(135deg, #baff83 0%, #24f27c 42%, #067a2e 100%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.36),
    0 0 30px rgba(91, 255, 78, 0.48);
  transform: rotate(-8deg);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--green-2);
  box-shadow: 0 0 12px rgba(19, 240, 136, 0.8);
  content: "";
}

.brand-mark::before {
  left: -14px;
  top: 60%;
}

.brand-mark::after {
  right: -14px;
  top: 32%;
}

.brand-mark span {
  width: 58%;
  aspect-ratio: 1;
  display: block;
  border-radius: 26% 42% 30% 45%;
  background: rgba(0, 10, 5, 0.76);
  clip-path: polygon(16% 10%, 84% 50%, 16% 90%);
  position: relative;
}

.brand-mark span::before,
.brand-mark span::after {
  position: absolute;
  top: 41%;
  width: 6px;
  height: 18px;
  border-radius: 8px;
  background: #d7ffb4;
  box-shadow: 0 0 12px rgba(124, 255, 77, 0.92);
  content: "";
}

.brand-mark span::before {
  left: 30%;
}

.brand-mark span::after {
  left: 50%;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  color: #f8fff1;
  font-size: clamp(27px, 3.4vw, 46px);
  line-height: 1;
  font-weight: 950;
  text-shadow:
    0 2px 0 rgba(51, 126, 28, 0.95),
    0 0 22px rgba(124, 255, 77, 0.62);
}

.brand-text em {
  color: #e5f4df;
  font-style: normal;
  font-size: clamp(13px, 1.4vw, 19px);
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(124, 255, 77, 0.36);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eaffdf;
  font-size: 15px;
}

.nav-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
}

.nav-actions a:hover,
.nav-cta {
  border-color: var(--line);
  background: rgba(25, 255, 93, 0.1);
  box-shadow: 0 0 22px rgba(77, 255, 69, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 24px 0 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 18px var(--shadow);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.96;
  font-weight: 950;
  text-shadow:
    0 4px 0 rgba(59, 142, 38, 0.95),
    0 0 24px rgba(127, 255, 68, 0.6),
    0 0 58px rgba(127, 255, 68, 0.38);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.7;
}

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

.primary-btn,
.ghost-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(180deg, #9cff5b 0%, #17b12e 50%, #0a6a20 100%);
  box-shadow:
    inset 0 2px 12px rgba(255, 255, 255, 0.46),
    0 0 34px rgba(68, 255, 55, 0.46);
}

.ghost-btn {
  background: rgba(4, 39, 20, 0.62);
  color: #dcffd1;
}

.btn-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #fff;
  transform: rotate(-26deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
}

.promo-stage {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(4, 38, 20, 0.64), rgba(4, 13, 8, 0.95));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 48px rgba(48, 255, 74, 0.24);
  overflow: hidden;
}

.promo-stage img {
  width: 100%;
  aspect-ratio: 941 / 1672;
  object-fit: cover;
  object-position: center top;
}

.intro-panel,
.project-panel,
.ip-section,
.more-panel,
.contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 56, 28, 0.78), rgba(2, 15, 8, 0.88)),
    radial-gradient(circle at 80% 30%, rgba(80, 255, 80, 0.2), transparent 26rem);
  box-shadow:
    inset 0 0 28px rgba(68, 255, 80, 0.08),
    0 0 44px rgba(48, 255, 74, 0.12);
}

.intro-panel {
  padding: clamp(24px, 4vw, 46px);
}

.section-heading,
.panel-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.panel-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 950;
  text-shadow: 0 0 24px rgba(127, 255, 68, 0.45);
}

.section-icon {
  flex: 0 0 auto;
  width: clamp(64px, 8vw, 92px);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 255, 77, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(163, 255, 96, 0.35), rgba(7, 88, 31, 0.88) 62%, rgba(3, 18, 10, 0.95));
  box-shadow:
    inset 0 0 20px rgba(178, 255, 113, 0.25),
    0 0 28px rgba(86, 255, 64, 0.22);
  position: relative;
}

.section-icon::before,
.section-icon::after {
  position: absolute;
  inset: 25%;
  content: "";
  border: 3px solid var(--gold);
}

.chip-icon::before {
  border-radius: 6px;
}

.chip-icon::after {
  inset: 41% 32%;
  border-width: 0;
  border-left: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(22px, 5vw, 64px);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  color: #f6fff1;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #e5ff9b, #68f943);
  box-shadow: 0 0 14px rgba(148, 255, 80, 0.9);
  content: "";
}

.text-link {
  border-bottom: 1px solid rgba(124, 255, 77, 0.58);
  color: #f9fff4;
  text-shadow: 0 0 14px rgba(124, 255, 77, 0.36);
}

.text-link:hover {
  color: var(--green);
}

.ai-console {
  min-height: 300px;
  position: relative;
  display: grid;
  place-items: center;
}

.console-screen {
  width: min(440px, 100%);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 1px solid rgba(98, 255, 118, 0.46);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(51, 255, 97, 0.26), transparent 36%),
    linear-gradient(135deg, rgba(8, 32, 23, 0.98), rgba(1, 10, 6, 0.98));
  box-shadow:
    inset 0 0 40px rgba(34, 255, 91, 0.16),
    0 26px 50px rgba(0, 0, 0, 0.42);
  transform: perspective(800px) rotateY(-8deg);
}

.console-screen span {
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(113, 255, 77, 0.74);
  border-radius: 50%;
  color: var(--green);
  font-size: 56px;
  font-weight: 950;
  text-shadow: 0 0 20px var(--shadow);
}

.console-screen i,
.console-screen b {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  content: "";
}

.console-screen i {
  width: 76%;
  height: 1px;
}

.console-screen b {
  width: 1px;
  height: 74%;
}

.floating-widget {
  position: absolute;
  width: 138px;
  height: 70px;
  border: 1px solid rgba(108, 255, 100, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(123, 255, 88, 0.18) 0 32%, transparent 32%),
    rgba(9, 62, 33, 0.86);
  box-shadow: 0 0 24px rgba(77, 255, 75, 0.22);
}

.widget-a {
  top: 28px;
  left: 2%;
}

.widget-b {
  right: 2%;
  top: 56px;
}

.widget-c {
  right: 12%;
  bottom: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.project-panel {
  min-height: 340px;
  padding: clamp(22px, 3.4vw, 38px);
  position: relative;
  overflow: hidden;
}

.compact {
  margin-top: 28px;
  font-size: clamp(17px, 1.8vw, 22px);
}

.handshake-icon::before {
  inset: 30% 18%;
  border-width: 0;
  border-top: 8px solid var(--gold);
  transform: rotate(-32deg);
}

.handshake-icon::after {
  inset: 30% 18%;
  border-width: 0;
  border-top: 8px solid var(--gold);
  transform: rotate(32deg);
}

.network-map {
  position: absolute;
  right: -10%;
  bottom: -16%;
  width: 68%;
  aspect-ratio: 1.4;
  opacity: 0.58;
  background:
    radial-gradient(circle at 28% 46%, var(--green) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 28%, var(--green) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 62%, var(--green) 0 2px, transparent 3px),
    linear-gradient(27deg, transparent 49.7%, rgba(124, 255, 77, 0.65) 50%, transparent 50.3%),
    linear-gradient(155deg, transparent 49.7%, rgba(124, 255, 77, 0.5) 50%, transparent 50.3%);
  filter: drop-shadow(0 0 18px rgba(83, 255, 73, 0.7));
}

.store-panel {
  background:
    linear-gradient(120deg, rgba(3, 18, 9, 0.88), rgba(8, 60, 28, 0.48)),
    radial-gradient(circle at 70% 70%, rgba(77, 255, 72, 0.26), transparent 18rem);
}

.store-icon::before {
  inset: 29% 26% 25%;
  border-width: 0 3px 3px;
}

.store-icon::after {
  inset: 22% 22% 54%;
  border-width: 0;
  background: var(--gold);
  clip-path: polygon(0 100%, 15% 0, 85% 0, 100% 100%);
}

.store-visual {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(58%, 320px);
  min-height: 160px;
}

.car-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 2.5;
  border-radius: 48% 52% 20% 18% / 64% 68% 30% 32%;
  background:
    radial-gradient(circle at 22% 88%, #050705 0 11%, #78ff39 12% 18%, transparent 19%),
    radial-gradient(circle at 78% 88%, #050705 0 11%, #78ff39 12% 18%, transparent 19%),
    linear-gradient(135deg, #b7ff44, #12a72c 44%, #053a13);
  box-shadow: 0 0 34px rgba(82, 255, 54, 0.42);
}

.store-visual strong {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--green);
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.35;
  text-align: right;
  text-shadow: 0 0 16px var(--shadow);
}

.ip-section {
  margin-top: 22px;
  min-height: 260px;
  padding: clamp(22px, 3.4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.ip-section p {
  margin: 26px 0 0;
  color: #f2fff0;
  font-size: clamp(18px, 2vw, 24px);
}

.ip-icon::before {
  inset: 28%;
  border-radius: 50%;
}

.ip-icon::after {
  inset: 42% 35% 32%;
  border-width: 0 3px 3px;
  border-radius: 0 0 18px 18px;
}

.ip-toys {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  min-height: 190px;
}

.ip-toys span {
  width: clamp(72px, 10vw, 128px);
  aspect-ratio: 0.8;
  border-radius: 45% 45% 38% 38%;
  position: relative;
  background:
    radial-gradient(circle at 35% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 65% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 50% 48%, #fff7e8 0 19%, transparent 19.5%),
    linear-gradient(180deg, #b8ff7a, #5c9f32);
  box-shadow: inset 0 -10px 24px rgba(0, 0, 0, 0.26), 0 16px 30px rgba(0, 0, 0, 0.28);
}

.ip-toys span::before,
.ip-toys span::after {
  position: absolute;
  top: 3%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.ip-toys span::before {
  left: -10%;
}

.ip-toys span::after {
  right: -10%;
}

.ip-toys span:nth-child(2) {
  background:
    radial-gradient(circle at 35% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 65% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 50% 48%, #fff7e8 0 19%, transparent 19.5%),
    linear-gradient(180deg, #ddd, #8d9294);
}

.ip-toys span:nth-child(3) {
  background:
    radial-gradient(circle at 35% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 65% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 50% 48%, #fff7e8 0 19%, transparent 19.5%),
    linear-gradient(180deg, #d39951, #8c5525);
}

.ip-toys span:nth-child(4) {
  background:
    radial-gradient(circle at 35% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 65% 34%, #fff 0 5%, transparent 5.5%),
    radial-gradient(circle at 50% 48%, #fff7e8 0 19%, transparent 19.5%),
    linear-gradient(180deg, #ffad4d, #cf6420);
}

.more-panel {
  margin-top: 22px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px;
}

.more-panel p {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 850;
}

.hourglass {
  width: 58px;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(124, 255, 77, 0.28);
}

.hourglass::before {
  position: absolute;
  inset: 15px 18px;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
  clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%, 50% 50%);
  content: "";
}

.contact {
  margin-top: 22px;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(34px, 5vw, 58px) 20px;
  background:
    radial-gradient(ellipse at center bottom, rgba(83, 255, 56, 0.32), transparent 28rem),
    linear-gradient(180deg, rgba(3, 42, 18, 0.78), rgba(1, 8, 4, 0.94));
}

.contact h2 {
  margin: 0 0 28px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 1;
  font-weight: 950;
  text-shadow:
    0 4px 0 rgba(56, 120, 32, 0.9),
    0 0 24px rgba(127, 255, 68, 0.62),
    0 0 64px rgba(127, 255, 68, 0.42);
}

.contact-methods {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-pill {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px clamp(16px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(111, 255, 70, 0.22), rgba(2, 38, 14, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 45%);
  box-shadow:
    inset 0 1px 16px rgba(255, 255, 255, 0.16),
    0 0 28px rgba(68, 255, 55, 0.28);
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
  appearance: none;
}

.contact-pill span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 850;
}

.contact-pill strong {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1;
  font-weight: 950;
  overflow-wrap: anywhere;
  text-shadow: 0 0 18px rgba(124, 255, 77, 0.5);
}

.site-record {
  padding: 18px 0 0;
  text-align: center;
}

.site-record a {
  color: rgba(225, 246, 219, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.site-record a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(124, 255, 77, 0.42);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 50;
  max-width: min(520px, calc(100% - 28px));
  padding: 14px 22px;
  border: 1px solid rgba(180, 255, 137, 0.74);
  border-radius: 999px;
  background: rgba(4, 32, 15, 0.94);
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
  box-shadow:
    inset 0 1px 14px rgba(255, 255, 255, 0.18),
    0 0 34px rgba(75, 255, 69, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-content,
  .ip-section {
    grid-template-columns: 1fr;
  }

  .promo-stage {
    max-height: 620px;
  }

  .promo-stage img {
    aspect-ratio: 4 / 3;
  }

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

  .ip-section {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .nav {
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
  }

  .brand-text strong {
    font-size: 25px;
  }

  .brand-text em {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .nav-actions {
    gap: 4px;
    font-size: 13px;
  }

  .nav-actions a {
    min-height: 34px;
    padding: 0 8px;
  }

  .hero-grid {
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(48px, 18vw, 76px);
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
  }

  .intro-panel,
  .project-panel,
  .ip-section {
    padding: 20px;
  }

  .section-heading,
  .panel-heading {
    gap: 12px;
  }

  .section-icon {
    width: 58px;
  }

  .feature-list {
    gap: 14px;
    font-size: 17px;
  }

  .ai-console {
    min-height: 230px;
  }

  .floating-widget {
    width: 96px;
    height: 52px;
  }

  .project-panel {
    min-height: 300px;
  }

  .store-visual {
    width: 64%;
    min-height: 120px;
  }

  .ip-toys {
    min-height: 140px;
  }

  .more-panel {
    flex-direction: column;
    gap: 12px;
  }

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

  .contact-pill {
    min-height: 76px;
    text-align: center;
  }
}
