:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-2: #0d111c;
  --ink: #fff6e7;
  --muted: #b9b4aa;
  --soft: rgba(255, 246, 231, 0.72);
  --line: rgba(255, 246, 231, 0.14);
  --panel: rgba(20, 24, 36, 0.74);
  --panel-solid: #141824;
  --coral: #ff5d4f;
  --gold: #ffd449;
  --cream: #fff0c8;
  --aqua: #66e0ce;
  --blue: #7a9cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 93, 79, 0.24), transparent 25rem),
    radial-gradient(circle at 78% 14%, rgba(255, 212, 73, 0.16), transparent 24rem),
    linear-gradient(180deg, #090a10 0%, var(--bg) 44%, #0b0d14 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header,
.hero,
.proof-strip,
.section,
footer {
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 3;
}

.brand,
.nav,
.actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-height: 44px;
  font-weight: 950;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 42% 58% 48% 52%;
  background: var(--coral);
  color: #111018;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 8px 8px 0 var(--gold);
  font-size: 0.84rem;
  transform: rotate(-5deg);
}

.nav {
  gap: clamp(12px, 2vw, 24px);
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  color: var(--soft);
  font-size: 0.92rem;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 28px 0 72px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 40%;
  bottom: 11%;
  width: 108px;
  height: 108px;
  border-radius: 36% 64% 60% 40%;
  background: var(--aqua);
  opacity: 0.22;
  filter: blur(1px);
  transform: rotate(16deg);
  z-index: -1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 950;
  color: var(--gold);
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8.5vw, 8.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5.2vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.12;
}

.lede {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.58;
}

.actions {
  gap: 13px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: #121117;
  box-shadow: 0 16px 42px rgba(255, 212, 73, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-width: 0;
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.hero-stage::before {
  inset: -8% 14% 18% -4%;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 93, 79, 0.28), rgba(122, 156, 255, 0.12));
  transform: rotate(-5deg);
}

.hero-stage::after {
  right: -7%;
  top: 5%;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: -38px 184px 0 -18px var(--coral);
}

.asset-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.asset-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 21px;
}

.floating-tile {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(9, 10, 16, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.tile-metric {
  left: -6%;
  bottom: 10%;
}

.tile-metric strong {
  font-size: 2.1rem;
  line-height: 1;
}

.tile-label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 850;
}

.tile-hooks {
  right: 3%;
  top: 8%;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--cream);
  font-weight: 900;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(102, 224, 206, 0.13);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.proof-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--cream);
  font-weight: 950;
  border-right: 1px solid var(--line);
}

.proof-strip span:nth-child(1) {
  background: rgba(255, 93, 79, 0.11);
}

.proof-strip span:nth-child(3) {
  background: rgba(102, 224, 206, 0.09);
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 0.72fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 44px;
}

.section-intro::after {
  content: "";
  width: min(100%, 170px);
  aspect-ratio: 1;
  justify-self: center;
  align-self: end;
  border-radius: 35% 65% 49% 51%;
  background:
    linear-gradient(90deg, transparent 43%, rgba(7, 8, 13, 0.72) 43% 57%, transparent 57%),
    var(--coral);
  box-shadow: -34px 28px 0 -8px var(--gold), -64px -18px 0 -28px var(--aqua);
  transform: rotate(12deg);
}

.section-intro.compact {
  max-width: 940px;
  display: block;
  margin-bottom: 34px;
}

.section-intro.compact::after {
  display: none;
}

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

.studio-card,
.offer-grid article,
.board-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  position: relative;
  color: #111018;
}

.studio-card h3,
.studio-card p {
  position: relative;
  z-index: 1;
}

.studio-card p {
  max-width: 31ch;
  margin-bottom: 0;
  color: rgba(17, 16, 24, 0.72);
  line-height: 1.58;
}

.studio-card.coral {
  background: var(--coral);
}

.studio-card.cream {
  background: var(--cream);
}

.studio-card.gold {
  background: var(--gold);
}

.shape-pill,
.shape-squiggle,
.shape-stack {
  display: block;
  position: relative;
  width: 128px;
  height: 96px;
}

.shape-pill::before,
.shape-squiggle::before,
.shape-stack::before,
.shape-stack::after {
  content: "";
  position: absolute;
}

.shape-pill::before {
  inset: 14px 0;
  border-radius: 999px;
  background: rgba(7, 8, 13, 0.9);
  transform: rotate(-15deg);
}

.shape-squiggle::before {
  width: 92px;
  height: 92px;
  border: 18px solid #111018;
  border-left-color: transparent;
  border-bottom-color: var(--coral);
  border-radius: 50%;
  transform: rotate(32deg);
}

.shape-stack::before {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--coral);
  box-shadow: 48px 22px 0 #111018;
}

.shape-stack::after {
  left: 16px;
  bottom: 0;
  width: 90px;
  height: 22px;
  border-radius: 999px;
  background: rgba(17, 16, 24, 0.82);
}

.systems {
  position: relative;
}

.system-board {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.85fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--bg-2);
  box-shadow: var(--shadow);
}

.board-panel {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.board-panel::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  right: -28px;
  bottom: -28px;
  border-radius: 38% 62% 52% 48%;
  background: rgba(255, 212, 73, 0.13);
}

.headline-panel {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 396px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 93, 79, 0.38), transparent 12rem),
    linear-gradient(155deg, rgba(255, 212, 73, 0.14), rgba(20, 24, 36, 0.86));
}

.headline-panel h3 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  line-height: 0.94;
}

.panel-tag,
.offer-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.board-panel p,
.offer-grid p,
.contact p {
  color: var(--muted);
  line-height: 1.62;
}

.chart-panel {
  background: rgba(255, 240, 200, 0.92);
  color: #111018;
}

.chart-panel .panel-tag {
  background: #111018;
  color: var(--gold);
}

.bars {
  height: 118px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 24px;
}

.bars span {
  flex: 1;
  height: var(--h);
  min-height: 30px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--coral), var(--gold));
}

.email-panel {
  grid-column: span 2;
}

.email-panel h3 {
  max-width: 620px;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}

.email-lines {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 20px;
}

.email-lines span {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.email-lines span:nth-child(2) {
  width: 78%;
}

.email-lines span:nth-child(3) {
  width: 55%;
}

.offer-grid article {
  min-height: 290px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel-solid);
}

.offer-grid article:nth-child(2) {
  transform: translateY(26px);
}

.offer-grid h3 {
  font-size: 1.45rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 212, 73, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.contact p {
  max-width: 740px;
  margin-bottom: 0;
}

footer {
  justify-content: space-between;
  min-height: 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

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

  .hero,
  .section-intro,
  .studio-grid,
  .offer-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stage {
    max-width: 620px;
    margin: 0 auto;
  }

  .section-intro::after {
    display: none;
  }

  .proof-strip {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip span:nth-child(2) {
    border-right: 0;
  }

  .proof-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .system-board {
    grid-template-columns: 1fr 1fr;
  }

  .headline-panel {
    grid-column: span 2;
    grid-row: auto;
    min-height: 300px;
  }

  .email-panel {
    grid-column: span 2;
  }

  .offer-grid article:nth-child(2) {
    transform: none;
  }

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

@media (max-width: 620px) {
  .site-header,
  .hero,
  .proof-strip,
  .section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    border-radius: 18px;
  }

  .nav a {
    padding: 0 8px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .button {
    width: 100%;
  }

  .floating-tile {
    position: static;
    margin-top: 10px;
  }

  .asset-card {
    border-radius: 20px;
    transform: none;
  }

  .asset-card img {
    border-radius: 14px;
  }

  .hero-stage::before,
  .hero-stage::after {
    display: none;
  }

  .proof-strip,
  .system-board {
    grid-template-columns: 1fr;
  }

  .proof-strip span,
  .proof-strip span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .headline-panel,
  .email-panel {
    grid-column: auto;
  }

  .headline-panel {
    min-height: 260px;
  }

  .studio-card,
  .offer-grid article {
    min-height: 250px;
  }

  .contact {
    padding: 24px;
  }

  footer {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
