:root {
  --bg: #05060c;
  --bg-soft: #0b1020;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f8ff;
  --muted: #a8afc7;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #53a6ff;
  --cyan: #5ff3ff;
  --violet: #8f6cff;
  --pink: #ff6bd5;
  --radius: 28px;
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(83, 166, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(143, 108, 255, 0.24), transparent 32rem),
    linear-gradient(180deg, #05060c 0%, #070b16 46%, #020308 100%);
  overflow-x: hidden;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.86) 48%, transparent 88%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 14, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 0;
  filter: drop-shadow(0 10px 24px rgba(83, 166, 255, 0.22));
}

.logo-text {
  position: relative;
  font-size: 1.18rem;
  line-height: 1;
}

.logo-text::after {
  position: absolute;
  right: -13px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(95, 243, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.header-cta {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.section-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 84px);
  padding: 92px 0 72px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: rgba(95, 243, 255, 0.36);
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 54%, #c7b7ff);
  box-shadow: 0 18px 55px rgba(83, 166, 255, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.07);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.hero-visual::before {
  position: absolute;
  inset: 14px 18px 0 6px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48px;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(95, 243, 255, 0.1) 47% 48%, transparent 48% 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.045), transparent 58%);
  transform: rotate(-4deg);
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(95, 243, 255, 0.18);
  border-radius: 999px;
  opacity: 0.72;
  animation: pulseRing 5.5s ease-in-out infinite;
}

.ring-one {
  right: 40px;
  top: 36px;
  width: 250px;
  height: 250px;
}

.ring-two {
  right: 0;
  top: -4px;
  width: 330px;
  height: 330px;
  animation-delay: -2.4s;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  right: 20px;
  top: 26px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(95, 243, 255, 0.78), transparent 66%);
}

.orb-two {
  left: 0;
  bottom: 68px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 107, 213, 0.35), transparent 66%);
  animation-delay: -2.5s;
}

.interface-card,
.floating-panel,
.service-card,
.choice-card,
.timeline article,
.contact-panel,
.tools-section,
.band {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.main-card {
  position: absolute;
  inset: 72px 0 auto auto;
  width: min(100%, 470px);
  padding: 16px;
  border-radius: 34px;
  transform: rotateX(10deg) rotateY(-16deg) rotateZ(3deg);
  animation: cardDrift 8s ease-in-out infinite;
}

.main-card::after {
  position: absolute;
  inset: -1px;
  border-radius: 34px;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(95, 243, 255, 0.42), transparent 34%, rgba(255, 107, 213, 0.26));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.card-topline {
  display: flex;
  gap: 8px;
  padding: 8px 8px 16px;
}

.card-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.website-preview {
  min-height: 430px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 10%, rgba(95, 243, 255, 0.24), transparent 11rem),
    linear-gradient(180deg, rgba(8, 13, 27, 0.92), rgba(4, 5, 12, 0.96));
}

.preview-nav,
.preview-title,
.preview-text,
.preview-grid i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-nav {
  width: 48%;
  height: 14px;
  margin-bottom: 72px;
}

.preview-title {
  width: 82%;
  height: 58px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(95, 243, 255, 0.55));
}

.preview-text {
  width: 72%;
  height: 12px;
  margin-bottom: 12px;
}

.preview-text.short {
  width: 52%;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 88px;
}

.preview-grid i {
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(83, 166, 255, 0.18), rgba(255, 255, 255, 0.09));
}

.floating-panel {
  position: absolute;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
}

.floating-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
}

.floating-panel span {
  color: var(--muted);
  font-size: 0.84rem;
}

.panel-a {
  left: 0;
  top: 105px;
  animation: float 6s ease-in-out infinite -1s;
}

.panel-b {
  right: 18px;
  bottom: 48px;
  animation: float 6s ease-in-out infinite -3s;
}

.mini-site {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 9px;
  width: 156px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(5, 9, 20, 0.7);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.mini-site span,
.mini-site i {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-site span {
  width: 72%;
  height: 14px;
  background: linear-gradient(90deg, rgba(95, 243, 255, 0.72), rgba(255, 255, 255, 0.2));
}

.mini-site i {
  width: 100%;
  height: 8px;
}

.mini-site i:last-child {
  width: 54%;
}

.mini-one {
  right: 290px;
  bottom: 150px;
  animation: float 7s ease-in-out infinite -2s;
}

.mini-two {
  right: 12px;
  top: 10px;
  transform: scale(0.86);
  animation: float 6.4s ease-in-out infinite -4s;
}

.code-ribbon {
  position: absolute;
  left: 24px;
  bottom: 56px;
  z-index: 4;
  display: flex;
  gap: 8px;
  max-width: 290px;
  padding: 10px;
  border: 1px solid rgba(95, 243, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 5, 12, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: ribbonSlide 8s ease-in-out infinite;
}

.code-ribbon span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  font-weight: 800;
}

.band {
  margin: 10px 0 120px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
}

.band p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.07em;
}

.showcase-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  margin: -48px 0 82px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(95, 243, 255, 0.16), transparent 19rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.showcase-strip::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.08) 45%, transparent 62%);
  animation: shineSweep 7s ease-in-out infinite;
}

.showcase-track {
  position: relative;
  min-height: 330px;
}

.snapshot {
  position: absolute;
  width: min(78%, 390px);
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 20%, rgba(95, 243, 255, 0.18), transparent 9rem),
    rgba(5, 9, 20, 0.74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.snapshot-nav,
.snapshot-hero,
.snapshot span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.snapshot-nav {
  width: 44%;
  height: 12px;
  margin-bottom: 50px;
}

.snapshot-hero {
  width: 82%;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(95, 243, 255, 0.35));
}

.snapshot span {
  width: 66%;
  height: 10px;
  margin-bottom: 10px;
}

.snapshot span:last-child {
  width: 42%;
}

.snap-one {
  left: 0;
  top: 34px;
  transform: rotate(-7deg);
  animation: snapshotFloat 8s ease-in-out infinite;
}

.snap-two {
  left: 23%;
  top: 0;
  transform: rotate(5deg) scale(0.93);
  animation: snapshotFloat 7s ease-in-out infinite -2s;
}

.snap-three {
  left: 12%;
  bottom: 0;
  transform: rotate(2deg) scale(0.86);
  animation: snapshotFloat 9s ease-in-out infinite -4s;
}

.showcase-copy {
  position: relative;
  z-index: 2;
}

.section {
  padding: 80px 0 120px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 24px;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.choice-card:hover {
  border-color: rgba(95, 243, 255, 0.36);
  transform: translateY(-8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.card-number,
.choice-card span,
.timeline span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card p,
.choice-card p,
.timeline p,
.tools-section p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  align-items: start;
  padding: 60px 0 130px;
}

.sticky-copy {
  position: sticky;
  top: 126px;
}

.choice-stack {
  display: grid;
  gap: 18px;
}

.choice-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.choice-card.highlighted {
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
}

.choice-card.highlighted:hover {
  border-color: rgba(95, 243, 255, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 243, 255, 0.5), transparent);
}

.timeline article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: 24px;
}

.tools-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
  align-items: end;
  margin: 40px 0 120px;
  padding: clamp(30px, 6vw, 72px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 108, 255, 0.24), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
}

.about {
  align-items: start;
  padding: 70px 0 130px;
}

.about-copy {
  display: grid;
  gap: 18px;
  font-size: 1.05rem;
}

.contact {
  padding: 40px 0 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  padding: clamp(24px, 5vw, 60px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 10%, rgba(95, 243, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 84% 70%, rgba(255, 107, 213, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-status {
  margin: 0 0 4px;
  padding: 13px 15px;
  border: 1px solid rgba(95, 243, 255, 0.28);
  border-radius: 16px;
  color: var(--text);
  background: rgba(95, 243, 255, 0.09);
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  outline: none;
  color: var(--text);
  background: rgba(3, 5, 12, 0.46);
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(95, 243, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(95, 243, 255, 0.09);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes cardDrift {
  0%, 100% {
    transform: rotateX(10deg) rotateY(-16deg) rotateZ(3deg) translateY(0);
  }
  50% {
    transform: rotateX(7deg) rotateY(-10deg) rotateZ(1deg) translateY(-16px);
  }
}

@keyframes cardDriftCentered {
  0%, 100% {
    transform: translateX(-50%) rotateX(8deg) rotateY(-10deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotateX(5deg) rotateY(-6deg) rotateZ(1deg) translateY(-14px);
  }
}

@keyframes pulseRing {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.05);
  }
}

@keyframes ribbonSlide {
  0%, 100% {
    transform: translateX(0) rotate(-2deg);
  }
  50% {
    transform: translateX(18px) rotate(2deg);
  }
}

@keyframes snapshotFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes shineSweep {
  0%, 35% {
    transform: translateX(-120%);
  }
  70%, 100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1120px) {
  .section-grid,
  .split-section {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .tools-section,
  .contact-panel,
  .showcase-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

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

  .main-card {
    inset: 36px auto auto 50%;
    width: min(92vw, 470px);
    transform: translateX(-50%) rotateX(8deg) rotateY(-10deg) rotateZ(2deg);
    animation-name: cardDriftCentered;
  }

  .showcase-strip {
    margin-top: -34px;
  }

  .mini-one {
    right: auto;
    left: 10px;
    bottom: 118px;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    top: 10px;
    padding: 10px;
    margin-top: 10px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.08rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 48px;
  }

  h1 {
    font-size: clamp(2.78rem, 14vw, 4rem);
    letter-spacing: -0.08em;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.15rem);
    letter-spacing: -0.07em;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .main-card {
    inset: 28px auto auto 50%;
    width: min(100%, 380px);
    padding: 12px;
    transform: translateX(-50%) rotateX(4deg) rotateY(-7deg) rotateZ(1deg);
    animation: cardDriftCentered 9s ease-in-out infinite;
  }

  .website-preview {
    min-height: 300px;
    padding: 18px;
  }

  .preview-nav {
    margin-bottom: 50px;
  }

  .preview-title {
    height: 46px;
  }

  .preview-grid {
    gap: 9px;
    margin-top: 58px;
  }

  .preview-grid i {
    height: 62px;
    border-radius: 14px;
  }

  .floating-panel {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .floating-panel strong {
    font-size: 1.35rem;
  }

  .floating-panel span {
    font-size: 0.75rem;
  }

  .panel-a {
    left: 0;
    top: 2px;
  }

  .panel-b {
    right: 0;
    bottom: 0;
  }

  .mini-site,
  .code-ribbon,
  .signal-ring {
    display: none;
  }

  .band {
    margin: 0 0 58px;
    padding: 24px;
    border-radius: 24px;
  }

  .band p {
    font-size: clamp(1.45rem, 8vw, 2.3rem);
    line-height: 1.08;
  }

  .showcase-strip {
    margin: -22px 0 38px;
    padding: 22px;
    border-radius: 26px;
  }

  .showcase-track {
    min-height: 250px;
  }

  .snapshot {
    width: 92%;
    min-height: 180px;
    padding: 14px;
    border-radius: 20px;
  }

  .snapshot-nav {
    margin-bottom: 38px;
  }

  .snapshot-hero {
    height: 36px;
  }

  .section {
    padding: 48px 0 68px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .choice-card,
  .timeline article {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .card-number,
  .choice-card span,
  .timeline span {
    margin-bottom: 34px;
  }

  .timeline-line {
    display: none;
  }

  .tools-section,
  .about,
  .split-section {
    padding-top: 48px;
    padding-bottom: 76px;
  }

  .tools-section,
  .contact-panel {
    gap: 28px;
    border-radius: 26px;
  }

  .contact {
    padding-top: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 15px;
  }

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

@media (max-width: 390px) {
  .site-shell {
    width: min(100% - 16px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
  }

  .proof-row span {
    font-size: 0.78rem;
    padding: 9px 11px;
  }

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

  .website-preview {
    min-height: 270px;
  }

  .panel-b {
    display: none;
  }
}

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