:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-soft: #141414;
  --surface-fade: rgba(255, 255, 255, 0.03);
  --text: #f7f7f7;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 28px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #030303 0%, #060606 48%, #040404 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

body,
body * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

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

.button-primary {
  background: var(--text);
  color: #050505;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

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

.button-compact {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button-block {
  width: 100%;
}

.hero,
.section {
  padding: 120px 0;
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 38px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero h1 span {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy,
.section-heading p,
.quote,
.booking-list li,
.form-disclaimer,
.case-list li,
.framework-card p,
.testimonial-meta span,
.testimonial-meta small {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-copy-column {
  max-width: 920px;
  display: grid;
  gap: 24px;
}

.hero-copy-column .eyebrow {
  display: none;
}

.hero-partner-strip {
  width: min(100%, 760px);
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.partner-strip-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chip-list li {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.92rem;
}

.hero-visual-column,
.hero-visual-side,
.proof-grid,
.case-study-grid,
.testimonials-grid,
.framework-grid {
  display: grid;
  gap: 22px;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.creative-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creative-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-card);
}

.creative-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creative-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.creative-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.creative-label {
  margin: 0 2px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.hero-visual-column {
  gap: 18px;
}

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

.hero-visual-card,
.dashboard-card,
.case-card,
.showcase-card,
.testimonial-card,
.framework-card,
.booking-form,
.section-cta,
.stats-grid article {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-visual-card::before,
.dashboard-card::before,
.case-card::before,
.showcase-card::before,
.testimonial-card::before,
.framework-card::before,
.booking-form::before,
.section-cta::before,
.stats-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.hero-visual-card,
.dashboard-card,
.case-card,
.showcase-card,
.testimonial-card,
.framework-card,
.booking-form {
  padding: 28px;
}

.hero-visual-main {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.hero-visual-wide {
  grid-column: 1 / -1;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-visual-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.hero-visual-header small,
.hero-visual-card small,
.stats-grid article small,
.metric-grid span,
.case-metrics span,
.booking-form span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual-header strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.08em;
}

.metric-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
}

.screen-placeholder,
.dashboard-placeholder,
.case-visual,
.testimonial-avatar,
.mini-placeholder {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.screen-placeholder {
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
}

.screen-dots,
.screen-bars,
.dash-bottom {
  display: flex;
  gap: 10px;
}

.screen-dots span,
.dash-bottom span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.screen-dots span {
  width: 10px;
  height: 10px;
}

.screen-bars span,
.mini-bars::before,
.mini-bars::after,
.mini-grid::before,
.mini-grid::after {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.screen-graph,
.dash-graph,
.mini-wave::before {
  margin-top: 18px;
  height: 170px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 8%, transparent 8%) 0 0 / 18px 18px,
    rgba(255, 255, 255, 0.03);
}

.screen-bars {
  margin-top: 18px;
}

.screen-bars span,
.dash-bottom span {
  flex: 1;
  height: 22px;
}

.hero-visual-card strong,
.stats-grid article strong,
.metric-grid strong,
.case-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.mini-placeholder {
  margin-top: 16px;
  min-height: 96px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.mini-bars::before,
.mini-bars::after,
.mini-wave::before,
.mini-grid::before,
.mini-grid::after {
  content: "";
  position: absolute;
}

.mini-bars::before {
  left: 16px;
  right: 16px;
  top: 26px;
  height: 12px;
}

.mini-bars::after {
  left: 16px;
  right: 56px;
  top: 48px;
  height: 12px;
}

.mini-wave::before {
  inset: 14px;
  height: auto;
  margin-top: 0;
}

.mini-grid::before {
  left: 16px;
  right: 16px;
  top: 20px;
  bottom: 20px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.mini-grid::after {
  left: 16px;
  right: 16px;
  bottom: 20px;
  height: 18px;
}

.logo-banner {
  padding-bottom: 12px;
}

.partner-strip {
  padding: 14px 0 10px;
}

.partner-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
}

.partner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.partner-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 220px;
}

.showcase-slot {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.partner-slot-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  opacity: 0.76;
}

.hero-partner-strip .partner-grid {
  justify-content: flex-start;
  gap: 16px;
}

.hero-partner-strip .partner-slot {
  flex: 0 1 220px;
  min-height: 88px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-partner-strip .partner-slot-image {
  max-height: 46px;
  opacity: 0.88;
}

.trust-row-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-row-label span {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.trust-row-label p {
  margin: 0;
}

.logo-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 172px;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.logo-item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.stats-strip {
  padding-top: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stats-grid article {
  padding: 26px;
}

.stats-grid article strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.08em;
}

.stats-grid article span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.section-heading.narrow {
  max-width: 620px;
}

.section-heading p {
  margin: 18px 0 0;
  font-size: 1rem;
}

.proof-grid,
.case-study-grid,
.testimonials-grid,
.framework-grid,
.showcase-grid {
  margin-top: 42px;
}

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

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

.dashboard-card h3,
.case-card h3,
.showcase-card h3,
.framework-card h3,
.section-cta h3 {
  margin: 18px 0 0;
  font-size: 1.2rem;
}

.dashboard-placeholder {
  margin-top: 22px;
  padding: 16px;
  border-radius: 24px;
  min-height: 246px;
}

.dashboard-art {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.dashboard-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.dashboard-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: rgba(7, 11, 18, 0.55);
  backdrop-filter: blur(8px);
}

.dash-top {
  height: 14px;
  width: 48%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-grid,
.dash-table {
  margin-top: 18px;
  border-radius: 20px;
}

.dash-grid {
  height: 150px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.dash-table {
  height: 150px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 0 0) 0 0 / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1) 0 0) 0 33% / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.1) 0 0) 0 66% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 0) 33% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 0) 66% 0 / 1px 100% no-repeat;
}

.metric-grid,
.case-metrics {
  display: grid;
  gap: 14px;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.metric-grid div,
.case-metrics div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 30px 32px;
}

.section-cta h3 {
  margin-top: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.case-visual {
  margin-top: 18px;
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.03);
}

.case-visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-visual-fill {
  padding: 0;
  overflow: hidden;
}

.case-visual-fill img {
  object-fit: cover;
}

.case-visual-fill img.case-logo-fit {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  background: transparent;
}

.showcase-section {
  padding-top: 64px;
}

.showcase-media {
  position: relative;
  margin-top: 18px;
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.showcase-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.showcase-frame {
  position: absolute;
  inset: 30px;
  display: grid;
  align-content: end;
  gap: 12px;
}

.showcase-frame span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.showcase-frame span:first-child {
  width: 42%;
  align-self: start;
  margin-top: 8px;
}

.showcase-frame span:nth-child(2) {
  width: 100%;
}

.showcase-frame span:last-child {
  width: 58%;
}

.showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.54);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.showcase-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid rgba(255, 255, 255, 0.78);
}

.showcase-slot {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-copy-text {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.case-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.case-list,
.booking-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-list li,
.booking-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
}

.case-list li::before,
.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--text);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
}

.testimonial-avatar {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  margin: 18px 0 0;
  font-size: 1.1rem;
  color: var(--text);
}

.testimonial-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-meta strong {
  display: block;
  margin-bottom: 4px;
}

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

.framework-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.framework-card p {
  margin: 10px 0 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.booking-grid {
  align-items: center;
}

.booking-form {
  border-radius: var(--radius-xl);
}

.field-grid {
  display: flex;
  gap: 16px;
}

.field-grid label,
.booking-form > label {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  margin-top: 10px;
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--line-strong);
}

.form-disclaimer {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: 24px 0 100px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-inner div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .partner-grid {
    justify-content: center;
  }

  .hero-grid,
  .booking-grid,
  .proof-grid,
  .case-study-grid,
  .testimonials-grid,
  .framework-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .section {
    padding: 84px 0;
  }

  .hero h1,
  .section-heading h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .button {
    width: 100%;
  }

  .site-header .button-compact {
    display: none;
  }

  .brand-mark {
    max-width: 100%;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .field-grid,
  .section-cta,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual-side,
  .showcase-grid,
  .creative-grid,
  .metric-grid,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    gap: 28px;
  }

  .hero-partner-strip .partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
  }

  .hero-visual-card,
  .dashboard-card,
  .case-card,
  .showcase-card,
  .testimonial-card,
  .framework-card,
  .booking-form,
  .section-cta,
  .stats-grid article {
    padding: 22px;
  }

  .logo-track span {
    min-width: 124px;
  }

  .logo-item img {
    max-height: 28px;
  }

  .partner-slot {
    flex: 1 1 auto;
  }

  .hero-partner-strip {
    margin-top: 10px;
    padding: 14px;
    gap: 12px;
    border-radius: 24px;
  }

  .hero-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 10px;
  }

  .partner-slot-image {
    max-height: 54px;
  }

  .trust-row-label {
    flex-wrap: wrap;
    margin-bottom: 12px;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .trust-row-label span {
    width: 24px;
  }

  .logo-track {
    gap: 10px;
    padding: 8px 0 2px;
    animation: none;
  }

  .logo-track .logo-item:nth-child(n + 6) {
    display: none;
  }

  .logo-track span {
    padding: 14px 16px;
  }

  .logo-marquee {
    overflow-x: auto;
    border-top: none;
    border-bottom: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .logo-marquee::-webkit-scrollbar {
    display: none;
  }

  .stats-strip {
    padding-top: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .case-metrics div,
  .metric-grid div,
  .stats-grid article {
    padding: 14px;
  }

  .stats-grid article {
    border-radius: 20px;
  }

  .stats-grid article strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .stats-grid article small,
  .stats-grid article span {
    font-size: 0.74rem;
  }

  .dashboard-placeholder,
  .case-visual {
    min-height: 200px;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  .quote {
    font-size: 1rem;
  }

  .booking-form input,
  .booking-form textarea {
    padding: 15px 16px;
  }

  .hero {
    padding: 52px 0 72px;
  }

  .hero-copy-column {
    gap: 18px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.2rem, 11vw, 3.1rem);
    line-height: 0.98;
  }

  .partner-strip-label {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  .hero-partner-strip .partner-slot {
    min-height: 76px;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-partner-strip .partner-slot:last-child {
    grid-column: 1 / -1;
  }

  .hero-partner-strip .partner-slot-image {
    max-height: 34px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    background: var(--text);
    color: #050505;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
  }

  .site-footer {
    padding-bottom: 110px;
  }
}
