:root {
  --bg: #07133b;
  --bg-deep: #050b24;
  --panel: rgba(13, 23, 60, 0.84);
  --panel-strong: rgba(18, 31, 77, 0.96);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f8ff;
  --muted: #b7c0e0;
  --blue: #67c7ff;
  --orange: #ff9d2f;
  --pink: #ff61a8;
  --yellow: #ffe25c;
  --shadow: 0 30px 80px rgba(2, 6, 22, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 12%, rgba(103, 199, 255, 0.28), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 97, 168, 0.18), transparent 20%),
    radial-gradient(circle at 50% 90%, rgba(255, 226, 92, 0.14), transparent 22%),
    linear-gradient(145deg, #060d2c 0%, #0a1750 45%, #08122f 100%);
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 15, 40, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-family: "Arial Black", "Avenir Next", sans-serif;
  font-size: 1.18rem;
  color: #11152b;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 14px 30px rgba(255, 157, 47, 0.35);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1.14rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.88;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

main {
  display: grid;
  gap: 32px;
  margin-top: 28px;
}

section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 29, 72, 0.76), rgba(8, 14, 38, 0.92));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  padding: 44px;
}

.hero::before,
.titles-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -90px;
  background: radial-gradient(circle, rgba(255, 157, 47, 0.45), transparent 68%);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 500px;
  font-size: clamp(1.7rem, 3.5vw, 2.95rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

p {
  margin-top: 0;
}

.hero-text,
.section-heading p,
.title-copy p,
.studio-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 0.95rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #12172f;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 16px 32px rgba(255, 157, 47, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card,
.title-card,
.studio-card,
.contact-panel article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.stat-card span,
.title-tag,
.contact-panel span {
  display: inline-block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card strong,
.contact-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 38px;
  background: #dfe7ff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform-origin: center bottom;
}

.phone-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-jelly {
  object-position: center bottom;
  transform: scale(1.42);
  transform-origin: center bottom;
}

.phone-card-a {
  left: 42px;
  top: 50%;
  width: 188px;
  z-index: 2;
  transform: translateY(-44%) rotate(-8deg);
}

.phone-card-b {
  left: 50%;
  top: 50%;
  width: 248px;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.phone-card-c {
  right: 42px;
  top: 50%;
  width: 188px;
  z-index: 2;
  transform: translateY(-44%) rotate(8deg);
}

.marquee-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px 24px;
  border-radius: 999px;
}

.marquee-strip p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff3b8;
}

.titles-section,
.studio-section,
.contact-section {
  padding: 34px;
}

.titles-section::before {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(103, 199, 255, 0.28), transparent 68%);
}

.section-heading {
  max-width: 880px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.title-grid,
.studio-layout,
.contact-shell {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.title-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.title-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.title-card:hover,
.studio-card:hover,
.contact-panel article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 226, 92, 0.28);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.title-image {
  aspect-ratio: 10 / 16;
  overflow: hidden;
  background: #10193f;
}

.title-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-copy {
  padding: 20px;
}

.title-tag {
  margin-bottom: 10px;
}

.compact {
  max-width: 980px;
}

.studio-layout {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.studio-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.studio-card-large {
  background:
    linear-gradient(135deg, rgba(255, 157, 47, 0.12), rgba(255, 97, 168, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.contact-section::before {
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(255, 226, 92, 0.22), transparent 68%);
}

.contact-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel article {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-footer {
  padding: 24px 8px 0;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .hero,
  .title-grid,
  .studio-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-card-a {
    left: 28px;
    top: 50%;
    width: 168px;
    transform: translateY(-44%) rotate(-8deg);
  }

  .phone-card-b {
    left: 50%;
    top: 50%;
    width: 220px;
    transform: translate(-50%, -50%);
  }

  .phone-card-c {
    right: 28px;
    top: 50%;
    width: 168px;
    transform: translateY(-44%) rotate(8deg);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    border-radius: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px 22px;
  }

  .hero-stats,
  .marquee-strip {
    grid-template-columns: 1fr;
  }

  .titles-section,
  .studio-section,
  .contact-section {
    padding: 26px 20px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .phone-card-a {
    left: 10px;
    top: 50%;
    width: 162px;
    transform: translateY(-44%) rotate(-8deg);
  }

  .phone-card-b {
    left: 50%;
    top: 50%;
    width: 194px;
    transform: translate(-50%, -50%);
  }

  .phone-card-c {
    right: 10px;
    top: 50%;
    width: 162px;
    transform: translateY(-44%) rotate(8deg);
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 16px, 1240px);
  }

  h1 {
    font-size: 2.45rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 820px;
  }

  .phone-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 18px;
    transform: none;
  }
}
