:root {
  --bg: #071019;
  --bg-soft: #0b1722;
  --panel: #10212e;
  --panel-light: #173040;
  --text: #f4f8fb;
  --muted: #9eb1bf;
  --line: rgba(191, 225, 246, 0.14);
  --accent: #87cef2;
  --accent-soft: #a7e5d3;
  --max-width: 1180px;
  --radius-large: 30px;
  --radius-medium: 20px;
  --radius-small: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(135, 206, 242, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7.3rem);
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.text-accent {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #9edbfa;
  border-color: #9edbfa;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.text-link span {
  color: var(--accent);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 16, 25, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 0.86rem;
}

.brand-name {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 76px;
  align-items: center;
}

.hero-intro {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

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

.stats div {
  padding-right: 24px;
}

.stats div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.stats dt {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card-main {
  position: absolute;
  inset: 0 36px 0 0;
  transform: rotate(2deg);
}

.hero-placeholder,
.about-placeholder {
  display: grid;
  min-height: 100%;
  place-content: center;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(135, 206, 242, 0.17), transparent 55%),
    linear-gradient(45deg, #10212e, #173040);
}

.hero-placeholder span,
.about-placeholder span {
  max-width: 260px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-placeholder small,
.about-placeholder small {
  margin-top: 10px;
  color: var(--muted);
}

.hero-card-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 150px);
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 25, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54d98c;
  box-shadow: 0 0 0 5px rgba(84, 217, 140, 0.12);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 240px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(24, 24, 24, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-card-top {
  top: 42px;
  right: 0;
}

.floating-card-bottom {
  right: -8px;
  bottom: 92px;
}

.floating-label {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.floating-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(135, 206, 242, 0.12);
}

.hero-glow-two {
  right: -5%;
  bottom: 8%;
  width: 420px;
  height: 420px;
  background: rgba(167, 229, 211, 0.07);
}


.hero-proof {
  max-width: 650px;
  margin: -10px 0 34px;
  color: var(--accent-soft);
  font-weight: 600;
}

.hero-intro strong {
  color: var(--text);
}

.hero-photo,
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  object-position: 53% center;
}

.about-photo {
  object-position: center;
}

/* Creator credentials */

.credentials-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(135, 206, 242, 0.09), transparent 28%),
    var(--bg-soft);
}

.credentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 76px;
  align-items: center;
}

.credentials-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.credentials-copy blockquote {
  margin: 34px 0 20px;
  padding: 24px 26px;
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(135, 206, 242, 0.07);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.7vw, 1.85rem);
  line-height: 1.35;
}

.snapshot-note {
  margin-bottom: 0;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.credentials-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.credentials-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  min-height: 560px;
}

.performance-shot {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #071019;
}

.performance-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the TikTok engagement column on the right visible. */
  object-position: 58% 7%;
}

.performance-shot:nth-child(2) img {
  object-position: 60% 5%;
}

.performance-shot::after {
  position: absolute;
  inset: auto 0 0;
  height: 8%;
  background: linear-gradient(to bottom, transparent, rgba(7, 16, 25, 0.92));
  pointer-events: none;
  content: "";
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.platform-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background:
    linear-gradient(145deg, rgba(135, 206, 242, 0.06), transparent 55%),
    var(--panel);
}

.platform-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  color: var(--muted);
  font-weight: 700;
}

.platform-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent);
  font-size: 0.72rem;
}

.platform-card > strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.platform-card p {
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
}

.platform-card small {
  color: var(--muted);
}

.service-kicker {
  margin: 24px 0 0 !important;
  color: var(--accent-soft) !important;
}


/* Brand strip */

.brand-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 30px;
}

.brand-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.brand-list {
  display: flex;
  align-items: center;
  gap: clamp(28px, 7vw, 78px);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 700;
}

/* Shared section heading */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Work carousel */

.work-section {
  overflow: hidden;
}

.carousel-shell {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 32%);
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-message {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 300px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--muted);
  text-align: center;
}

.work-card {
  scroll-snap-align: start;
}

.work-card {
  min-width: 0;
  scroll-snap-align: start;
}

.work-video {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #050c12;
}

.work-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050c12;
}

.work-video video:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.work-card-copy {
  padding: 18px 4px 0;
}

.work-card-copy h3 {
  margin-bottom: 7px;
}

.work-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.work-tag {
  margin-bottom: 5px !important;
  color: var(--accent) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.video-error {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.work-card-copy {
  padding: 18px 4px 0;
}

.work-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.work-tag {
  margin-bottom: 5px !important;
  color: var(--accent) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.carousel-button {
  position: absolute;
  top: 37%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 16, 25, 0.86);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.carousel-button:hover {
  transform: scale(1.05);
  background: var(--accent);
}

.carousel-button-prev {
  left: -24px;
}

.carousel-button-next {
  right: -24px;
}

.carousel-progress {
  height: 2px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.carousel-progress span {
  display: block;
  width: 16.666%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left;
  transition: transform 100ms linear;
}

/* Services */

.services-section {
  background: var(--bg-soft);
}

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

.service-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
}

.service-card-featured {
  background:
    radial-gradient(circle at top right, rgba(135, 206, 242, 0.16), transparent 38%),
    var(--panel);
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 700;
}

.service-card h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

.service-card > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✦";
}

/* Strengths */

.strengths-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.strengths-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.strength-list {
  display: grid;
}

.strength-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.strength-item:last-child {
  border-bottom: 1px solid var(--line);
}

.strength-item > span {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.strength-item p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Process */

.process-section {
  background: var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--panel);
}

.process-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 74px;
  place-items: center;
  border-radius: 50%;
  background: rgba(135, 206, 242, 0.12);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: center;
}

.about-image {
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
}

.about-placeholder {
  min-height: 600px;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Contact */

.contact-section {
  padding-bottom: 140px;
  background:
    radial-gradient(circle at 12% 20%, rgba(135, 206, 242, 0.13), transparent 30%),
    var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--panel);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #08131d;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(135, 206, 242, 0.12);
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-note-success {
  color: var(--accent-soft);
}

.form-note-error {
  color: #ff9d9d;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #050c12;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 6px !important;
  font-size: 0.74rem !important;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

/* Responsive */


@media (max-width: 1080px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credentials-showcase {
    min-height: 620px;
  }

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

@media (max-width: 980px) {
  .section {
    padding: 88px 0;
  }

  .hero-grid,
  .strengths-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .strengths-grid,
  .about-grid,
  .contact-grid {
    gap: 54px;
  }

  .strengths-heading,
  .contact-copy {
    position: static;
  }

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

  .carousel-track {
    grid-auto-columns: minmax(275px, 45%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}


@media (max-width: 620px) {
  .credentials-showcase {
    gap: 8px;
    padding: 8px;
    min-height: 470px;
  }

  .performance-shot {
    border-radius: 14px;
  }

  .performance-shot img,
  .performance-shot:nth-child(2) img {
    object-position: 60% 4%;
  }

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

  .platform-card {
    min-height: auto;
  }

  .platform-card-top {
    margin-bottom: 30px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-nav {
    position: fixed;
    inset: 80px 14px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(11, 23, 34, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

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

  .stats {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .stats div,
  .stats div + div {
    padding: 0;
    border: 0;
  }

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

  .hero-card-main {
    right: 0;
  }

  .floating-card {
    width: 205px;
  }

  .floating-card-top {
    top: 20px;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 74px;
  }

  .hero-card-label {
    max-width: calc(100% - 24px);
    font-size: 0.82rem;
  }

  .brand-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0;
  }

  .brand-list {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .service-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: 82%;
  }

  .carousel-button {
    display: none;
  }

  .about-image,
  .about-placeholder {
    min-height: 470px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 72px 0;
  }

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

  .floating-card {
    width: 180px;
    padding: 14px;
  }

  .service-card,
  .contact-form {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
