/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
p,
figure {
  margin: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   ROOT
========================= */
:root {
  --bg-1: #07090d;
  --bg-2: #0d1118;
  --bg-3: #131923;
  --surface-1: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --surface-3: rgba(255, 255, 255, 0.12);
  --border-1: rgba(255, 255, 255, 0.12);
  --border-2: rgba(255, 255, 255, 0.18);

  --text-1: #f7f8fb;
  --text-2: #c4ccd8;
  --text-3: #8f9aac;

  --accent-1: #ff7a00;
  --accent-2: #00d1ff;
  --accent-3: #ffe2bf;

  --shadow-1: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 10px 35px rgba(0, 0, 0, 0.35);
  --glow-orange: 0 0 40px rgba(255, 122, 0, 0.24);
  --glow-cyan: 0 0 40px rgba(0, 209, 255, 0.2);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1320px;

  --font-ui: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Orbitron", "Rajdhani", "Arial Black", sans-serif;

  --transition-fast: 0.25s ease;
  --transition-mid: 0.45s ease;
  --transition-slow: 0.8s ease;
}

/* =========================
   BODY
========================= */
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-ui);
  color: var(--text-1);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.09), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(0, 209, 255, 0.1), transparent 28%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 40%, var(--bg-3));
}

/* =========================
   SHOWCASE
========================= */
.zzz-showcase {
  position: relative;
  isolation: isolate;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 24px;
  isolation: isolate;
}

/* =========================
   BACKGROUND LAYERS
========================= */
.hero__bg,
.hero__bg::before,
.hero__bg::after {
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 122, 0, 0.12), transparent 20%),
    radial-gradient(circle at 80% 28%, rgba(0, 209, 255, 0.1), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(135deg, #07090d 0%, #0d1118 35%, #121924 70%, #1a202b 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 95%);
  opacity: 0.45;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(255, 255, 255, 0.03) 55% 56%, transparent 56%),
    linear-gradient(125deg, transparent 0 67%, rgba(255, 122, 0, 0.07) 67% 68%, transparent 68%),
    linear-gradient(125deg, transparent 0 74%, rgba(0, 209, 255, 0.06) 74% 75%, transparent 75%);
  opacity: 0.85;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 45%);
  mix-blend-mode: screen;
  opacity: 0.35;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.65;
}

.hero__glow--one {
  width: 26rem;
  height: 26rem;
  right: 12%;
  top: 16%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent 70%);
  animation: floatGlowOne 8s ease-in-out infinite;
}

.hero__glow--two {
  width: 24rem;
  height: 24rem;
  left: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.22), transparent 72%);
  animation: floatGlowTwo 10s ease-in-out infinite;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0.7px, transparent 0.9px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 9, 13, 0.95), rgba(7, 9, 13, 0.25) 30%, rgba(7, 9, 13, 0.2)),
    linear-gradient(to right, rgba(7, 9, 13, 0.85), rgba(7, 9, 13, 0.15) 45%, rgba(7, 9, 13, 0.7));
}

/* =========================
   DECOR
========================= */
.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__line {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  height: 1px;
}

.hero__line--1 {
  width: 32%;
  top: 13%;
  left: -4%;
  transform: rotate(-10deg);
  opacity: 0.35;
}

.hero__line--2 {
  width: 28%;
  right: -2%;
  top: 18%;
  transform: rotate(8deg);
  opacity: 0.3;
}

.hero__line--3 {
  width: 18%;
  right: 12%;
  bottom: 21%;
  transform: rotate(-22deg);
  opacity: 0.22;
}

.hero__badge,
.hero__panel,
.hero__floating-card,
.hero__info-card,
.hero__meta-card,
.hero__visual-frame {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-2);
  color: var(--text-2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__badge--top-left {
  top: 36px;
  left: 36px;
}

.hero__badge--top-right {
  top: 34px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-height: unset;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.hero__badge-label,
.hero__panel-label,
.hero__floating-label,
.hero__meta-label,
.hero__info-index,
.hero__eyebrow,
.hero__visual-tag {
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero__badge--top-right strong {
  color: var(--text-1);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), #ffb463);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.55);
}

.hero__panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  max-width: 260px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-2);
}

.hero__panel strong {
  font-weight: 700;
  color: var(--text-1);
}

.hero__panel--left {
  left: 42px;
  bottom: 120px;
}

.hero__panel--right {
  right: 44px;
  top: 165px;
}

/* =========================
   CONTAINER
========================= */
.hero__container {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 22px 0 0;
}

/* =========================
   TOPBAR
========================= */
.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(0, 209, 255, 0.14)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-2), var(--glow-orange);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  overflow: hidden;
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 5.6s linear infinite;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand__text span {
  color: var(--text-3);
  font-size: 0.86rem;
}

.hero__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-2);
}

.hero__nav a {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-2);
  font-size: 0.95rem;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.hero__nav a:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* =========================
   HERO CONTENT
========================= */
.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 42px;
  min-height: 68vh;
}

.hero__copy {
  position: relative;
  max-width: 660px;
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent-3);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-wrap: balance;
}

.hero__title span {
  display: block;
  background: linear-gradient(90deg, var(--text-1), var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 122, 0, 0.08);
}

.hero__description {
  max-width: 600px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
  overflow: hidden;
}

.hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 25%, rgba(255, 255, 255, 0.18) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.9s ease;
}

.hero__button:hover::before {
  transform: translateX(130%);
}

.hero__button:hover {
  transform: translateY(-3px);
}

.hero__button--primary {
  border: 1px solid rgba(255, 122, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.96), #ff9736);
  color: #111;
  box-shadow: 0 12px 34px rgba(255, 122, 0, 0.26);
}

.hero__button--primary:hover {
  box-shadow: 0 18px 38px rgba(255, 122, 0, 0.34);
}

.hero__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-1);
  box-shadow: var(--shadow-2);
}

.hero__button--secondary:hover {
  border-color: rgba(0, 209, 255, 0.3);
  box-shadow: var(--shadow-2), var(--glow-cyan);
}

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

.hero__meta-card {
  position: relative;
  min-height: 108px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.hero__meta-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), transparent 65%);
  opacity: 0.8;
}

.hero__meta-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text-1);
}

/* =========================
   VISUAL
========================= */
.hero__visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 630px;
  min-height: 620px;
  border-radius: 34px;
  border: 1px solid var(--border-2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-1);
  overflow: hidden;
  isolation: isolate;
}

.hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 122, 0, 0.18), transparent 24%),
    radial-gradient(circle at 35% 70%, rgba(0, 209, 255, 0.15), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%);
  z-index: -1;
}

.hero__visual-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero__visual-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-1);
  background: rgba(7, 9, 13, 0.42);
  color: var(--accent-3);
}

.hero__character-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  filter: blur(2px);
  clip-path: polygon(14% 0, 100% 0, 84% 100%, 0 100%);
}

.hero__shape--back {
  width: 72%;
  height: 72%;
  right: 6%;
  top: 10%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 209, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
}

.hero__shape--middle {
  width: 58%;
  height: 74%;
  left: 18%;
  top: 9%;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(8deg);
}

.hero__shape--front {
  width: 42%;
  height: 38%;
  right: 10%;
  bottom: 10%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 209, 255, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-10deg);
}

.hero__character {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 112%;
  width: auto;
  transform: translateX(-18%);
  transform-origin: bottom center;
  --character-height: 110%;
  --character-x: -18%;
  --character-bottom: 0px;

  position: absolute;
  left: 50%;
  bottom: var(--character-bottom);

  height: var(--character-height);
  max-width: none;

  object-fit: contain;
  transform: translateX(var(--character-x));

  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 40px rgba(255, 122, 0, 0.12));

  transition: transform 0.4s ease;
  z-index: 2;
}

.hero__floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-1);
  background: rgba(7, 9, 13, 0.48);
  box-shadow: var(--shadow-2);
}

.hero__floating-card strong {
  line-height: 1.45;
  font-size: 0.98rem;
}

.hero__floating-card--top {
  top: 90px;
  right: 22px;
}

.hero__floating-card--bottom {
  left: 22px;
  bottom: 34px;
}

/* =========================
   BOTTOM
========================= */
.hero__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 14px;
}

.hero__info-card {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border-1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), transparent 70%);
  opacity: 0.75;
}

.hero__info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-2), var(--glow-cyan);
}

.hero__info-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-3);
}

.hero__info-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero__info-card p {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* =========================
   BACKGROUND TITLE
========================= */
.hero__bg-title {
  position: absolute;
  inset: auto auto 24px 50%;
  transform: translateX(-50%);
  z-index: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  pointer-events: none;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 90%);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes floatGlowOne {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-12px, 18px, 0) scale(1.06);
  }
}

@keyframes floatGlowTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, -10px, 0) scale(1.08);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-140%);
  }
  100% {
    transform: translateX(180%);
  }
}

/* =========================
   SCROLLBAR PREMIUM ZZZ
========================= */

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ff7a00 #0b0d12;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
  width: 14px;
}

html::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, #07090d, #0d1118 45%, #131923);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

html::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, #ff7a00 0%, #ff9f43 55%, #00d1ff 100%);
  border-radius: 999px;
  border: 3px solid #0d1118;
  box-shadow:
    0 0 12px rgba(255, 122, 0, 0.22),
    0 0 20px rgba(0, 209, 255, 0.12);
}

html::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #ff8c1a 0%, #ffb25c 50%, #33dcff 100%);
}

html::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(180deg, #e86e00 0%, #ff9436 50%, #00bfe8 100%);
}

html::-webkit-scrollbar-corner {
  background: #0b0d12;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .hero {
    padding: 18px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 560px;
  }

 .hero__visual-frame {
  position: relative;

  width: 100%;
  max-width: 640px;
  height: 640px;

  margin: auto;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  overflow: hidden;
}

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

  .hero__panel--right {
    top: 130px;
    right: 26px;
  }

  .hero__panel--left {
    left: 26px;
    bottom: 110px;
  }

  .hero__bg-title {
    bottom: 8px;
  }
}

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

  .hero__container {
    gap: 24px;
    padding-top: 10px;
  }

  .hero__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero__nav::-webkit-scrollbar {
    display: none;
  }

  .hero__title {
    font-size: clamp(2.7rem, 12vw, 5rem);
  }

  .hero__description {
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .hero__visual {
    min-height: 500px;
  }

  .hero__visual-frame {
    min-height: 500px;
    border-radius: 26px;
  }

  .hero__character {
  --character-height: 112%;
  --character-x: -18%;
  --character-bottom: 0px;

  position: absolute;
  left: 50%;
  bottom: var(--character-bottom);

  height: var(--character-height);
  width: auto;
  max-width: none;

  object-fit: contain;
  transform: translateX(var(--character-x));
  transform-origin: bottom center;

  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 40px rgba(255, 122, 0, 0.12));

  transition: transform 0.4s ease;
  z-index: 2;
}

  .hero__floating-card--top {
    top: 20px;
    right: 18px;
  }

  .hero__floating-card--bottom {
    left: 18px;
    bottom: 18px;
  }

  .hero__panel,
  .hero__badge--top-right {
    display: none;
  }

  .hero__badge--top-left {
    top: 20px;
    left: 20px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 12px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.05rem;
  }

  .brand__text strong {
    font-size: 0.95rem;
  }

  .brand__text span {
    font-size: 0.78rem;
  }

  .hero__nav {
    padding: 6px;
    gap: 4px;
  }

  .hero__nav a {
    padding: 9px 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero__eyebrow,
  .hero__visual-tag,
  .hero__badge {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero__title {
    font-size: clamp(2.3rem, 14vw, 4rem);
    margin-bottom: 16px;
  }

  .hero__description {
    margin-bottom: 22px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__button {
    width: 100%;
    min-width: 0;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual-frame {
    min-height: 420px;
  }

  .hero__floating-card {
    max-width: 180px;
    padding: 13px 14px;
  }

  .hero__floating-card strong {
    font-size: 0.9rem;
  }

  .hero__info-card {
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .hero__info-card h2 {
    font-size: 1.2rem;
  }

  .hero__info-card p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero__bg-title {
    font-size: clamp(2.2rem, 16vw, 4rem);
    letter-spacing: 0.08em;
    bottom: 14px;
  }

  .hero__line--1,
  .hero__line--2,
  .hero__line--3 {
    display: none;
  }
}