:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --surface: #111111;
  --surface-strong: #151515;
  --surface-hover: #181818;
  --text: #f5f5f3;
  --text-soft: #b0b0ac;
  --text-muted: #918780;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --orange: #ff6500;
  --orange-bright: #ff7a1a;
  --orange-soft: rgba(255, 101, 0, 0.12);
  --green: #6ee7a8;
  --header-height: 86px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 101, 0, 0.055), transparent 27rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: #080808;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--bg);
  border-radius: 20px;
  background: #363636;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

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

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

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

main:focus {
  outline: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--orange);
  color: #080808;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
  scroll-margin-top: var(--header-height);
}

.page-progress {
  position: fixed;
  z-index: 100;
  top: 5px;
  left: 50%;
  width: min(560px, 42vw);
  height: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 101, 0, 0.2);
  border-radius: 999px;
  background: rgba(40, 18, 6, 0.54);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 156, 91, 0.08);
  pointer-events: none;
  transform: translateX(-50%);
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff4f00, var(--orange), #ffb06e);
  box-shadow: 0 0 10px rgba(255, 101, 0, 0.58);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.ambient-canvas {
  position: fixed;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pointer-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.065), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.4s ease;
  will-change: transform;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: auto;
}

.brand-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.25vw, 34px);
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.lang-switch {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lang-switch:hover,
.menu-button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.menu-button {
  position: relative;
  display: none;
}

.menu-button span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.menu-button span:first-child { top: 16px; }
.menu-button span:last-child { top: 23px; }
.menu-button[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  opacity: 0;
  background: rgba(255, 101, 0, 0.17);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s var(--ease), opacity 0.25s ease;
}

.button:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(18);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg,
.text-link svg,
.footer-up svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-primary {
  background: var(--orange);
  color: #0a0a0a;
}

.button-primary:hover {
  background: var(--orange-bright);
  box-shadow: 0 14px 38px rgba(255, 101, 0, 0.22);
}

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

.button-ghost:hover,
.button-outline:hover {
  border-color: rgba(255, 101, 0, 0.44);
  background: var(--orange-soft);
}

.button-text {
  min-height: auto;
  padding: 10px 3px;
  border-radius: 0;
  color: var(--text-soft);
}

.button-text svg {
  color: var(--orange);
}

.button-text:hover {
  color: var(--text);
}

.hero {
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 76px);
  padding-bottom: 92px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -15%;
  width: 68vw;
  height: 68vw;
  max-width: 920px;
  max-height: 920px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 101, 0, 0.09), rgba(255, 101, 0, 0.012) 43%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(410px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 4vw, 58px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(110, 231, 168, 0.55);
}

.status-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(110, 231, 168, 0.34);
  border-radius: inherit;
  content: "";
  animation: pulse-dot 2s ease-out infinite;
}

.hero-title {
  max-width: 790px;
  margin-top: 24px;
  font-size: clamp(52px, 5.8vw, 84px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.hero-title span {
  display: block;
}

.hero-title .text-muted {
  color: #8d8d88;
}

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

.hero-lead {
  max-width: 620px;
  margin-top: 32px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  letter-spacing: -0.015em;
}

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

.hero-qualifier {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding: 19px 18px 0 0;
}

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

.hero-stats dt {
  color: var(--text);
  font-size: 17px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-stats dd {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 101, 0, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 74%);
}

.visual-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 32%, rgba(255, 101, 0, 0.08), transparent 68%);
  transform: translateX(-100%);
  animation: grid-scan 6s ease-in-out infinite;
}

.logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.18), transparent 65%);
  filter: blur(20px);
  transform: translate(-50%, -50%);
  animation: halo-breathe 5s ease-in-out infinite;
}

.hero-mark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 76%;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 22px rgba(255, 101, 0, 0.08));
  transform: translate(-50%, -50%);
  animation: mark-float 6s ease-in-out infinite;
}

.brand-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brand-orbit::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 101, 0, 0.8);
}

.brand-orbit-one {
  width: 72%;
  aspect-ratio: 1;
  animation: orbit-one 18s linear infinite;
}

.brand-orbit-two {
  width: 96%;
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.035);
  animation: orbit-two 28s linear infinite reverse;
}

.visual-label,
.visual-index {
  position: absolute;
  z-index: 4;
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.visual-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.visual-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(110, 231, 168, 0.8);
}

.visual-label-top { top: 30px; left: 30px; }
.visual-label-bottom { right: 30px; bottom: 30px; }
.visual-index { right: 30px; top: 34px; }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 27px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  height: 70%;
  content: "";
  background: var(--orange);
  animation: scroll-line 2s ease-in-out infinite;
}

.marquee {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(255, 101, 0, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 78, 0, 0.035), rgba(255, 123, 43, 0.075) 50%, rgba(255, 78, 0, 0.035)),
    #0a0909;
  box-shadow: inset 0 1px rgba(255, 160, 99, 0.045), inset 0 -1px rgba(0, 0, 0, 0.28);
}

.marquee::before,
.marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(11vw, 150px);
  content: "";
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #090909, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #090909, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding: 0;
  color: #ffd4b8;
  font-size: clamp(11px, 0.78vw, 14px);
  font-weight: 820;
  letter-spacing: 0.14em;
  text-shadow: 0 0 22px rgba(255, 101, 0, 0.12);
  animation: marquee-loop 26s linear infinite;
  transform: translate3d(0, 0, 0);
}

.marquee-group {
  display: flex;
  min-width: max-content;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(24px, 2.4vw, 44px);
  padding: 22px clamp(24px, 2.4vw, 44px) 22px 0;
}

.marquee-track span:nth-of-type(2n) {
  color: #ff7620;
}

.marquee-track i {
  color: var(--orange);
  font-size: 13px;
  font-style: normal;
  text-shadow: 0 0 13px rgba(255, 101, 0, 0.58);
}

.section-heading {
  max-width: 830px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.section-kicker {
  gap: 14px;
  color: var(--text-muted);
}

.section-kicker span:first-child {
  color: var(--orange);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.section-heading h2,
.split-heading h2,
.review-copy h2,
.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 690;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p,
.split-heading > p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.split-heading > p {
  margin-top: 0;
  padding-bottom: 5px;
}

.about {
  overflow: hidden;
}

.about::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: -16rem;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  content: "";
  background: rgba(255, 101, 0, 0.055);
  filter: blur(110px);
}

.about-bento {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  grid-template-rows: minmax(285px, auto) minmax(190px, auto);
  gap: 16px;
}

.bento-card,
.skill-card,
.service-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transform-style: preserve-3d;
}

.bento-card::before,
.skill-card::before,
.service-card::before,
.price-card::before {
  position: absolute;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 330px;
  height: 330px;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
}

.bento-card:hover::before,
.skill-card:hover::before,
.service-card:hover::before,
.price-card:hover::before {
  opacity: 1;
}

.bento-card-main {
  display: flex;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.card-index,
.skill-number,
.mini-label {
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.bento-icon {
  width: 108px;
  height: 108px;
  margin: 34px auto;
  color: var(--orange);
  filter: drop-shadow(0 0 32px rgba(255, 101, 0, 0.16));
}

.bento-card h3,
.skill-card h3,
.service-card h3,
.timeline-content h3,
.price-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.bento-card p,
.skill-card p,
.service-card p,
.timeline-content p,
.price-card > p {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.bento-card-stat {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.bento-card-stat strong {
  display: flex;
  align-items: flex-start;
  font-size: clamp(62px, 7vw, 92px);
  font-weight: 650;
  line-height: 0.8;
  letter-spacing: -0.075em;
}

.bento-card-stat strong span {
  margin: 3px 0 0 3px;
  color: var(--orange);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.bento-card-stat p {
  max-width: 170px;
  color: var(--text-muted);
}

.bento-card-accent {
  border-color: rgba(255, 101, 0, 0.24);
  background: linear-gradient(150deg, rgba(255, 101, 0, 0.12), rgba(255, 101, 0, 0.025));
}

.bento-card-accent strong {
  color: var(--orange);
}

.bento-card-wide {
  display: flex;
  grid-column: 2 / span 2;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
}

.bento-card-wide h3 {
  max-width: 300px;
  margin-top: 9px;
}

.code-line {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a0a;
  color: #9a958f;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  white-space: nowrap;
}

.code-line span { color: #bc78ff; }
.code-line i { color: var(--orange-bright); font-style: normal; }

.skills-section,
.pricing-section {
  background: rgba(255, 255, 255, 0.012);
}

.skills-grid,
.services-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.skill-card {
  min-height: 365px;
  padding: 28px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.15s ease-out;
}

.skill-card:hover,
.service-card:hover {
  border-color: rgba(255, 101, 0, 0.28);
  background: linear-gradient(145deg, rgba(255, 101, 0, 0.065), rgba(255, 255, 255, 0.016));
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--orange);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.skill-number {
  position: absolute;
  top: 30px;
  right: 30px;
}

.skill-card h3 {
  margin-top: 120px;
}

.skill-card p {
  max-width: 330px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.skill-tags span,
.case-tags li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.work-section {
  overflow: hidden;
}

.work-section::before {
  position: absolute;
  z-index: -1;
  right: -22rem;
  bottom: 8%;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  content: "";
  background: rgba(255, 101, 0, 0.06);
  filter: blur(130px);
}

.case-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.62fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.case-preview {
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 38px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 101, 0, 0.14), transparent 35%),
    linear-gradient(145deg, #151515, #0b0b0b);
}

.case-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.browser-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: #121417;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
  transform: perspective(1200px) rotateX(1.5deg) rotateY(-2deg);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.case-preview:hover .browser-frame {
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.58);
  transform: perspective(1200px) rotateX(0) rotateY(0) scale(1.015);
}

.browser-toolbar {
  display: grid;
  height: 38px;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding-inline: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #191b1f;
  color: #9b9da3;
  font-size: 9px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #777b82;
}

.browser-dots i:first-child { background: #ff6b5c; }
.browser-dots i:nth-child(2) { background: #f7c84b; }
.browser-dots i:last-child { background: #5fd47b; }

.browser-address {
  overflow: hidden;
  padding: 4px 10px;
  border-radius: 5px;
  background: #101215;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-toolbar > span {
  justify-self: end;
}

.project-shot {
  min-height: 480px;
  padding: 20px 25px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 36%, rgba(174, 128, 70, 0.28), transparent 25%),
    linear-gradient(145deg, #0e1116, #17191d 54%, #0c0e12);
  color: #f5f2e9;
  font-family: Georgia, "Times New Roman", serif;
}

.shot-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 7px;
  letter-spacing: 0.04em;
}

.shot-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.shot-brand b {
  margin-right: 4px;
  color: #c89a58;
}

.shot-brand i {
  color: #c89a58;
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.shot-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: 355px;
}

.shot-content small {
  color: #b38b54;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 6px;
  letter-spacing: 0.12em;
}

.shot-content strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(36px, 4vw, 61px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.shot-content strong em {
  color: #c89a58;
  font-style: italic;
}

.shot-content p {
  max-width: 270px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 8px;
  line-height: 1.5;
}

.shot-button {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 13px;
  border-radius: 2px;
  background: #b9894e;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 7px;
  font-weight: 700;
}

.shot-symbol {
  color: rgba(200, 154, 88, 0.5);
  font-size: clamp(130px, 16vw, 210px);
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 60px rgba(200, 154, 88, 0.24);
}

.shot-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shot-footer span {
  padding: 12px 0;
  color: #fff;
  font-size: 18px;
}

.shot-footer span + span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.shot-footer i {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.38);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-hover-icon {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #0a0a0a;
  opacity: 0;
  transform: translate(-50%, -35%) scale(0.8);
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}

.case-hover-icon svg {
  width: 24px;
  height: 24px;
}

.case-preview:hover .case-hover-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.case-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 48px);
}

.case-topline,
.price-top {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.case-info h3 {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 670;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.case-info p {
  margin-top: 17px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.case-tags li {
  padding: 7px 10px;
  font-size: 8px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  border-color: var(--orange);
  color: var(--orange-bright);
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 150px minmax(0, 1fr);
  min-height: 210px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-marker {
  position: relative;
}

.timeline-marker::after {
  position: absolute;
  top: 7px;
  bottom: -43px;
  left: 4px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-marker span {
  position: relative;
  z-index: 1;
  display: block;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 101, 0, 0.15);
}

.timeline-date {
  padding-top: 1px;
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
}

.timeline-content > span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-content p {
  max-width: 620px;
  margin-top: 14px;
}

.services-section {
  border-top: 1px solid var(--line);
}

.service-card {
  min-height: 500px;
  padding: 28px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.15s ease-out;
}

.service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.service-card h3 {
  margin-top: 106px;
}

.service-card > p {
  min-height: 72px;
  margin-top: 15px;
}

.service-card ul,
.price-card ul {
  display: grid;
  gap: 11px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.service-card li,
.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
}

.service-card li svg,
.price-card li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--orange);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 630px;
  flex-direction: column;
  padding: 30px;
  transition: border-color 0.35s ease, transform 0.35s var(--ease);
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.price-card-featured {
  border-color: rgba(255, 101, 0, 0.35);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 101, 0, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(255, 101, 0, 0.08), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 13px;
  border-radius: 0 0 9px 9px;
  background: var(--orange);
  color: #0a0a0a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 56px;
}

.price-card > p {
  min-height: 46px;
}

.price {
  margin-top: 35px;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 680;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.price small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.price i {
  color: var(--orange);
  font-size: 19px;
  font-style: normal;
}

.price-text {
  color: var(--orange);
}

.price-card ul {
  margin-bottom: 34px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.reviews-section {
  padding-top: clamp(50px, 7vw, 90px);
}

.review-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 100px minmax(0, 1.4fr) minmax(230px, 0.52fr);
  gap: 34px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(255, 101, 0, 0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 101, 0, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 101, 0, 0.055), rgba(255, 255, 255, 0.015));
}

.review-panel::after {
  position: absolute;
  right: 8%;
  bottom: -55%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.015), 0 0 0 110px rgba(255, 255, 255, 0.008);
}

.review-symbol {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
}

.review-symbol svg {
  width: 30px;
  height: 30px;
}

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

.review-copy h2 {
  max-width: 700px;
  font-size: clamp(36px, 4.5vw, 60px);
}

.review-copy > p {
  max-width: 670px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.review-copy .text-link {
  margin-top: 28px;
}

.review-proof {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.review-proof img {
  width: 124px;
  opacity: 0.82;
}

.contact-section {
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  z-index: -1;
  bottom: -28rem;
  left: 50%;
  width: 75rem;
  height: 50rem;
  border-radius: 50%;
  content: "";
  background: rgba(255, 101, 0, 0.07);
  filter: blur(150px);
  transform: translateX(-50%);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 100%, rgba(255, 101, 0, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.012);
}

.contact-copy h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.contact-copy > p {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

.telegram-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.telegram-card:hover {
  border-color: rgba(255, 101, 0, 0.3);
  background: var(--orange-soft);
  transform: translateY(-3px);
}

.telegram-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #080808;
}

.telegram-icon svg {
  width: 21px;
  height: 21px;
}

.telegram-card small {
  display: block;
  color: var(--text-muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.telegram-card strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
}

.telegram-arrow {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--text-muted);
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(34px, 5vw, 64px);
  background: #0d0d0d;
}

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

.field {
  position: relative;
  display: grid;
  gap: 9px;
}

.field > span {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 13px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field select {
  appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field select option {
  background: #131313;
  color: var(--text);
}

.field textarea {
  min-height: 135px;
  padding: 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #85807a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 101, 0, 0.48);
  background: rgba(255, 101, 0, 0.035);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.07);
}

.field-error {
  display: none;
  color: #ff7b6e;
  font-size: 11px;
  line-height: 1.35;
}

.field.has-error .field-error {
  display: block;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(255, 96, 80, 0.6);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit .button {
  flex: 0 0 auto;
}

.form-submit p {
  max-width: 250px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-size: 11px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 130px;
}

.footer-top > p {
  color: var(--text-muted);
  font-size: 11px;
  text-align: center;
}

.footer-up {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 650;
  transition: color 0.25s ease;
}

.footer-up:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-top: 1px solid var(--line);
  color: #85807a;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #171717;
  color: var(--text-soft);
  font-size: 12px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

@keyframes pulse-dot {
  0% { opacity: 0.8; transform: scale(0.7); }
  75%, 100% { opacity: 0; transform: scale(1.8); }
}

@keyframes mark-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 12px)); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes orbit-one {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-two {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes grid-scan {
  0%, 18% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(290%); }
}

@keyframes marquee-loop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1120px) {
  :root { --header-height: 78px; }

  .main-nav { gap: 18px; }
  .header-cta { display: none; }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    gap: 34px;
  }

  .hero-visual { min-height: 510px; }
  .hero-title { font-size: clamp(52px, 6.4vw, 74px); }

  .about-bento {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .case-card {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }

  .project-shot { min-height: 410px; }
  .shot-content { min-height: 295px; }
  .shot-symbol { font-size: 150px; }

  .price-card { padding: 25px; }
  .price { font-size: 37px; }
}

@media (max-width: 920px) {
  .header-shell,
  .container {
    width: min(100% - 36px, var(--container));
  }

  .app-ready .menu-button { display: grid; }

  .app-ready .main-nav {
    position: fixed;
    z-index: 78;
    top: 71px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(14, 14, 14, 0.97);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.56);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.35s var(--ease), visibility 0s linear 0.35s;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  .app-ready .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .app-ready .main-nav a {
    padding: 15px 16px;
    border-radius: 11px;
    font-size: 15px;
  }

  .app-ready .main-nav a::after { display: none; }
  .app-ready .main-nav a:hover { background: rgba(255, 255, 255, 0.045); }

  html:not(.app-ready) .site-header {
    position: relative;
    height: auto;
    padding-block: 12px;
    pointer-events: auto;
  }

  html:not(.app-ready) .header-shell {
    height: auto;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  html:not(.app-ready) .main-nav {
    position: static;
    z-index: auto;
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 8px 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  html:not(.app-ready) .menu-button,
  html:not(.app-ready) .motion-switch {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
  }

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

  .hero-copy { max-width: 760px; }
  .hero-title { font-size: clamp(58px, 10vw, 84px); }
  .hero-visual { min-height: 570px; margin-top: 20px; }

  .about-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .bento-card-main {
    min-height: 460px;
    grid-column: span 2;
    grid-row: auto;
  }

  .bento-card-wide {
    grid-column: span 2;
  }

  .skills-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .skill-card:last-child,
  .service-card:last-child,
  .price-card:last-child {
    grid-column: span 2;
  }

  .skill-card:last-child,
  .service-card:last-child {
    min-height: 360px;
  }

  .skill-card:last-child h3,
  .service-card:last-child h3 {
    margin-top: 90px;
  }

  .price-card:last-child { min-height: 570px; }

  .case-card { grid-template-columns: 1fr; }
  .case-preview { border-right: 0; border-bottom: 1px solid var(--line); }
  .case-info { min-height: 430px; }
  .project-shot { min-height: 470px; }
  .shot-content { min-height: 350px; }
  .shot-content strong { font-size: 58px; }

  .timeline-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-panel {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .review-proof {
    display: none;
  }

  .contact-shell { grid-template-columns: 1fr; }
  .contact-copy { min-height: 590px; border-right: 0; border-bottom: 1px solid var(--line); }
  .telegram-card { margin-top: 70px; }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
    --radius-md: 18px;
    --radius-lg: 22px;
  }

  .header-shell,
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark { width: 34px; }
  .brand-name { font-size: 14px; }
  .lang-switch,
  .menu-button { width: 39px; height: 39px; }
  .menu-button span:first-child { top: 15px; }
  .menu-button span:last-child { top: 22px; }
  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:last-child { top: 18.5px; }

  .section {
    padding-block: 86px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 68px);
    padding-bottom: 105px;
  }

  .hero-title {
    margin-top: 20px;
    font-size: clamp(44px, 14vw, 67px);
    line-height: 0.98;
  }

  .hero-lead { margin-top: 25px; font-size: 15px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

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

  .hero-qualifier {
    font-size: 10px;
    line-height: 1.45;
  }

  .hero-stats {
    margin-top: 42px;
  }

  .hero-stats div {
    padding-right: 8px;
  }

  .hero-stats div + div {
    padding-left: 12px;
  }

  .hero-stats dt { font-size: 14px; }
  .hero-stats dd { font-size: 9px; }

  .hero-visual {
    min-height: 420px;
    border-radius: 25px;
  }

  .hero-mark { width: 87%; }
  .brand-orbit-one { width: 82%; }
  .brand-orbit-two { width: 110%; }
  .visual-label-top { top: 18px; left: 18px; }
  .visual-label-bottom { right: 18px; bottom: 18px; }
  .visual-index { display: none; }

  .scroll-cue { bottom: 28px; }

  .section-heading,
  .split-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .split-heading h2,
  .review-copy h2,
  .contact-copy h2 {
    margin-top: 14px;
    font-size: clamp(37px, 11vw, 52px);
  }

  .section-heading > p,
  .split-heading > p {
    margin-top: 18px;
    font-size: 15px;
  }

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

  .about-bento {
    grid-template-columns: 1fr;
  }

  .bento-card-main,
  .bento-card-wide {
    grid-column: auto;
  }

  .bento-card-main { min-height: 440px; padding: 26px; }
  .bento-icon { width: 90px; height: 90px; }
  .bento-card-stat { min-height: 230px; padding: 24px; }
  .bento-card-wide { align-items: flex-start; flex-direction: column; padding: 24px; }
  .code-line { width: 100%; overflow: hidden; text-overflow: ellipsis; }

  .skills-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .skill-card:last-child,
  .service-card:last-child,
  .price-card:last-child {
    grid-column: auto;
  }

  .skill-card,
  .skill-card:last-child { min-height: 340px; padding: 24px; }
  .skill-card h3,
  .skill-card:last-child h3 { margin-top: 94px; }

  .case-card { border-radius: 20px; }
  .case-preview { padding: 12px; }
  .browser-frame { border-radius: 10px; }
  .browser-toolbar { height: 30px; padding-inline: 8px; }
  .project-shot { min-height: 325px; padding: 14px 14px 0; }
  .shot-nav > span:last-child { display: none; }
  .shot-content { min-height: 242px; grid-template-columns: 1fr 0.55fr; }
  .shot-content strong { font-size: clamp(32px, 11vw, 47px); }
  .shot-content p { max-width: 180px; }
  .shot-symbol { font-size: 95px; }
  .shot-footer span { font-size: 13px; }
  .case-hover-icon { display: none; }
  .case-info { min-height: 430px; padding: 26px; }

  .timeline-item {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 28px 0;
  }

  .timeline-date {
    grid-column: 2;
  }

  .timeline-content {
    grid-column: 2;
    margin-top: 17px;
  }

  .timeline-marker {
    grid-row: span 2;
  }

  .service-card,
  .service-card:last-child { min-height: 0; padding: 24px; }
  .service-card h3,
  .service-card:last-child h3 { margin-top: 54px; }
  .service-card > p { min-height: auto; }

  .price-card,
  .price-card:last-child { min-height: 0; padding: 25px; }
  .price { font-size: 38px; }

  .review-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .review-symbol { width: 58px; height: 58px; }

  .contact-copy,
  .contact-form { padding: 28px; }
  .contact-copy { min-height: 560px; }
  .telegram-card { margin-top: 58px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .form-submit p { max-width: none; }

  .marquee {
    display: none;
  }

  .ambient-canvas {
    display: none;
  }

  body::before {
    display: none;
  }

  .footer-top {
    display: flex;
    min-height: 170px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 17px;
  }

  .footer-intro > p { text-align: left; }
  .footer-up { justify-self: auto; }

  .footer-bottom {
    min-height: 75px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 390px) {
  .brand-name { display: none; }
  .hero-title { font-size: 42px; }
  .hero-stats dd { max-width: 74px; }
  .hero-visual { min-height: 365px; }
  .visual-label { font-size: 7px; }
  .project-shot { min-height: 285px; }
  .shot-content { min-height: 205px; }
  .shot-content strong { font-size: 32px; }
  .shot-symbol { font-size: 76px; }
  .contact-copy,
  .contact-form { padding: 23px; }
}

@media (hover: none), (pointer: coarse) {
  .pointer-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-enabled) { scroll-behavior: auto; }

  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.app-ready:not(.motion-enabled) .reveal {
    opacity: 1;
    transform: none;
  }

  html:not(.motion-enabled) .ambient-canvas,
  html:not(.motion-enabled) .pointer-glow {
    display: none;
  }
}
