:root {
  color-scheme: light;
  --ink: #081117;
  --ink-soft: #31424c;
  --paper: #fbfcfa;
  --paper-warm: #f5f1e8;
  --line: rgba(8, 17, 23, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --sun: #ffc845;
  --cyan: #00a8b5;
  --coral: #ff6b4a;
  --mint: #8cd867;
  --dark: #071015;
  --steel: #dfe7eb;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(8, 17, 23, 0.22);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

img,
svg {
  display: block;
}

svg {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 200, 69, 0.2), rgba(0, 168, 181, 0.1) 42%, transparent 70%);
  opacity: 0;
  transform: translate3d(calc(var(--glow-x, 50vw) - 50%), calc(var(--glow-y, 50vh) - 50%), 0);
  transition: opacity 180ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

@keyframes heroDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.07) translate3d(-12px, 8px, 0);
  }

  100% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(-120%) rotate(10deg);
    opacity: 0;
  }

  20%,
  52% {
    opacity: 0.35;
  }

  100% {
    transform: translateX(120%) rotate(10deg);
    opacity: 0;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(140, 216, 103, 0.14);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(140, 216, 103, 0.04);
  }
}

@keyframes beamScan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(260%);
  }
}

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

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

@keyframes objectFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(58deg) rotateZ(-36deg);
  }

  50% {
    transform: translateY(-10px) rotateX(58deg) rotateZ(-30deg);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px 32px;
  color: #fff;
  background: rgba(7, 16, 21, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    min-height 180ms ease;
}

.site-header[data-elevated="true"] {
  min-height: 66px;
  background: rgba(7, 16, 21, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-grid;
  grid-template-columns: 46px auto;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: var(--ink);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.lang-button {
  min-height: 38px;
  border-radius: var(--radius);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  border: 0;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
}

.lang-button.is-active {
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background-image:
    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: 68px 68px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.45) 48%, transparent 86%);
}

.hero::after {
  z-index: 2;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(0, 168, 181, 0.16), transparent);
  animation: scanSweep 8s ease-in-out infinite;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/sunny-3d-gifts-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 200, 69, 0.2), transparent 28%),
    radial-gradient(circle at 72% 20%, rgba(0, 168, 181, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(7, 16, 21, 0.94) 0%, rgba(7, 16, 21, 0.7) 40%, rgba(7, 16, 21, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 16, 21, 0.9) 0%, rgba(7, 16, 21, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 820px;
  margin: 0 auto;
  padding: 112px 0 56px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  font-size: 4.4rem;
  font-weight: 920;
}

h2 {
  font-size: 2.4rem;
  font-weight: 880;
}

h3 {
  font-size: 1.22rem;
  font-weight: 840;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 34px;
}

.hero-metrics article {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-metrics article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 200, 69, 0.16), transparent 48%, rgba(0, 168, 181, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-metrics article:hover::before {
  opacity: 1;
}

.hero-metrics strong,
.hero-metrics span {
  position: relative;
  display: block;
}

.hero-metrics strong {
  color: var(--sun);
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 820;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(255, 107, 74, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button:hover,
.button:focus-visible,
.lang-button:hover,
.lang-button:focus-visible,
.service-option:hover,
.service-option:focus-visible {
  outline: 3px solid rgba(255, 200, 69, 0.34);
  outline-offset: 2px;
}

.quote-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(7, 16, 21, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 200, 69, 0.8), rgba(0, 168, 181, 0.05), rgba(255, 255, 255, 0.42));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.quote-beam {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 168, 181, 0.22), transparent);
  opacity: 0.75;
  animation: beamScan 5.2s linear infinite;
  pointer-events: none;
}

.quote-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.quote-card-header p,
.quote-summary,
.site-footer p {
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(140, 216, 103, 0.14);
  animation: pulseDot 2.2s ease-in-out infinite;
}

.quote-card h2 {
  font-size: 1.65rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.service-option {
  display: grid;
  grid-template-columns: auto auto;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.service-option.is-active {
  border-color: rgba(255, 200, 69, 0.9);
  background: rgba(255, 200, 69, 0.18);
  color: var(--sun);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(255, 200, 69, 0.2);
}

.upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.8fr);
  gap: 12px;
  align-items: center;
}

.file-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 0 12px;
  cursor: pointer;
}

.file-control span {
  margin: 0;
  color: #fff;
}

.file-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-summary {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.76;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.form-status[data-type="success"] {
  color: var(--mint);
}

.form-status[data-type="error"] {
  color: #ffb6a6;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.signal-band > div {
  min-height: 112px;
  padding: 26px 32px;
  background: var(--paper);
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  font-size: 1.05rem;
}

.signal-band span {
  margin-top: 8px;
  color: var(--ink-soft);
}

.capability-strip {
  overflow: hidden;
  border-block: 1px solid rgba(8, 17, 23, 0.12);
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 12%, transparent 88%, var(--paper) 100%),
    #fff;
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
}

.capability-track span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(8, 17, 23, 0.13);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink-soft);
  background: linear-gradient(180deg, #fff, #f3f7f7);
  box-shadow: 0 10px 30px rgba(8, 17, 23, 0.06);
  font-size: 0.9rem;
  font-weight: 780;
  white-space: nowrap;
}

.section {
  padding: 88px 32px;
}

.section-light {
  background: var(--paper);
}

.section-what {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 200, 69, 0.16), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(0, 168, 181, 0.14), transparent 30%),
    linear-gradient(180deg, #fff, var(--paper));
}

.section-what::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 17, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 23, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
  pointer-events: none;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.studio-console {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.82fr);
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto 18px;
}

.console-screen,
.console-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 60px rgba(8, 17, 23, 0.08);
}

.console-screen {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 200, 69, 0.18), transparent 34%),
    linear-gradient(135deg, #f9fbfa, #eef7f7);
}

.console-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 17, 23, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 23, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 58% 44%, #000, transparent 70%);
  pointer-events: none;
}

.console-topline,
.console-object,
.console-steps {
  position: relative;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.console-topline span {
  color: var(--cyan);
  font-weight: 820;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--ink);
}

.console-object {
  width: 178px;
  height: 178px;
  margin: 24px auto 0;
  transform-style: preserve-3d;
  animation: objectFloat 5.4s ease-in-out infinite;
}

.console-object span {
  position: absolute;
  display: block;
  border: 2px solid rgba(8, 17, 23, 0.82);
  border-radius: 8px;
}

.console-object span:nth-child(1) {
  inset: 28px 38px 38px 28px;
  background: var(--sun);
  box-shadow: 20px 22px 0 rgba(8, 17, 23, 0.12);
}

.console-object span:nth-child(2) {
  inset: 62px 28px 24px 78px;
  background: rgba(0, 168, 181, 0.86);
}

.console-object span:nth-child(3) {
  width: 54px;
  height: 54px;
  right: 24px;
  top: 28px;
  border-radius: 999px;
  background: var(--coral);
}

.console-steps {
  display: grid;
  gap: 12px;
}

.console-steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  min-height: 75px;
  padding: 14px;
}

.console-steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
}

.console-steps strong {
  font-size: 1rem;
}

.what-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.what-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(8, 17, 23, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 17, 23, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.what-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 16, 21, 0.18) 58%, rgba(7, 16, 21, 0.92));
  pointer-events: none;
}

.what-card:hover {
  border-color: rgba(0, 168, 181, 0.32);
  box-shadow: 0 34px 82px rgba(8, 17, 23, 0.15);
  transform: translateY(-6px);
}

.what-card > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 420ms ease;
}

.what-card:hover > img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.what-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
}

.what-copy h3,
.what-copy p {
  margin: 0;
}

.what-copy h3 {
  margin-top: 12px;
}

.what-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.what-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.what-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 760;
}

.what-card-combo {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  min-height: 430px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 200, 69, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(0, 168, 181, 0.18), transparent 32%),
    var(--dark);
}

.what-card-combo::before {
  background: linear-gradient(90deg, transparent, rgba(7, 16, 21, 0.26) 52%, rgba(7, 16, 21, 0.96) 100%);
}

.what-card-combo .what-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.combo-collage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.combo-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000, transparent 92%);
  pointer-events: none;
}

.combo-collage img {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.26);
  transition: transform 420ms ease;
}

.combo-collage img:nth-child(1) {
  top: 46px;
  left: 54px;
  transform: rotate(-7deg);
}

.combo-collage img:nth-child(2) {
  top: 28px;
  right: 72px;
  transform: rotate(5deg);
}

.combo-collage img:nth-child(3) {
  bottom: 40px;
  left: 156px;
  transform: rotate(4deg);
}

.combo-collage img:nth-child(4) {
  bottom: 34px;
  right: 36px;
  transform: rotate(-5deg);
}

.what-card-combo:hover .combo-collage img:nth-child(1) {
  transform: translateY(-8px) rotate(-9deg);
}

.what-card-combo:hover .combo-collage img:nth-child(2) {
  transform: translateY(-10px) rotate(7deg);
}

.what-card-combo:hover .combo-collage img:nth-child(3) {
  transform: translateY(8px) rotate(6deg);
}

.what-card-combo:hover .combo-collage img:nth-child(4) {
  transform: translateY(6px) rotate(-7deg);
}

.combo-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.combo-flow span,
.combo-flow strong {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  border-radius: var(--radius);
}

.combo-flow span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 840;
}

.combo-flow strong {
  color: var(--sun);
}

.service-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card,
.gallery-card,
.timeline article {
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 251, 0.95)),
    #fff;
  box-shadow: 0 18px 58px rgba(8, 17, 23, 0.07);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sun), var(--coral), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover {
  border-color: rgba(0, 168, 181, 0.42);
  box-shadow: 0 28px 72px rgba(8, 17, 23, 0.12);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #eaf8f8;
  color: #007985;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.service-card:nth-child(2) .service-icon {
  background: #fff4cc;
  color: #8e6100;
}

.service-card:nth-child(3) .service-icon {
  background: #ffece6;
  color: #a93117;
}

.service-card:nth-child(4) .service-icon {
  background: #edf8e8;
  color: #3f7d22;
}

.service-card p,
.gallery-card p,
.timeline p {
  color: var(--ink-soft);
}

.service-card p {
  min-height: 96px;
  margin: 14px 0 18px;
}

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

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-card {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 16, 21, 0.24) 58%, rgba(7, 16, 21, 0.9) 100%),
    linear-gradient(135deg, rgba(255, 200, 69, 0.14), transparent 46%, rgba(0, 168, 181, 0.18));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-6px);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card-large {
  grid-column: span 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-card .product-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 21, 0.9) 32%, rgba(7, 16, 21, 0.98));
}

.gallery-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--sun);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-top: 12px;
}

.product-copy {
  position: relative;
  padding: 22px;
}

.product-copy h3,
.product-copy p {
  margin: 0;
}

.product-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.product-copy strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sun);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 620px);
  gap: 72px;
  align-items: start;
  justify-content: center;
}

.split-section .section-heading {
  margin: 0;
}

.sticky-heading {
  position: sticky;
  top: 96px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 49px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 168, 181, 0.35), rgba(255, 200, 69, 0.45), transparent);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(8, 17, 23, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.timeline article:hover {
  border-color: rgba(255, 107, 74, 0.32);
  box-shadow: 0 22px 58px rgba(8, 17, 23, 0.1);
  transform: translateX(6px);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--sun);
  font-weight: 900;
  box-shadow: 0 0 0 8px #fff;
}

.timeline p {
  margin: 8px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 32px;
  align-items: start;
  padding: 34px 32px;
  color: #fff;
  background: #03080b;
}

.site-footer p,
.site-footer address,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.brand,
.main-nav a,
.lang-switcher,
.hero-copy,
.quote-card {
  animation: pageEnter 620ms ease both;
}

.quote-card {
  animation-delay: 110ms;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 120px;
  }

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

  h1 {
    max-width: 12ch;
    font-size: 3.8rem;
  }

  .quote-card {
    max-width: 640px;
  }

  .studio-console {
    grid-template-columns: 1fr;
  }

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

  .what-card-combo {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .what-card-combo::before {
    background: linear-gradient(180deg, transparent 12%, rgba(7, 16, 21, 0.2) 48%, rgba(7, 16, 21, 0.98) 100%);
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    grid-template-columns: 40px auto;
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .lang-switcher {
    gap: 2px;
  }

  .lang-button {
    padding: 0 8px;
  }

  .hero,
  .hero-content {
    min-height: 0;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    gap: 28px;
    padding: 104px 0 36px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 16, 21, 0.94), rgba(7, 16, 21, 0.68)),
      linear-gradient(0deg, rgba(7, 16, 21, 0.95), rgba(7, 16, 21, 0.1) 58%);
  }

  h1 {
    max-width: 12ch;
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    min-height: 74px;
  }

  .hero-metrics span {
    margin-top: 0;
  }

  .quote-card {
    padding: 18px;
  }

  .form-grid,
  .upload-row,
  .signal-band,
  .what-grid,
  .studio-console,
  .gallery-grid,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .what-card,
  .what-card > img {
    min-height: 420px;
  }

  .what-card-combo {
    grid-column: span 1;
    min-height: 0;
  }

  .what-card-combo .what-copy {
    padding: 24px;
  }

  .combo-collage {
    min-height: 330px;
  }

  .combo-collage img {
    width: 48%;
  }

  .combo-collage img:nth-child(1) {
    top: 34px;
    left: 18px;
  }

  .combo-collage img:nth-child(2) {
    top: 24px;
    right: 18px;
  }

  .combo-collage img:nth-child(3) {
    bottom: 28px;
    left: 40px;
  }

  .combo-collage img:nth-child(4) {
    bottom: 22px;
    right: 18px;
  }

  .gallery-card-large {
    grid-column: span 1;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 390px;
  }

  .section {
    padding: 64px 16px;
  }

  .signal-band > div {
    min-height: auto;
    padding: 22px 16px;
  }

  .capability-track {
    animation-duration: 24s;
  }

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

  .console-screen {
    min-height: 220px;
  }

  .console-topline {
    display: grid;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .split-section {
    gap: 28px;
  }

  .sticky-heading {
    position: static;
  }

  .timeline article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .timeline::before {
    left: 40px;
  }

  .timeline span {
    width: 46px;
    height: 46px;
  }

  .site-footer {
    padding: 30px 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand strong {
    max-width: 120px;
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .site-header {
    gap: 10px;
  }

  .lang-button {
    min-height: 34px;
    padding: 0 7px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

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

  .cursor-glow {
    display: none;
  }
}

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

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