:root {
  --bg: #02060d;
  --bg-soft: #081425;
  --surface: rgba(10, 18, 31, 0.86);
  --surface-strong: rgba(6, 13, 24, 0.92);
  --surface-light: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(0, 74, 173, 0.12);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(0, 74, 173, 0.3);
  --text: #f4f7fb;
  --muted: #9bb0c8;
  --muted-strong: #c6d7ea;
  --blue: #004aad;
  --blue-bright: #23a4ff;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 78% 14%, rgba(35, 164, 255, 0.26), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(0, 74, 173, 0.32), transparent 35%),
    radial-gradient(circle at 24% 84%, rgba(0, 74, 173, 0.18), transparent 24%),
    linear-gradient(135deg, #000103 0%, #02060d 42%, #061120 72%, #0b2845 100%);
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  background: transparent;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    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: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 88%);
  opacity: 0.26;
}

body::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(35, 164, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.05), transparent 24%);
  mix-blend-mode: screen;
}

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

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

button {
  color: inherit;
}

.app-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.7;
  border-radius: 999px;
}

.ambient-left {
  top: -7rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 74, 173, 0.16);
}

.ambient-right {
  right: -10rem;
  top: 6rem;
  width: 32rem;
  height: 32rem;
  background: rgba(255, 255, 255, 0.09);
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 6rem;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 72% 52%, rgba(255, 255, 255, 0.07), transparent 26%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.55;
}

.header-bar,
.hero-panel,
.surface,
.surface-dark,
.system-shell,
.case-study-shell {
  position: relative;
  z-index: 1;
}

.header-bar {
  position: sticky;
  top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.brand-logo {
  display: block;
  width: clamp(9rem, 16vw, 13rem);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.6rem 0.9rem;
  color: var(--muted-strong);
  font-size: 0.93rem;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-small {
  min-height: 2.85rem;
  padding-inline: 1rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--white) 0%, #d7ebff 100%);
  color: #05111f;
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.95fr);
  gap: 1.25rem;
  margin-bottom: 1.3rem;
  padding: clamp(1.35rem, 2vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 80% 20%, rgba(35, 164, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(3, 7, 13, 0.96), rgba(8, 20, 37, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.14;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 92%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 10%;
  width: 48%;
  height: 80%;
  border-radius: 999px;
  background:
    radial-gradient(circle at left center, rgba(35, 164, 255, 0.44), transparent 32%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.32), transparent 34%);
  filter: blur(10px);
  opacity: 0.82;
  pointer-events: none;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.2rem 0.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.9rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(157, 199, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9dc7ff;
}

h1,
h2,
h3,
.stat-value,
.metric-value,
.contact-value {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

.hero-title {
  max-width: 10.5ch;
  font-size: clamp(3.1rem, 6.4vw, 6rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy,
.section-copy,
.stat-label,
.metric-label,
.contact-meta,
.faq-answer p,
.site-footer,
.loading-state p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.2rem 0 1.3rem;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.audience-pill {
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  color: var(--muted-strong);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-card {
  min-width: 0;
  min-height: 100%;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-card::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.18rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(157, 199, 255, 0.95), transparent);
}

.stat-value {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 1.45rem;
  color: var(--white);
  text-wrap: balance;
}

.stat-label {
  margin: 0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32rem;
}

.orbit-shell {
  position: relative;
  width: min(100%, 30rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 58%),
    radial-gradient(circle at center, rgba(0, 74, 173, 0.24), transparent 74%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.orbit-shell::before,
.orbit-shell::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-shell::after {
  inset: 26%;
}

.orbit-core {
  position: absolute;
  inset: 50%;
  width: 13.5rem;
  height: 13.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 74, 173, 0.18)),
    rgba(7, 15, 27, 0.96);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.orbit-core-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9dc7ff;
}

.orbit-core strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.5rem;
}

.orbit-core p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.orbit-item {
  position: absolute;
  min-width: 10rem;
  max-width: 12rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  background: rgba(3, 9, 17, 0.9);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.orbit-item-1 {
  top: 4%;
  left: 16%;
}

.orbit-item-2 {
  top: 24%;
  right: -2%;
}

.orbit-item-3 {
  bottom: 17%;
  left: 0;
}

.orbit-item-4 {
  right: 10%;
  bottom: 3%;
}

.surface,
.surface-dark,
.system-shell,
.case-study-shell {
  margin-bottom: 1.25rem;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 1.15rem;
  overflow: hidden;
}

.proof-shell .section-heading {
  margin-bottom: 0;
}

.surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(4, 10, 18, 0.86);
}

.surface-dark,
.challenge-shell,
.faq-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(3, 7, 13, 0.94);
}

.section-block,
.system-shell,
.case-study-shell {
  margin-bottom: 1.25rem;
}

.section-heading {
  position: relative;
  max-width: 58rem;
  padding-left: 1rem;
  margin-bottom: 1.1rem;
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  bottom: 0.4rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(157, 199, 255, 0.9), transparent);
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  text-wrap: balance;
}

.section-copy-wide {
  max-width: 66ch;
}

.challenge-grid,
.service-grid,
.personality-grid,
.advantage-grid,
.workflow-grid,
.starter-grid,
.studio-grid,
.fit-grid,
.offer-grid,
.contact-grid {
  display: grid;
  gap: 0.95rem;
}

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

.challenge-card,
.service-card,
.client-card,
.personality-card,
.advantage-card,
.workflow-card,
.starter-card,
.metric-card,
.studio-card,
.fit-card,
.offer-card,
.contact-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.challenge-card::before,
.service-card::before,
.client-card::before,
.personality-card::before,
.advantage-card::before,
.workflow-card::before,
.starter-card::before,
.metric-card::before,
.studio-card::before,
.fit-card::before,
.offer-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(35, 164, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.challenge-card {
  grid-column: span 3;
  min-height: 100%;
  padding: 1.1rem;
}

.challenge-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9dc7ff;
}

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

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

.clients-shell {
  background:
    radial-gradient(circle at 88% 16%, rgba(35, 164, 255, 0.2), transparent 24%),
    linear-gradient(155deg, rgba(6, 12, 21, 0.94), rgba(7, 16, 29, 0.9));
}

.clients-grid {
  display: grid;
  width: min(100%, 42rem);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.client-card {
  display: grid;
  gap: 0.85rem;
  align-items: center;
  justify-items: center;
  min-height: 100%;
  padding: 1.15rem;
  text-align: center;
}

.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 10rem;
  padding: 1.1rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.client-logo {
  display: block;
  max-width: 100%;
  max-height: 5.8rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-name {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.personality-grid,
.starter-grid,
.studio-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  grid-column: span 6;
  padding: 1.2rem;
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 164, 255, 0.2), transparent 72%);
  pointer-events: none;
}

.service-card:nth-child(2)::after,
.service-card:nth-child(3)::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 72%);
}

.personality-card,
.starter-card,
.studio-card,
.fit-card {
  padding: 1.15rem;
}

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

.personality-card h3,
.starter-card h3,
.studio-card h3,
.fit-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
  text-wrap: balance;
}

.service-topline {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(35, 164, 255, 0.34);
  background: rgba(0, 74, 173, 0.14);
  color: #9dc7ff;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-name {
  font-size: 1.45rem;
  text-wrap: balance;
}

.checklist {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist-item {
  display: grid;
  grid-template-columns: 0.75rem minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  color: var(--muted-strong);
  line-height: 1.6;
}

.checklist-mark {
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0%, var(--white) 34%, rgba(35, 164, 255, 0.26) 36%, rgba(35, 164, 255, 0.1) 100%);
  box-shadow: 0 0 0 0.3rem rgba(35, 164, 255, 0.08);
}

.system-shell {
  background:
    radial-gradient(circle at 88% 10%, rgba(35, 164, 255, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(7, 13, 24, 0.94), rgba(4, 11, 21, 0.92));
}

.flow-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.flow-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.flow-label {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 600;
}

.flow-arrow {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 199, 255, 0.14), rgba(157, 199, 255, 0.82));
}

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

.advantage-card,
.workflow-card {
  padding: 1.15rem;
}

.advantage-card h3,
.workflow-step {
  font-size: 1.2rem;
}

.advantage-card h3,
.workflow-step,
.offer-header h3,
.brief-title,
.contact-value {
  text-wrap: balance;
}

.workflow-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(6, 14, 25, 0.88);
}

.workflow-card {
  border-left: 3px solid rgba(157, 199, 255, 0.28);
}

.production-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(35, 164, 255, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(6, 14, 25, 0.92), rgba(8, 16, 29, 0.88));
}

.production-panel {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.production-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  line-height: 1.7;
}

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

.workflow-step {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.case-study-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 164, 255, 0.18), transparent 25%),
    linear-gradient(145deg, rgba(5, 11, 20, 0.95), rgba(8, 16, 28, 0.92));
}

.case-quote {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(157, 199, 255, 0.6);
  border-radius: 0 1rem 1rem 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.case-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
}

.proof-card {
  position: relative;
  grid-column: span 3;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.22rem;
  background: linear-gradient(90deg, rgba(157, 199, 255, 0.98), transparent);
}

.proof-card:first-child {
  grid-column: span 4;
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.proof-card:first-child .metric-value {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.proof-card .metric-label {
  font-size: 0.84rem;
}

.content-notes {
  margin-top: 1.15rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.notes-title {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-weight: 600;
}

.case-study-panels {
  display: grid;
  gap: 0.95rem;
}

.metric-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  padding: 1.1rem;
}

.metric-card-alt {
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.metric-value {
  display: block;
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.metric-label {
  margin: 0;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

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

.offer-card {
  grid-column: span 6;
  padding: 1.2rem;
}

.offer-card:nth-child(2),
.offer-card:nth-child(3) {
  grid-column: span 7;
}

.offer-card:nth-child(1),
.offer-card:nth-child(4) {
  grid-column: span 5;
}

.offer-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.28), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.offer-card:nth-child(2) .price-pill {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.offer-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.offer-header h3 {
  font-size: 1.35rem;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #9dc7ff;
  font-size: 0.84rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}

.faq-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #9dc7ff;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding: 0 1.1rem 1rem;
}

.faq-answer p {
  margin: 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(35, 164, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(7, 14, 25, 0.88);
}

.contact-checklist {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-checklist .checklist-item {
  color: var(--muted-strong);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.15rem;
}

.contact-card:first-child {
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.24), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(157, 199, 255, 0.2);
}

.service-card,
.client-card,
.personality-card,
.advantage-card,
.workflow-card,
.starter-card,
.studio-card,
.fit-card,
.offer-card,
.contact-card,
.proof-card,
.metric-card,
.challenge-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.service-card:hover,
.client-card:hover,
.personality-card:hover,
.advantage-card:hover,
.workflow-card:hover,
.starter-card:hover,
.studio-card:hover,
.fit-card:hover,
.offer-card:hover,
.contact-card:hover,
.proof-card:hover,
.metric-card:hover,
.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 199, 255, 0.24);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.brief-form {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 74, 173, 0.22), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.brief-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.field-label {
  display: inline-flex;
  margin-top: 0.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9dc7ff;
}

.field-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(4, 10, 18, 0.78);
  color: var(--white);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field-input::placeholder {
  color: rgba(198, 215, 234, 0.5);
}

.field-input:focus {
  border-color: rgba(157, 199, 255, 0.48);
  box-shadow: 0 0 0 0.22rem rgba(35, 164, 255, 0.14);
  background: rgba(6, 13, 24, 0.92);
}

.field-select {
  appearance: none;
}

.field-textarea {
  min-height: 9rem;
  resize: vertical;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.brief-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.brief-feedback {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: transparent;
}

.brief-feedback-error {
  color: #ffc0c0;
}

.brief-feedback-success {
  color: #b9ffd5;
}

.contact-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9dc7ff;
}

.contact-value {
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.4rem;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.loading-state {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--white) 0%, #d7ebff 100%);
  color: #05111f;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-panel,
  .proof-shell,
  .case-study-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .section-heading h2 {
    max-width: 100%;
  }

  .challenge-grid,
  .service-grid,
  .clients-grid,
  .offer-grid,
  .workflow-grid,
  .metric-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .challenge-card,
  .proof-card,
  .service-card,
  .offer-card {
    grid-column: span 1;
  }

  .proof-card:first-child,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4) {
    grid-column: span 1;
  }

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

  .production-shell {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 27rem;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .header-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    border-radius: 1.5rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .stats-grid,
  .service-grid,
  .personality-grid,
  .starter-grid,
  .offer-grid,
  .challenge-grid,
  .advantage-grid,
  .workflow-grid,
  .metric-grid,
  .studio-grid,
  .fit-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-card:first-child,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .offer-card:nth-child(1),
  .offer-card:nth-child(2),
  .offer-card:nth-child(3),
  .offer-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .hero-panel {
    padding-bottom: 1.55rem;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .orbit-shell {
    width: min(100%, 22rem);
  }

  .orbit-core {
    width: 11rem;
    height: 11rem;
    padding: 1.6rem 1.1rem;
  }

  .orbit-item {
    min-width: 8rem;
    max-width: 9rem;
    padding: 0.75rem 0.8rem;
    font-size: 0.83rem;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 4.6rem;
  }

  .site-shell {
    padding-bottom: 7rem;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100%, calc(100% - 0.75rem));
    padding-top: 0.7rem;
  }

  .header-bar,
  .hero-panel,
  .surface,
  .surface-dark,
  .system-shell,
  .case-study-shell {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .header-bar {
    top: 0.6rem;
    grid-template-columns: 1fr;
  }

  .section-heading {
    padding-left: 0.8rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .button,
  .audience-pill,
  .flow-label,
  .client-card {
    width: 100%;
  }

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

  .case-study-actions {
    flex-direction: column;
  }

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

  .flow-strip {
    gap: 0.6rem;
  }

  .flow-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .flow-arrow {
    width: 1px;
    height: 1.2rem;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(157, 199, 255, 0.14), rgba(157, 199, 255, 0.82));
  }

  .orbit-shell {
    width: min(100%, 19.5rem);
  }

  .orbit-item-1 {
    left: 7%;
  }

  .orbit-item-2 {
    right: -3%;
  }

  .orbit-item-3 {
    left: -2%;
  }

  .orbit-item-4 {
    right: 2%;
  }

  .brand-logo {
    width: clamp(8.4rem, 40vw, 10.5rem);
  }
}
