:root {
  --black: #050510;
  --dark: #0b0b1d;
  --panel: rgba(12, 14, 33, 0.78);
  --panel-strong: rgba(15, 18, 42, 0.94);
  --line: rgba(139, 92, 246, 0.2);
  --line-strong: rgba(56, 189, 248, 0.42);
  --text: #F8FAFC;
  --muted: #94A3B8;
  --blue: #38BDF8;
  --violet: #8B5CF6;
  --green: #0EA5E9;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(108, 99, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 20%, rgba(56, 189, 248, 0.14), transparent 32rem),
    linear-gradient(180deg, #050510 0%, #0b0b1d 48%, #050510 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(139, 92, 246, 0.36);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  transform: translateZ(0);
  transition: opacity 420ms ease, visibility 420ms ease, filter 420ms ease;
  will-change: opacity, filter;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
}

.loader-inner {
  position: relative;
  width: min(1120px, calc(100vw - 96px));
  height: min(460px, calc(100vh - 96px));
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(16, 185, 185, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.82);
  transform: translateZ(0);
  will-change: transform, opacity;
}

.loader-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--loader-cols), 1fr);
  grid-auto-rows: 1fr;
  gap: 1px;
  opacity: 0;
  transform: translateZ(0);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, rgba(0, 0, 0, 0.86) 48%, transparent 82%);
  will-change: opacity, transform;
}

.loader-logo {
  position: absolute;
  left: 50%;
  top: calc(50% - clamp(34px, 6vw, 72px));
  z-index: 3;
  width: clamp(46px, 8vw, 86px);
  height: clamp(46px, 8vw, 86px);
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
  transform: translate(-50%, -50%);
}

.loader-cell {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(17, 24, 39, 0.045);
  background: rgba(248, 250, 252, 0.52);
  opacity: 0.58;
  transform: scale(0.985) translateZ(0);
  will-change: opacity, transform, background, box-shadow;
}

.spin-logo,
.brand-g,
.hero-logo {
  font-family: Unbounded, Inter, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.loader-word {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3px, 1vw, 12px);
  padding-top: clamp(62px, 10vw, 112px);
  color: #050505;
  font-family: Unbounded, Inter, sans-serif;
  font-size: clamp(22px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  filter: blur(14px);
  opacity: 0;
  transform: translateY(10px) scale(0.985) translateZ(0);
  text-shadow: 0 0 30px rgba(16, 185, 185, 0.14);
  will-change: opacity, transform, filter;
}

.loader-letter {
  display: inline-block;
  transform: translateZ(0);
  will-change: opacity, transform, filter;
}

.loader-letter.is-space {
  width: clamp(8px, 1.2vw, 18px);
}

.loader-accent {
  position: absolute;
  left: 50%;
  bottom: 31%;
  z-index: 2;
  width: min(420px, 62vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #10B9B9, transparent);
  box-shadow: 0 0 24px rgba(16, 185, 185, 0.32);
  opacity: 0;
  transform: translateX(-50%) scaleX(0) translateZ(0);
  transform-origin: center;
  will-change: opacity, transform;
}

.spin-logo {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-size: 74px;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.54), 0 0 44px rgba(139, 92, 246, 0.34);
}

.header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 20px;
}

.nav {
  position: relative;
  width: min(1160px, 100%);
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 26, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(248, 250, 252, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand picture {
  display: block;
  width: clamp(170px, 15.5vw, 226px);
  height: clamp(52px, 4.8vw, 70px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-g {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 50%;
  color: var(--blue);
  font-size: 25px;
  perspective: 360px;
  background: radial-gradient(circle at 35% 24%, rgba(248, 250, 252, 0.14), rgba(56, 189, 248, 0.12) 38%, rgba(12, 14, 33, 0.96) 72%);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.2), inset 0 0 22px rgba(139, 92, 246, 0.13);
}

.brand-g span,
.hero-logo span {
  position: relative;
  display: grid;
  place-items: center;
  width: 1em;
  height: 1em;
  color: transparent;
  transform-style: preserve-3d;
  animation: rotateG 4.8s linear infinite;
}

.hero-logo span {
  animation: logoReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 2.2s both;
}

.brand-g span::before,
.brand-g span::after,
.hero-logo span::before,
.hero-logo span::after {
  content: "G";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
  background: linear-gradient(135deg, #F8FAFC 4%, #38BDF8 34%, #8B5CF6 70%, #050510 100%);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.52), 0 0 42px rgba(139, 92, 246, 0.36);
}

.brand-g span::after,
.hero-logo span::after {
  transform: rotateY(180deg) translateZ(4px);
  filter: brightness(0.72);
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -50%);
}

.nav-links a {
  position: relative;
  padding: 12px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 200ms ease, transform 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-mobile-cta {
  display: none;
}

.nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 185, 185, 0.18);
  border-radius: 50%;
  color: #10B9B9;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 185, 0.42);
  background: rgba(236, 253, 253, 0.92);
  box-shadow: 0 16px 36px rgba(16, 185, 185, 0.16);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #10B9B9;
  border-radius: var(--radius);
  background: #10B9B9;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(16, 185, 185, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #0ea8a8;
  box-shadow: 0 18px 42px rgba(16, 185, 185, 0.26);
}

.menu-btn {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 26, 0.82);
  cursor: pointer;
}

.menu-btn img {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  object-position: center;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 150px 20px 88px;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(1.35) contrast(1.08) hue-rotate(32deg);
}

.hero-ambient {
  position: absolute;
  inset: -18% -10%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
  transform: translateZ(0);
}

.ambient-spot {
  position: absolute;
  display: block;
  width: var(--spot-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.72), rgba(16, 185, 185, 0.2) 30%, rgba(16, 185, 185, 0.08) 58%, transparent 76%);
  filter: blur(var(--spot-blur));
  opacity: var(--spot-opacity);
  mix-blend-mode: multiply;
  transform: translate(var(--spot-x), var(--spot-y)) scale(var(--spot-scale));
  animation: ambientDrift var(--spot-duration) ease-in-out infinite;
  will-change: transform;
}

.ambient-spot-1 {
  --spot-size: min(42vw, 560px);
  --spot-blur: 76px;
  --spot-opacity: 0.5;
  --spot-scale: 1;
  --spot-x: 5vw;
  --spot-y: 14vh;
  --spot-scale-mid: 1.04;
  --spot-scale-end: 0.98;
  --spot-duration: 28s;
  left: -8%;
  top: 2%;
}

.ambient-spot-2 {
  --spot-size: min(46vw, 620px);
  --spot-blur: 92px;
  --spot-opacity: 0.42;
  --spot-scale: 1.04;
  --spot-x: -7vw;
  --spot-y: 5vh;
  --spot-scale-mid: 1.07;
  --spot-scale-end: 1.03;
  --spot-duration: 24s;
  right: -13%;
  top: 10%;
  animation-name: ambientDriftAlt;
}

.ambient-spot-3 {
  --spot-size: min(34vw, 470px);
  --spot-blur: 70px;
  --spot-opacity: 0.36;
  --spot-scale: 0.94;
  --spot-x: 3vw;
  --spot-y: -2vh;
  --spot-scale-mid: 0.98;
  --spot-scale-end: 0.92;
  --spot-duration: 30s;
  left: 42%;
  bottom: 6%;
}

.ambient-spot-4 {
  --spot-size: min(30vw, 400px);
  --spot-blur: 64px;
  --spot-opacity: 0.3;
  --spot-scale: 0.82;
  --spot-x: -2vw;
  --spot-y: 3vh;
  --spot-scale-mid: 0.87;
  --spot-scale-end: 0.8;
  --spot-duration: 22s;
  left: 18%;
  bottom: -12%;
  animation-name: ambientDriftNear;
}

.ambient-spot-5 {
  --spot-size: min(38vw, 520px);
  --spot-blur: 86px;
  --spot-opacity: 0.28;
  --spot-scale: 1.08;
  --spot-x: 4vw;
  --spot-y: -4vh;
  --spot-scale-mid: 1.1;
  --spot-scale-end: 1.07;
  --spot-duration: 27s;
  right: 18%;
  top: -12%;
  animation-name: ambientDriftSoft;
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 73% 44%, rgba(56, 189, 248, 0.18), transparent 27rem),
    radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.2), transparent 35rem),
    linear-gradient(90deg, rgba(5, 5, 16, 0.96), rgba(11, 11, 29, 0.76) 50%, rgba(5, 5, 16, 0.9)),
    linear-gradient(180deg, rgba(5, 5, 16, 0.32), #050510 97%);
}

.hero-brand-preview {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2 - 18px));
  top: clamp(96px, 13vh, 150px);
  z-index: 2;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1448 / 1086;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
  align-items: center;
  gap: 34px;
}

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

.hero-copy .badge,
.hero-copy .lead,
.hero-copy .hero-actions,
.hero-copy .hero-stats {
  opacity: 0;
  transform: translateY(22px);
  animation: heroContentIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .badge {
  animation-delay: 0.08s;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: #FAFAFA;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.12);
}

.badge svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: #10B9B9;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 0.04em;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroTitleLineIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
}

.hero-title-line:nth-child(2) {
  white-space: nowrap;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.18s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.33s;
}

.hero-title-accent {
  display: inline-block;
  background: linear-gradient(90deg, #10B9B9 0%, #39D6D6 100%);
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(16, 185, 185, 0.16);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  line-height: 1.18;
}

.lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.65;
}

.hero-copy .lead {
  animation-delay: 0.55s;
}

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

.hero-copy .hero-actions {
  animation-delay: 0.72s;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.hero-copy .hero-stats {
  animation-delay: 0.84s;
}

.hero-stat {
  min-width: 118px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  padding: 2px 16px 2px 0;
  border-right: 1px solid rgba(16, 185, 185, 0.18);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #10B9B9;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stat strong {
  color: #050505;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn-primary {
  border-color: rgba(56, 189, 248, 0.72);
  background: linear-gradient(135deg, #38BDF8 0%, #6C63FF 48%, #8B5CF6 100%);
  color: #F8FAFC;
  box-shadow: 0 16px 42px rgba(14, 165, 233, 0.24), 0 0 28px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(248, 250, 252, 0.28);
}

.btn-outline {
  background: rgba(8, 10, 26, 0.72);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.btn:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 20px 46px rgba(14, 165, 233, 0.16), 0 0 32px rgba(139, 92, 246, 0.16);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 900px;
  --ui-x: 0;
  --ui-y: 0;
  --glow-boost: 1;
}

.hero-case {
  isolation: isolate;
  perspective: 1200px;
}

.case-light {
  position: absolute;
  z-index: 0;
  width: var(--case-light-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.8), rgba(16, 185, 185, 0.22) 30%, rgba(16, 185, 185, 0.09) 58%, transparent 76%);
  filter: blur(var(--case-light-blur));
  opacity: var(--case-light-opacity);
  transform: translate(var(--case-light-x), var(--case-light-y)) scale(var(--case-light-scale));
  animation: caseLightDrift var(--case-light-duration) ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.case-light-1 {
  --case-light-size: min(34vw, 520px);
  --case-light-blur: 82px;
  --case-light-opacity: 0.48;
  --case-light-scale: 1;
  --case-light-x: -9vw;
  --case-light-y: -9vh;
  --case-light-duration: 28s;
  left: 8%;
  top: 6%;
}

.case-light-2 {
  --case-light-size: min(38vw, 600px);
  --case-light-blur: 96px;
  --case-light-opacity: 0.38;
  --case-light-scale: 1.08;
  --case-light-x: 7vw;
  --case-light-y: 4vh;
  --case-light-duration: 24s;
  right: -14%;
  top: 18%;
  animation-name: caseLightDriftAlt;
}

.case-light-3 {
  --case-light-size: min(28vw, 430px);
  --case-light-blur: 72px;
  --case-light-opacity: 0.32;
  --case-light-scale: 0.92;
  --case-light-x: 3vw;
  --case-light-y: 6vh;
  --case-light-duration: 30s;
  left: 26%;
  bottom: 0;
}

.macbook-wrap {
  position: relative;
  z-index: 2;
  width: min(660px, 50vw);
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: filter 320ms ease;
}

.hero-case:hover .macbook-wrap {
  filter: drop-shadow(0 0 28px rgba(16, 185, 185, 0.12));
}

.hero-case:hover .case-light {
  opacity: calc(var(--case-light-opacity) + 0.04);
}

.macbook-pro {
  position: relative;
  transform: rotateX(5deg) rotateY(-10deg) rotateZ(0.6deg);
  transform-style: preserve-3d;
}

.macbook-pro::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -5%;
  bottom: -58px;
  height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(15, 23, 42, 0.38), rgba(15, 23, 42, 0.2) 30%, rgba(16, 185, 185, 0.1) 52%, transparent 76%);
  filter: blur(24px);
  transform: rotateX(62deg);
  z-index: -1;
}

.macbook-lid {
  position: relative;
  padding: 8px;
  border-radius: 20px 20px 13px 13px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.22) 19%, transparent 34%),
    repeating-linear-gradient(98deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 7px),
    linear-gradient(162deg, rgba(120, 130, 142, 0.26), transparent 34%),
    linear-gradient(145deg, #f4f6f8 0%, #cfd5dc 25%, #fbfcfd 46%, #a6afba 77%, #eef1f4 100%);
  box-shadow:
    0 36px 96px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -2px 0 rgba(73, 82, 94, 0.38),
    inset 1px 0 0 rgba(255, 255, 255, 0.48),
    inset -1px 0 0 rgba(61, 70, 82, 0.18);
}

.macbook-lid::after {
  content: "";
  position: absolute;
  left: 1.6%;
  right: 1.6%;
  bottom: -3px;
  height: 8px;
  border-radius: 0 0 11px 11px;
  background: linear-gradient(180deg, rgba(122, 131, 142, 0.42), rgba(66, 73, 84, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.macbook-lid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -8px;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(93, 102, 115, 0.1), rgba(255, 255, 255, 0.7) 18%, rgba(116, 126, 139, 0.46) 52%, rgba(255, 255, 255, 0.52) 78%, rgba(72, 82, 96, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 4px 12px rgba(52, 61, 74, 0.18);
  pointer-events: none;
}

.macbook-bezel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 5px solid #0c0d10;
  border-bottom-width: 8px;
  border-radius: 13px 13px 9px 9px;
  background: linear-gradient(180deg, #17191d, #060708);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    inset 0 0 18px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(52, 58, 67, 0.52);
}

.macbook-bezel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.5), #12161d 42%, #030405 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.macbook-bezel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.08) 21%, transparent 42%),
    linear-gradient(18deg, transparent 62%, rgba(255, 255, 255, 0.18) 84%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.studio-workspace {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 16%, rgba(16, 185, 185, 0.22), transparent 32%),
    linear-gradient(90deg, #10141d 0%, #10141d 50%, #f8fbfb 50%, #edf5f5 100%);
  color: #e5edf5;
  font-family: "Inter", system-ui, sans-serif;
  filter: saturate(1.03) contrast(1.02);
}

.workspace-editor,
.workspace-result {
  min-width: 0;
  height: 100%;
}

.workspace-editor {
  display: grid;
  grid-template-rows: 15px 23px 1fr;
  background:
    radial-gradient(circle at 18% 8%, rgba(16, 185, 185, 0.12), transparent 30%),
    linear-gradient(180deg, #111827, #0b1018);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.editor-chrome {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  background: #0c111a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.editor-chrome span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #3a4658;
}

.editor-chrome span:nth-child(1) {
  background: #ef6a66;
}

.editor-chrome span:nth-child(2) {
  background: #f4c45e;
}

.editor-chrome span:nth-child(3) {
  background: #55c982;
}

.editor-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 9px;
  background: rgba(17, 24, 39, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-domain {
  min-width: 0;
  color: rgba(229, 237, 245, 0.9);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.08);
  color: #b9f8ce;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.live-status span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22C55E;
  box-shadow: 0 0 9px rgba(34, 197, 94, 0.72);
}

.editor-body {
  min-height: 0;
  display: grid;
  grid-template-columns: 74px 1fr;
}

.editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 6px;
  background: #0d131d;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-title {
  margin-bottom: 2px;
  color: rgba(148, 163, 184, 0.82);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.file {
  position: relative;
  padding: 4px 5px 4px 12px;
  border-radius: 5px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 7px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.file::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: rgba(16, 185, 185, 0.65);
  transform: translateY(-50%);
}

.file.active {
  background: rgba(16, 185, 185, 0.12);
  color: #eef8f8;
}

.editor-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: 21px 1fr;
  background: #101722;
}

.editor-tabs {
  display: flex;
  align-items: end;
  gap: 1px;
  padding: 0 5px;
  background: #0c111a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tab {
  padding: 6px 9px 5px;
  border-radius: 6px 6px 0 0;
  color: rgba(148, 163, 184, 0.78);
  font-size: 7px;
  font-weight: 750;
  line-height: 1;
}

.tab.active {
  background: #101722;
  color: #f8fafc;
}

.code-area {
  padding: 8px 7px 8px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #101722;
  background-size: 24px 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.code-line {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  align-items: center;
  min-height: 14px;
  color: #d6deeb;
  font-size: 8.4px;
  line-height: 1.35;
  white-space: nowrap;
}

.code-line.active {
  background: rgba(16, 185, 185, 0.07);
}

.line-number {
  color: rgba(148, 163, 184, 0.48);
  font-size: 7.2px;
  text-align: right;
  padding-right: 7px;
  user-select: none;
}

.code-line code {
  min-width: 0;
  overflow: hidden;
  text-overflow: clip;
}

.token-keyword {
  color: #c792ea;
}

.token-function {
  color: #82aaff;
}

.token-component {
  color: #7fdbca;
}

.token-attr {
  color: #addb67;
}

.token-string {
  color: #ecc48d;
}

.token-punctuation {
  color: #89ddff;
}

.editor-cursor {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin-left: 2px;
  background: #10B9B9;
  box-shadow: 0 0 10px rgba(16, 185, 185, 0.65);
  vertical-align: -2px;
  animation: cursorPulse 1.4s steps(2, end) infinite;
}

.workspace-result {
  display: grid;
  place-items: center;
  padding: 12px;
  background:
    radial-gradient(circle at 85% 12%, rgba(57, 214, 214, 0.24), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(16, 185, 185, 0.14), transparent 33%),
    linear-gradient(145deg, #fbffff, #e8f4f4);
}

.preview-browser {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 185, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.14),
    0 0 32px rgba(16, 185, 185, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.preview-bar {
  height: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(248, 250, 252, 0.92);
}

.preview-bar span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cbd5e1;
}

.preview-bar strong {
  margin-left: 5px;
  color: rgba(15, 23, 42, 0.55);
  font-size: 7px;
  font-weight: 800;
  white-space: nowrap;
}

.preview-site {
  height: calc(100% - 18px);
  padding: 10px;
  color: #0f172a;
  background:
    radial-gradient(circle at 80% 26%, rgba(16, 185, 185, 0.23), transparent 27%),
    linear-gradient(180deg, #ffffff, #f3fbfb);
}

.preview-nav {
  display: grid;
  grid-template-columns: 18px 1fr 1fr 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.preview-logo {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #101827;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
}

.preview-logo img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.preview-nav span:not(.preview-logo) {
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}

.preview-hero-block {
  width: 78%;
}

.preview-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(16, 185, 185, 0.1);
  color: #0f8f8f;
  font-size: 7px;
  font-weight: 900;
}

.preview-hero-block h3 {
  margin: 0 0 6px;
  color: #0b1220;
  font-size: 19px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.preview-hero-block p {
  margin: 0 0 9px;
  max-width: 145px;
  color: rgba(15, 23, 42, 0.64);
  font-size: 8px;
  font-weight: 650;
  line-height: 1.45;
}

.preview-button {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10B9B9, #39D6D6);
  color: #ffffff;
  font-size: 7px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 185, 185, 0.28);
}

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

.preview-cards span {
  height: 40px;
  border: 1px solid rgba(16, 185, 185, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 253, 0.84)),
    radial-gradient(circle at 25% 20%, rgba(16, 185, 185, 0.22), transparent 35%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.case-screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.03) contrast(1.02);
}

.macbook-base {
  position: relative;
  width: 112%;
  height: 132px;
  margin: -2px 0 0 -6%;
  border-radius: 0 0 40px 40px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(ellipse at 22% 20%, rgba(255, 255, 255, 0.34), transparent 26%),
    radial-gradient(ellipse at 78% 34%, rgba(54, 64, 78, 0.14), transparent 30%),
    repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px),
    linear-gradient(104deg, rgba(255, 255, 255, 0.46), transparent 21%),
    linear-gradient(248deg, rgba(88, 98, 112, 0.2), transparent 34%),
    linear-gradient(180deg, #f8f9fb 0%, #dce1e7 26%, #b6bec9 62%, #7e8895 100%);
  box-shadow:
    0 28px 52px rgba(15, 23, 42, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -3px 0 rgba(70, 78, 89, 0.36),
    inset 16px 0 24px rgba(255, 255, 255, 0.12),
    inset -20px 0 28px rgba(70, 78, 89, 0.12);
  transform: rotateX(68deg);
  transform-origin: top;
}

.macbook-base::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -7px;
  height: 18px;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, rgba(144, 153, 165, 0.82), rgba(74, 82, 94, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.macbook-base::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: -11px;
  height: 16px;
  border-radius: 0 0 36px 36px;
  background:
    linear-gradient(90deg, rgba(54, 64, 78, 0.44), rgba(181, 189, 199, 0.58) 18%, rgba(92, 102, 116, 0.52) 58%, rgba(232, 236, 240, 0.36) 82%, rgba(54, 64, 78, 0.36));
  filter: blur(0.2px);
}

.macbook-pro::before {
  content: "";
  position: absolute;
  left: 4%;
  right: -4%;
  bottom: -74px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.18), transparent 70%);
  filter: blur(10px);
  transform: rotateX(62deg);
  z-index: -2;
}

.macbook-notch {
  position: absolute;
  left: 50%;
  top: 0;
  width: 114px;
  height: 9px;
  margin: 0 auto;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(120, 129, 140, 0.54), rgba(255, 255, 255, 0.22));
  transform: translateX(-50%);
}

.macbook-vent {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 9px;
  height: 5px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(57, 64, 73, 0.62) 0 4px, rgba(255, 255, 255, 0.38) 4px 7px);
  opacity: 0.5;
  box-shadow: inset 0 1px 1px rgba(38, 45, 54, 0.38);
}

.macbook-speaker {
  position: absolute;
  top: 23px;
  width: 15%;
  height: 48px;
  border-radius: 12px;
  opacity: 0.62;
  background-image:
    radial-gradient(circle, rgba(31, 38, 48, 0.86) 0 1px, rgba(255, 255, 255, 0.2) 1.1px, transparent 1.45px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent);
  background-size: 6px 6px, 100% 100%;
  box-shadow: inset 0 1px 4px rgba(52, 60, 70, 0.2);
}

.macbook-speaker-left {
  left: 6.4%;
}

.macbook-speaker-right {
  right: 6.4%;
}

.macbook-keyboard {
  position: absolute;
  left: 23%;
  right: 23%;
  top: 22px;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-auto-rows: 10px;
  gap: 4.5px;
  transform: perspective(680px) rotateX(9deg);
}

.macbook-keyboard .key {
  min-width: 0;
  border-radius: 2.5px;
  background:
    radial-gradient(circle at 34% 18%, rgba(255, 255, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(91, 100, 113, 0.98), rgba(31, 37, 46, 0.99) 66%, rgba(8, 11, 15, 0.99));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset -1px 0 0 rgba(0, 0, 0, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.62),
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 5px rgba(17, 24, 39, 0.34);
}

.macbook-keyboard .key-s {
  height: 7px;
  opacity: 0.92;
}

.macbook-keyboard .key-wide {
  grid-column: span 2;
}

.macbook-keyboard .key-space {
  grid-column: span 6;
}

.macbook-trackpad {
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 40%;
  height: 42px;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, 0.5), transparent 40%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(136, 146, 158, 0.22) 58%, rgba(90, 100, 113, 0.26)),
    linear-gradient(180deg, rgba(232, 236, 240, 0.5), rgba(150, 159, 170, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(93, 104, 119, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -1px 0 rgba(78, 88, 102, 0.16),
    0 1px 2px rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.case-badge {
  position: absolute;
  z-index: 3;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(16, 185, 185, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08), 0 0 28px rgba(16, 185, 185, 0.08);
  animation: badgeFloat var(--badge-duration) ease-in-out infinite;
  transition: border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.case-badge svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: #10B9B9;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(16, 185, 185, 0.14));
}

.case-badge-responsive {
  --badge-duration: 7.4s;
  left: 0;
  top: 58px;
}

.case-badge-fast {
  --badge-duration: 6.8s;
  right: 0;
  top: 34px;
  animation-delay: -1.2s;
}

.case-badge-seo {
  --badge-duration: 7.8s;
  left: 12px;
  bottom: 78px;
  animation-delay: -2.1s;
}

.case-badge-design {
  --badge-duration: 7.1s;
  right: 16px;
  bottom: 64px;
  animation-delay: -3s;
}

.hero-case:hover .case-badge {
  border-color: rgba(16, 185, 185, 0.44);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12), 0 0 34px rgba(16, 185, 185, 0.14);
}

.ui-frame {
  position: absolute;
  width: min(390px, 78vw);
  height: min(270px, 54vw);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  box-shadow: inset 0 0 42px rgba(139, 92, 246, 0.08), 0 0 calc(64px * var(--glow-boost)) rgba(56, 189, 248, 0.12);
  opacity: 0;
  transform: translate3d(calc(var(--ui-x) * 1px), calc(var(--ui-y) * 1px), -20px) rotateX(62deg) rotateZ(-8deg);
  animation: frameAssemble 1.4s ease 1.75s both, frameDrift 9s ease-in-out 3s infinite;
  transition: filter 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.ui-frame::before,
.ui-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(56, 189, 248, 0.72);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.34));
}

.ui-frame::before {
  left: -1px;
  top: -1px;
  border-left: 2px solid;
  border-top: 2px solid;
}

.ui-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.ui-frame-inner {
  width: min(295px, 60vw);
  height: min(200px, 42vw);
  border-color: rgba(139, 92, 246, 0.26);
  background-size: 42px 42px;
  transform: translate3d(calc(var(--ui-x) * -0.7px), calc(var(--ui-y) * -0.7px), 6px) rotateX(62deg) rotateZ(8deg);
  animation: frameAssemble 1.4s ease 2.05s both, frameDriftAlt 7.5s ease-in-out 3.2s infinite;
}

.hero-visual:hover .ui-frame {
  animation-duration: 1.4s, 5.5s;
  filter: brightness(1.18);
}

.digital-backdrop,
.interface-lines {
  position: absolute;
  pointer-events: none;
}

.digital-backdrop {
  inset: 4%;
  border-radius: 32px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at 38% 40%, rgba(108, 99, 255, 0.18), transparent 34%),
    radial-gradient(circle at 63% 58%, rgba(139, 92, 246, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.04), transparent 62%);
  filter: blur(20px);
  opacity: 0;
  animation: digitalBackdropIn 1.2s ease both;
}

.interface-lines {
  inset: 0;
  z-index: 1;
  transform: translate3d(calc(var(--ui-x) * 1.2px), calc(var(--ui-y) * 1.2px), 0);
}

.interface-lines span {
  position: absolute;
  display: block;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.62), rgba(139, 92, 246, 0.38), transparent);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.16);
  animation: interfaceLineIn 1s ease var(--line-delay) both, interfaceLinePulse 4.8s ease-in-out calc(var(--line-delay) + 1s) infinite;
}

.interface-lines span:nth-child(1) {
  --line-delay: 0.15s;
  width: 44%;
  height: 1px;
  left: 6%;
  top: 27%;
}

.interface-lines span:nth-child(2) {
  --line-delay: 0.34s;
  width: 36%;
  height: 1px;
  right: 7%;
  top: 68%;
}

.interface-lines span:nth-child(3) {
  --line-delay: 0.52s;
  width: 1px;
  height: 34%;
  left: 23%;
  bottom: 11%;
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.56), rgba(139, 92, 246, 0.34), transparent);
}

.interface-lines span:nth-child(4) {
  --line-delay: 0.7s;
  width: 1px;
  height: 42%;
  right: 24%;
  top: 7%;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.48), rgba(56, 189, 248, 0.44), transparent);
}

.logo-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.24));
}

.logo-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size);
  height: var(--size);
  border-radius: 2px;
  background: var(--particle-color);
  opacity: 0;
  transform: translate3d(var(--sx), var(--sy), var(--z)) scale(0.35);
  box-shadow: 0 0 12px var(--particle-color), 0 0 28px rgba(56, 189, 248, 0.18);
  animation: digitalParticleAssemble 4.8s cubic-bezier(0.18, 0.72, 0.14, 1) var(--delay) both, digitalPixelDrift 5.6s ease-in-out calc(var(--delay) + 4.8s) infinite;
}

.logo-particle:nth-child(3n) {
  background: rgba(14, 165, 233, 0.9);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.82), 0 0 28px rgba(14, 165, 233, 0.2);
}

.logo-particle:nth-child(5n) {
  background: rgba(139, 92, 246, 0.88);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.78), 0 0 28px rgba(139, 92, 246, 0.18);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(260px, 58vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 50%;
  color: var(--blue);
  font-size: clamp(120px, 22vw, 172px);
  background:
    radial-gradient(circle at 30% 18%, rgba(248, 250, 252, 0.38), transparent 22%),
    radial-gradient(circle at 64% 70%, rgba(56, 189, 248, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(248, 250, 252, 0.18), rgba(56, 189, 248, 0.13) 28%, rgba(108, 99, 255, 0.13) 54%, rgba(5, 5, 16, 0.88) 74%),
    rgba(12, 14, 33, 0.9);
  box-shadow: 0 24px 64px rgba(14, 165, 233, 0.2), 0 0 calc(105px * var(--glow-boost)) rgba(139, 92, 246, 0.22), inset 0 0 34px rgba(248, 250, 252, 0.09);
  transform-style: preserve-3d;
  opacity: 0;
  animation: logoBodyAssemble 1.55s cubic-bezier(0.2, 0.8, 0.2, 1) 2.75s both, logoFloat 7s ease-in-out 4.25s infinite;
  will-change: transform;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(248, 250, 252, 0.12);
  box-shadow: inset 0 0 50px rgba(56, 189, 248, 0.12);
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: -38px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 46%, rgba(56, 189, 248, 0.22), transparent 42%),
    radial-gradient(circle at 25% 30%, rgba(14, 165, 233, 0.15), transparent 34%),
    radial-gradient(circle at 70% 64%, rgba(139, 92, 246, 0.2), transparent 38%);
  filter: blur(18px);
  opacity: 0;
  animation: logoMist 2s ease 2.6s both;
}

.signal-card {
  position: absolute;
  min-width: 118px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid rgba(184, 202, 255, 0.18);
  border-radius: 999px;
  background: #080a1ab8;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), 0 0 28px rgba(56, 189, 248, 0.1);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
}

.signal-card::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.72);
}

.signal-card-top {
  top: 58px;
  right: 12px;
}

.signal-card-bottom {
  left: 8px;
  bottom: 62px;
}

.section {
  position: relative;
  padding: 108px 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.07), transparent 28rem),
    radial-gradient(circle at 84% 20%, rgba(139, 92, 246, 0.07), transparent 30rem),
    #0b0b1d;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.cards,
.benefits-grid,
.process-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.why-section {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.why-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 185, 0.34);
  background: #ffffff;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.09), 0 0 0 4px rgba(16, 185, 185, 0.04);
}

.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
}

.why-card-top span {
  color: rgba(16, 185, 185, 0.42);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.why-card-top svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: #10B9B9;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(16, 185, 185, 0.14));
}

.why-card h3 {
  margin: 44px 0 12px;
  color: #050505;
  font-size: 22px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.card,
.feature,
.process-step,
.price-card,
.form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 18, 42, 0.96), rgba(8, 10, 26, 0.78));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(248, 250, 252, 0.06);
  backdrop-filter: blur(20px);
}

.card,
.feature,
.process-step,
.price-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.card:hover,
.feature:hover,
.process-step:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.48), 0 0 34px rgba(56, 189, 248, 0.1);
  background: linear-gradient(180deg, rgba(18, 24, 54, 0.98), rgba(8, 10, 26, 0.82));
}

.feature,
.process-step,
.price-card {
  min-height: 220px;
  padding: 24px;
}

.feature span,
.process-step span,
.price-card span,
.card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature h3,
.process-step h3,
.price-card h3,
.card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.feature p,
.process-step p,
.price-card p,
.card p,
.contact-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.card {
  padding: 12px;
}

.card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: var(--radius);
  background: #0b0b1d;
}

.card span,
.card h3,
.card p {
  margin-left: 6px;
  margin-right: 6px;
}

.card span {
  margin-top: 18px;
  margin-bottom: 8px;
}

.card p {
  margin-bottom: 8px;
  font-size: 14px;
}

.founder-section {
  overflow: hidden;
  background: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
  width: min(1180px, 100%);
}

.founder-media {
  position: relative;
  width: min(100%, 500px);
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #f4f6f7;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.1);
}

.founder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  pointer-events: none;
}

.founder-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-content {
  max-width: 660px;
}

.founder-content.reveal {
  transition-delay: 90ms;
}

.founder-content .eyebrow {
  margin-bottom: 18px;
}

.founder-content h2 {
  margin: 0 0 28px;
  color: #050505;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.founder-content > p:not(.eyebrow) {
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.78;
}

.founder-content > p + p {
  margin-top: 18px;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-signature span {
  width: 34px;
  height: 2px;
  flex: 0 0 auto;
  background: #10b9b9;
}

@media (max-width: 860px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .founder-media {
    width: min(100%, 560px);
  }

  .founder-content {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .founder-grid {
    gap: 32px;
  }

  .founder-content.reveal {
    transition-delay: 0ms;
  }

  .founder-content h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 12vw, 52px);
  }

  .founder-content > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.72;
  }

  .founder-signature {
    align-items: flex-start;
    margin-top: 28px;
    padding-top: 20px;
    line-height: 1.45;
  }

  .founder-signature span {
    margin-top: 8px;
  }
}

#portfolio {
  background: #ffffff;
}

#portfolio .section-inner {
  width: min(1180px, 100%);
}

#portfolio .section-head {
  max-width: 780px;
  margin-bottom: 72px;
}

#portfolio .section-head h2 {
  max-width: 720px;
}

.portfolio-cases {
  display: grid;
  gap: 92px;
}

.portfolio-case {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding-bottom: 92px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.portfolio-case:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.portfolio-case::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #10B9B9;
  transition: width 420ms ease;
}

.portfolio-case:hover::before {
  width: 100%;
}

.portfolio-preview {
  --case-accent: #10B9B9;
  --case-glow: rgba(16, 185, 185, 0.12);
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1400 / 960;
  min-height: clamp(280px, 36vw, 470px);
  padding: clamp(28px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 22px 64px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.portfolio-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--case-glow), transparent 68%);
  filter: blur(34px);
  opacity: 0.76;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
  pointer-events: none;
}

.portfolio-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-preview-content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 16px;
  width: min(100%, 820px);
  text-align: center;
}

.portfolio-preview-title {
  max-width: 760px;
  color: var(--case-accent);
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
  transition: color 320ms ease, transform 320ms ease;
}

.portfolio-preview-type {
  color: rgba(15, 23, 42, 0.36);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 850;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio-preview-year {
  color: rgba(15, 23, 42, 0.32);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.portfolio-new-badge {
  position: absolute;
  top: clamp(16px, 2.1vw, 26px);
  right: clamp(16px, 2.1vw, 26px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(16, 185, 185, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #10b9b9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(16, 185, 185, 0.14);
  backdrop-filter: blur(12px);
}

.portfolio-preview-cash {
  --case-accent: #FFE100;
  --case-glow: rgba(255, 225, 0, 0.14);
}

.portfolio-preview-sports {
  --case-accent: #22C55E;
  --case-glow: rgba(34, 197, 94, 0.13);
}

.portfolio-preview-bober {
  --case-accent: #B8894D;
  --case-glow: rgba(184, 137, 77, 0.16);
}

.portfolio-preview-store {
  --case-accent: #1E3A8A;
  --case-glow: rgba(30, 58, 138, 0.12);
}

.portfolio-preview-tribute {
  --case-accent: #111111;
  --case-glow: rgba(17, 17, 17, 0.045);
}

.portfolio-preview-flowers {
  --case-accent: #D85A86;
  --case-glow: rgba(216, 90, 134, 0.16);
  background: #fff7fa;
}

.portfolio-preview img + .portfolio-preview-content {
  display: none;
}

.portfolio-case:hover .portfolio-preview {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(16, 185, 185, 0.24);
  box-shadow:
    0 34px 86px rgba(15, 23, 42, 0.12),
    0 0 42px var(--case-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.portfolio-case:hover .portfolio-preview::before {
  opacity: 1;
  filter: blur(28px);
  transform: translate(-50%, -50%) scale(1.12);
}

.portfolio-case:hover .portfolio-preview-title {
  color: var(--case-accent);
  transform: translateY(-1px);
}

.portfolio-info {
  max-width: 440px;
}

.portfolio-info span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #10B9B9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-info h3 {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
}

.portfolio-info p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.portfolio-tags span {
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(16, 185, 185, 0.2);
  border-radius: 999px;
  background: rgba(16, 185, 185, 0.07);
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.portfolio-case:hover .portfolio-tags span {
  border-color: rgba(16, 185, 185, 0.38);
  background: rgba(16, 185, 185, 0.1);
  transform: translateY(-1px);
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.portfolio-link {
  position: relative;
  display: inline-flex;
  color: #050505;
  font-weight: 800;
  opacity: 0.62;
  transform: translateY(4px);
  transition: opacity 220ms ease, color 220ms ease, transform 220ms ease;
}

.portfolio-info > .portfolio-link {
  margin-top: 30px;
}

.portfolio-link-primary {
  padding: 12px 18px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  opacity: 1;
  box-shadow: 0 14px 34px rgba(16, 185, 185, 0.16);
}

.portfolio-link-primary::after {
  display: none;
}

.portfolio-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: #10B9B9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.portfolio-case:hover .portfolio-link {
  color: #10B9B9;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-case:hover .portfolio-link-primary {
  background: #10B9B9;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 185, 185, 0.24);
}

.portfolio-case:hover .portfolio-link::after {
  transform: scaleX(1);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(5, 5, 16, 0), rgba(11, 11, 29, 0.86)),
    radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.08), transparent 30rem);
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 30%, rgba(56, 189, 248, 0.08), transparent 26rem),
    radial-gradient(circle at 90% 36%, rgba(139, 92, 246, 0.08), transparent 25rem),
    #050510;
}

.price-card strong {
  display: block;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.price-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  background:
    radial-gradient(circle at 74% 24%, rgba(56, 189, 248, 0.09), transparent 28rem),
    radial-gradient(circle at 15% 55%, rgba(139, 92, 246, 0.09), transparent 27rem),
    #0b0b1d;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-text {
  position: sticky;
  top: 126px;
  padding-top: 22px;
}

.contact-text h2 {
  margin-bottom: 18px;
}

.contact-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 24px;
}

.contact-benefit {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 185, 0.28);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08), 0 0 0 4px rgba(16, 185, 185, 0.04);
}

.contact-benefit svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: #10B9B9;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(16, 185, 185, 0.16));
}

.contact-benefit span {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-buttons {
  justify-content: flex-start;
}

.form {
  padding: 24px;
}

.form label {
  display: block;
  margin-bottom: 16px;
}

.form-field {
  position: relative;
}

.form > label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  background: rgba(5, 5, 16, 0.42);
  color: var(--text);
  padding: 15px 16px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(56, 189, 248, 0.64);
  background: rgba(5, 5, 16, 0.62);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.form input.is-invalid,
.form textarea.is-invalid {
  border-color: rgba(239, 68, 68, 0.76);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #EF4444;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.field-error.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.contact-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-choice label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 16, 0.38);
  color: var(--muted);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-choice label:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 185, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08), 0 0 24px rgba(16, 185, 185, 0.08);
}

.contact-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-choice span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.contact-choice svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-choice label:has(input:checked) {
  border-color: rgba(56, 189, 248, 0.64);
  background: rgba(56, 189, 248, 0.1);
  color: var(--text);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.08);
}

.form button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #8B5CF6;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(circle at 82% 12%, rgba(16, 185, 185, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  color: #050505;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 54px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 32px;
  color: #64748b;
}

.footer::before {
  content: "";
  position: absolute;
  right: min(8vw, 110px);
  top: 36px;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 185, 0.14), transparent 68%);
  filter: blur(28px);
  opacity: 0.75;
  pointer-events: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: clamp(176px, 18vw, 242px);
  height: clamp(54px, 5.6vw, 76px);
  margin-bottom: 24px;
  transition: transform 220ms ease;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

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

.footer-top p {
  max-width: 620px;
  margin: 0;
  color: #475569;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.footer-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #10b9b9;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(16, 185, 185, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.footer-cta:hover {
  background: #0ea5a5;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(16, 185, 185, 0.3);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  width: fit-content;
  padding: 5px 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #10b9b9;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.footer-founder {
  color: #475569;
}

.footer-founder span {
  color: #10b9b9;
  font-weight: 900;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b9b9;
  box-shadow: 0 0 0 5px rgba(16, 185, 185, 0.12);
}

@media (max-width: 760px) {
  .footer-inner {
    gap: 38px;
    width: min(100% - 32px, 1180px);
    padding: 68px 0 32px;
  }

  .footer-top {
    display: grid;
    gap: 28px;
    align-items: start;
    padding-bottom: 42px;
  }

  .footer-brand {
    width: min(196px, 64vw);
    height: 62px;
    margin-bottom: 18px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-column a {
    min-height: 34px;
    align-items: center;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }
}

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

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

.portfolio-section {
  overflow: hidden;
  background: #ffffff;
  scroll-margin-top: 120px;
}

.portfolio-section .section-inner {
  width: min(1040px, 100%);
}

.portfolio-mobile-head {
  max-width: 720px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.portfolio-mobile-head h2 {
  max-width: 640px;
  color: #050505;
}

.portfolio-mobile-head p:not(.eyebrow) {
  max-width: 560px;
}

.portfolio-mobile-list {
  display: grid;
  gap: clamp(18px, 3.5vw, 30px);
}

.portfolio-mobile-card {
  --portfolio-shift: 42px;
  will-change: opacity, transform;
}

.portfolio-mobile-card.from-left {
  transform: translate3d(calc(var(--portfolio-shift) * -1), 18px, 0);
}

.portfolio-mobile-card.from-right {
  transform: translate3d(var(--portfolio-shift), 18px, 0);
}

.portfolio-mobile-card.visible {
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-mobile-card a {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.portfolio-mobile-card a:active {
  transform: scale(0.985) translateZ(0);
}

.portfolio-mobile-card a:hover {
  border-color: rgba(16, 185, 185, 0.22);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.1);
}

.portfolio-mobile-preview {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f7f9fb;
}

.portfolio-mobile-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(5, 5, 5, 0.18));
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.portfolio-mobile-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-mobile-card a:hover .portfolio-mobile-preview::after {
  opacity: 1;
}

.portfolio-mobile-card a:hover .portfolio-mobile-preview img {
  transform: scale(1.045);
}

.portfolio-mobile-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(14px, 2.7vw, 18px);
}

.portfolio-mobile-info > span:first-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.portfolio-mobile-info strong {
  color: #10b9b9;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.portfolio-mobile-info small {
  color: #475569;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 750;
  line-height: 1.3;
}

.portfolio-mobile-meta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: #050505;
  line-height: 1;
  white-space: nowrap;
}

.portfolio-mobile-meta b {
  color: #050505;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-mobile-meta em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portfolio-mobile-meta .badge-live {
  border: 1px solid rgba(16, 185, 185, 0.28);
  background: #111827;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(16, 185, 185, 0.12);
}

.portfolio-mobile-meta .badge-concept {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(16, 185, 185, 0.08);
  color: #111827;
}

.portfolio-mobile-meta i {
  color: #050505;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-1px);
}

.portfolio-mobile-card .portfolio-mobile-preview,
.portfolio-mobile-card .portfolio-mobile-info {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-mobile-card.visible .portfolio-mobile-preview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 90ms;
}

.portfolio-mobile-card.visible .portfolio-mobile-info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 190ms;
}

@media (min-width: 900px) {
  .portfolio-mobile-list {
    gap: 34px;
  }

  .portfolio-mobile-card a {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: stretch;
  }

  .portfolio-mobile-preview {
    aspect-ratio: 16 / 8.4;
  }

  .portfolio-mobile-info {
    align-content: end;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .portfolio-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .portfolio-section .section-inner {
    width: min(100%, 100% - 28px);
  }

  .portfolio-mobile-head {
    margin-bottom: 30px;
  }

  .portfolio-mobile-head h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .portfolio-mobile-list {
    gap: 18px;
  }

  .portfolio-mobile-card {
    --portfolio-shift: 30px;
  }

  .portfolio-mobile-preview {
    aspect-ratio: 16 / 8.4;
  }

  .portfolio-mobile-info {
    align-items: flex-start;
    padding: 12px 13px 13px;
  }

  .portfolio-mobile-info strong {
    font-size: 17px;
  }

  .portfolio-mobile-info small {
    font-size: 11px;
  }

  .portfolio-mobile-meta {
    gap: 6px;
    padding-top: 1px;
  }

  .portfolio-mobile-meta b {
    font-size: 12px;
  }

  .portfolio-mobile-meta em {
    min-height: 20px;
    padding: 0 7px;
    font-size: 8px;
  }
}

@keyframes rotateG {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(8deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg);
  }
}

@keyframes spinG {
  to {
    transform: rotateY(360deg);
  }
}

@keyframes loaderPanelIn {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderGridMove {
  0% {
    transform: translate3d(-8px, -6px, 0);
  }
  100% {
    transform: translate3d(8px, 6px, 0);
  }
}

@keyframes loaderRingDraw {
  0% {
    opacity: 0;
    transform: rotate(-70deg) scale(0.72);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes loaderRingFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(8deg);
  }
}

@keyframes loaderLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.62);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes loaderLogoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
  }
}

@keyframes loaderCopyIn {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderProgress {
  0% {
    transform: scaleX(0);
  }
  72% {
    transform: scaleX(0.86);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes heroTitleLineIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentIn {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes digitalParticleAssemble {
  0% {
    opacity: 0;
    transform: translate3d(var(--sx), var(--sy), var(--z)) scale(0.35);
  }
  18% {
    opacity: 0.78;
  }
  68% {
    opacity: 1;
    transform: translate3d(var(--gx), var(--gy), 0) scale(1);
  }
  100% {
    opacity: 0.34;
    transform: translate3d(var(--gx), var(--gy), 0) scale(0.64);
  }
}

@keyframes digitalPixelDrift {
  0%,
  100% {
    opacity: 0.26;
    transform: translate3d(var(--gx), var(--gy), 0) scale(0.62);
  }
  50% {
    opacity: 0.74;
    transform: translate3d(calc(var(--gx) + var(--dx)), calc(var(--gy) + var(--dy)), 0) scale(0.86);
  }
}

@keyframes interfaceLineIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes interfaceLinePulse {
  0%,
  100% {
    opacity: 0.32;
  }
  50% {
    opacity: 0.86;
  }
}

@keyframes logoBodyAssemble {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, -80px) scale(0.72);
    filter: blur(14px);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateZ(-60px) scale(0.82);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateZ(18px) scale(1);
    filter: blur(0);
  }
}

@keyframes digitalBackdropIn {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 18px);
  }
}

@keyframes logoMist {
  0% {
    opacity: 0;
    transform: scale(0.76);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes frameAssemble {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, -80px) rotateX(62deg) rotateZ(-14deg) scale(0.84);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(calc(var(--ui-x) * 1px), calc(var(--ui-y) * 1px), -20px) rotateX(62deg) rotateZ(-8deg) scale(1);
    filter: blur(0);
  }
}

@keyframes frameDrift {
  0% {
    transform: translate3d(calc(var(--ui-x) * 1px), calc(var(--ui-y) * 1px), -20px) rotateX(62deg) rotateZ(-8deg);
  }
  50% {
    transform: translate3d(calc(var(--ui-x) * 1px + 8px), calc(var(--ui-y) * 1px - 6px), -20px) rotateX(62deg) rotateZ(-5deg);
  }
  100% {
    transform: translate3d(calc(var(--ui-x) * 1px), calc(var(--ui-y) * 1px), -20px) rotateX(62deg) rotateZ(-8deg);
  }
}

@keyframes frameDriftAlt {
  0% {
    transform: translate3d(calc(var(--ui-x) * -0.7px), calc(var(--ui-y) * -0.7px), 6px) rotateX(62deg) rotateZ(8deg);
  }
  50% {
    transform: translate3d(calc(var(--ui-x) * -0.7px - 6px), calc(var(--ui-y) * -0.7px + 5px), 6px) rotateX(62deg) rotateZ(5deg);
  }
  100% {
    transform: translate3d(calc(var(--ui-x) * -0.7px), calc(var(--ui-y) * -0.7px), 6px) rotateX(62deg) rotateZ(8deg);
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate(var(--spot-x), var(--spot-y)) scale(var(--spot-scale));
  }
  45% {
    transform: translate(calc(var(--spot-x) + 4.2vw), calc(var(--spot-y) - 3.6vh)) scale(var(--spot-scale-mid));
  }
  72% {
    transform: translate(calc(var(--spot-x) - 2.4vw), calc(var(--spot-y) + 2.8vh)) scale(var(--spot-scale-end));
  }
}

@keyframes ambientDriftAlt {
  0%,
  100% {
    transform: translate(var(--spot-x), var(--spot-y)) scale(var(--spot-scale));
  }
  38% {
    transform: translate(calc(var(--spot-x) - 3.2vw), calc(var(--spot-y) + 3.2vh)) scale(var(--spot-scale-mid));
  }
  70% {
    transform: translate(calc(var(--spot-x) + 2.8vw), calc(var(--spot-y) - 2vh)) scale(var(--spot-scale-end));
  }
}

@keyframes ambientDriftNear {
  0%,
  100% {
    transform: translate(var(--spot-x), var(--spot-y)) scale(var(--spot-scale));
  }
  42% {
    transform: translate(calc(var(--spot-x) + 5.4vw), calc(var(--spot-y) + 2.2vh)) scale(var(--spot-scale-mid));
  }
  74% {
    transform: translate(calc(var(--spot-x) - 3.6vw), calc(var(--spot-y) - 2.6vh)) scale(var(--spot-scale-end));
  }
}

@keyframes ambientDriftSoft {
  0%,
  100% {
    transform: translate(var(--spot-x), var(--spot-y)) scale(var(--spot-scale));
  }
  48% {
    transform: translate(calc(var(--spot-x) - 2.8vw), calc(var(--spot-y) - 2.4vh)) scale(var(--spot-scale-mid));
  }
  78% {
    transform: translate(calc(var(--spot-x) + 3.4vw), calc(var(--spot-y) + 2.8vh)) scale(var(--spot-scale-end));
  }
}

@keyframes caseLightDrift {
  0%,
  100% {
    transform: translate(var(--case-light-x), var(--case-light-y)) scale(var(--case-light-scale));
  }
  46% {
    transform: translate(calc(var(--case-light-x) + 3.8vw), calc(var(--case-light-y) - 3vh)) scale(1.04);
  }
  74% {
    transform: translate(calc(var(--case-light-x) - 2.4vw), calc(var(--case-light-y) + 2.2vh)) scale(0.98);
  }
}

@keyframes caseLightDriftAlt {
  0%,
  100% {
    transform: translate(var(--case-light-x), var(--case-light-y)) scale(var(--case-light-scale));
  }
  42% {
    transform: translate(calc(var(--case-light-x) - 3vw), calc(var(--case-light-y) + 2.8vh)) scale(1.08);
  }
  76% {
    transform: translate(calc(var(--case-light-x) + 2.6vw), calc(var(--case-light-y) - 2vh)) scale(1.02);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -13px;
  }
}

@keyframes cursorPulse {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0.16;
  }
}

:root {
  --black: #ffffff;
  --dark: #f7f9fb;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --line: rgba(17, 24, 39, 0.1);
  --line-strong: rgba(16, 185, 185, 0.42);
  --text: #050505;
  --muted: #5f6673;
  --blue: #10B9B9;
  --violet: #10B9B9;
  --green: #10B9B9;
}

body {
  background:
    radial-gradient(circle at 72% 14%, rgba(16, 185, 185, 0.09), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 52%, #ffffff 100%);
  color: var(--text);
}

::selection {
  background: rgba(16, 185, 185, 0.18);
}

.loader {
  background:
    radial-gradient(circle at 50% 42%, rgba(16, 185, 185, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.loader-inner {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.spin-logo {
  color: #10B9B9;
  text-shadow: 0 0 26px rgba(16, 185, 185, 0.24), 0 10px 24px rgba(15, 23, 42, 0.12);
}

.nav {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-g {
  border-color: rgba(16, 185, 185, 0.28);
  color: #10B9B9;
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
  box-shadow: 0 10px 28px rgba(16, 185, 185, 0.12), inset 0 0 18px rgba(16, 185, 185, 0.06);
}

.brand-g span {
  animation: none;
}

.brand-g span::before,
.brand-g span::after,
.hero-logo span::before,
.hero-logo span::after {
  background: linear-gradient(135deg, #050505 0%, #10B9B9 54%, #111827 100%);
  background-clip: text;
  text-shadow: 0 0 22px rgba(16, 185, 185, 0.16);
}

.nav-links a {
  color: #6b7280;
}

.nav-links a::after {
  background: #10B9B9;
}

.nav-links a:hover,
.nav-links a.active {
  color: #050505;
}

.menu-btn {
  background: rgba(255, 255, 255, 0.88);
}

.menu-btn span {
  background: #050505;
}

.hero-video {
  display: none;
}

.video-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 251, 0.7) 54%, rgba(255, 255, 255, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), #ffffff 97%);
}

.badge {
  border-color: rgba(16, 185, 185, 0.22);
  background: rgba(16, 185, 185, 0.08);
  color: #050505;
  box-shadow: 0 12px 34px rgba(16, 185, 185, 0.1);
}

.eyebrow,
.feature span,
.process-step span,
.price-card span,
.card span {
  color: #10B9B9;
}

.lead,
.section-head p:not(.eyebrow),
.feature p,
.process-step p,
.price-card p,
.card p,
.contact-text p,
.price-note,
.footer-inner,
.form-status,
.form > label > span,
.contact-choice legend,
.contact-choice label {
  color: var(--muted);
}

.btn-primary {
  border-color: #10B9B9;
  background: #10B9B9;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(16, 185, 185, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-outline {
  border-color: rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #050505;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.btn:hover {
  border-color: #10B9B9;
  box-shadow: 0 20px 44px rgba(16, 185, 185, 0.18);
}

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

.hero-case {
  min-height: 520px;
}

.logo-halo {
  position: absolute;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(16, 185, 185, 0.13), transparent 34%),
    radial-gradient(circle at 62% 34%, rgba(16, 185, 185, 0.08), transparent 40%);
  filter: blur(4px);
  opacity: 0;
  animation: digitalBackdropIn 900ms ease 120ms both;
}

.digital-backdrop,
.interface-lines,
.logo-particles,
.ui-frame {
  display: none;
}

.hero-logo {
  border: 1px solid rgba(16, 185, 185, 0.28);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(16, 185, 185, 0.08) 44%, rgba(245, 248, 250, 0.96) 78%),
    #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12), 0 0 calc(60px * var(--glow-boost)) rgba(16, 185, 185, 0.16), inset 0 0 28px rgba(255, 255, 255, 0.88);
  animation: logoBodyAssemble 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both, logoFloat 7.5s ease-in-out 1.1s infinite;
}

.hero-logo::before {
  border-color: rgba(16, 185, 185, 0.18);
  box-shadow: inset 0 0 42px rgba(16, 185, 185, 0.08);
}

.hero-logo::after {
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 185, 0.16), transparent 48%);
  filter: blur(20px);
  animation: logoMist 900ms ease 260ms both;
}

.hero-logo span {
  animation: logoReveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

.signal-card {
  border-color: rgba(16, 185, 185, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 250, 0.78));
  color: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08), 0 0 24px rgba(16, 185, 185, 0.08);
}

.signal-card::before {
  background: #10B9B9;
  box-shadow: 0 0 14px rgba(16, 185, 185, 0.68);
}

.hero-visual:hover .signal-card {
  border-color: rgba(16, 185, 185, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 253, 0.88));
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.11), 0 0 34px rgba(16, 185, 185, 0.14);
}

.section {
  background: #ffffff;
}

.benefits-section,
.process-section,
.contact-section {
  background: #f7f9fb;
}

.pricing-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(16, 185, 185, 0.06), transparent 25rem),
    #ffffff;
}

.card,
.feature,
.process-step,
.price-card,
.why-card,
.form {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card:hover,
.feature:hover,
.process-step:hover,
.price-card:hover {
  border-color: rgba(16, 185, 185, 0.32);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.09), 0 0 0 4px rgba(16, 185, 185, 0.04);
  background: #ffffff;
}

.card img {
  border-color: rgba(17, 24, 39, 0.08);
  background: #f7f9fb;
}

.form input,
.form textarea,
.contact-choice label {
  border-color: rgba(17, 24, 39, 0.1);
  background: #ffffff;
  color: #050505;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(16, 185, 185, 0.62);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 185, 0.1);
}

.contact-choice label:has(input:checked) {
  border-color: rgba(16, 185, 185, 0.62);
  background: rgba(16, 185, 185, 0.08);
  color: #050505;
  box-shadow: 0 0 0 4px rgba(16, 185, 185, 0.08);
}

.form-status.success {
  color: #10B9B9;
}

.form-status.error {
  color: #EF4444;
}

.footer {
  background: #ffffff;
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy,
  h1,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .hero-visual {
    min-height: 330px;
    order: -1;
  }

  .hero-case {
    width: min(760px, 100%);
    min-height: 480px;
    margin: 0 auto;
  }

  .macbook-wrap {
    width: min(620px, 80vw);
  }

  .case-badge-responsive {
    left: 3%;
    top: 34px;
  }

  .case-badge-fast {
    right: 3%;
    top: 18px;
  }

  .case-badge-seo {
    left: 4%;
    bottom: 62px;
  }

  .case-badge-design {
    right: 4%;
    bottom: 50px;
  }

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

@media (max-width: 920px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .nav-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    border-radius: var(--radius);
    background: #10B9B9;
    color: #ffffff !important;
    box-shadow: 0 14px 34px rgba(16, 185, 185, 0.2);
  }

  .nav-mobile-cta::after {
    display: none;
  }

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

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

  .portfolio-case {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 72px;
  }

  .portfolio-info {
    max-width: 720px;
  }

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

  .contact-text {
    position: static;
  }
}

@media (max-width: 640px) {
  .header {
    top: 12px;
    padding: 0 12px;
  }

  .nav {
    min-height: 74px;
    padding: 0 16px;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand picture {
    width: 56px;
    height: 56px;
  }

  .hero-brand-preview {
    right: -34px;
    top: 88px;
    width: min(58vw, 230px);
    opacity: 0.08;
  }

  .loader-logo {
    width: 52px;
    height: 52px;
  }

  .nav-actions {
    gap: 12px;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    padding: 124px 16px 70px;
  }

  .hero-ambient {
    inset: -12% -42%;
  }

  .ambient-spot {
    --spot-blur: 58px;
  }

  .ambient-spot-1,
  .ambient-spot-2,
  .ambient-spot-3 {
    --spot-size: 72vw;
  }

  .ambient-spot-4,
  .ambient-spot-5 {
    --spot-size: 58vw;
  }

  .hero-inner {
    gap: 26px;
  }

  .hero-title-line:nth-child(2) {
    white-space: normal;
  }

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

  .hero-case {
    min-height: 360px;
  }

  .macbook-wrap {
    width: min(420px, 88vw);
  }

  .macbook-bezel {
    border-width: 4px;
    border-bottom-width: 6px;
    border-radius: 10px;
  }

  .studio-workspace {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .workspace-editor {
    grid-template-rows: 12px 18px 1fr;
  }

  .editor-topbar {
    padding: 0 6px;
  }

  .site-domain {
    font-size: 6.6px;
  }

  .live-status {
    gap: 3px;
    padding: 2px 4px;
    font-size: 5.7px;
  }

  .live-status span {
    width: 4px;
    height: 4px;
  }

  .editor-body {
    grid-template-columns: 52px 1fr;
  }

  .editor-sidebar {
    gap: 3px;
    padding: 6px 4px;
  }

  .sidebar-title,
  .file,
  .tab,
  .preview-bar strong,
  .preview-kicker,
  .preview-button {
    font-size: 5.8px;
  }

  .file {
    padding: 3px 3px 3px 9px;
  }

  .file::before {
    left: 4px;
    width: 3px;
    height: 3px;
  }

  .editor-panel {
    grid-template-rows: 16px 1fr;
  }

  .tab {
    padding: 5px 6px 4px;
  }

  .code-area {
    padding: 5px 4px 5px 0;
  }

  .code-line {
    grid-template-columns: 16px minmax(0, 1fr);
    min-height: 9px;
    font-size: 5.9px;
  }

  .line-number {
    padding-right: 5px;
    font-size: 5.4px;
  }

  .editor-cursor {
    height: 7px;
  }

  .workspace-result {
    padding: 7px;
  }

  .preview-browser {
    border-radius: 7px;
  }

  .preview-bar {
    height: 14px;
    padding: 0 5px;
    gap: 3px;
  }

  .preview-bar span {
    width: 4px;
    height: 4px;
  }

  .preview-site {
    height: calc(100% - 14px);
    padding: 7px;
  }

  .preview-nav {
    gap: 5px;
    margin-bottom: 9px;
    grid-template-columns: 14px 1fr 1fr 1fr;
  }

  .preview-logo {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    font-size: 6px;
  }

  .preview-hero-block {
    width: 88%;
  }

  .preview-kicker {
    margin-bottom: 4px;
    padding: 3px 5px;
  }

  .preview-hero-block h3 {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .preview-hero-block p {
    margin-bottom: 6px;
    max-width: 92px;
    font-size: 5.8px;
  }

  .preview-button {
    height: 15px;
    padding: 0 7px;
  }

  .preview-cards {
    gap: 4px;
    margin-top: 8px;
  }

  .preview-cards span {
    height: 23px;
    border-radius: 5px;
  }

  .macbook-base {
    height: 72px;
    border-radius: 0 0 24px 24px;
  }

  .macbook-keyboard {
    left: 22%;
    right: 22%;
    top: 12px;
    grid-auto-rows: 6px;
    gap: 2px;
  }

  .macbook-keyboard .key {
    border-radius: 1px;
  }

  .macbook-keyboard .key-s {
    height: 5px;
  }

  .macbook-speaker {
    top: 13px;
    width: 14%;
    height: 31px;
    background-size: 5px 5px, 100% 100%;
  }

  .macbook-vent {
    top: 6px;
    height: 3px;
  }

  .macbook-trackpad {
    bottom: 12px;
    height: 21px;
    border-radius: 5px;
  }

  .macbook-notch {
    width: 72px;
    height: 6px;
  }

  .case-light {
    --case-light-blur: 58px;
  }

  .case-badge {
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
    gap: 6px;
  }

  .case-badge svg {
    width: 14px;
    height: 14px;
  }

  .case-badge-responsive {
    left: -2px;
    top: 18px;
  }

  .case-badge-fast {
    right: -4px;
    top: 2px;
  }

  .case-badge-seo {
    left: 2px;
    bottom: 36px;
  }

  .case-badge-design {
    right: -2px;
    bottom: 28px;
  }

  .hero-logo {
    width: min(210px, 62vw);
  }

  .logo-particle {
    width: calc(var(--size) * 0.82);
    height: calc(var(--size) * 0.82);
  }

  .signal-card {
    min-width: 92px;
    min-height: 38px;
  }

  .signal-card-top {
    top: 34px;
    right: 4px;
  }

  .signal-card-bottom {
    left: 2px;
    bottom: 42px;
  }

  .section {
    padding: 78px 16px;
  }

  .benefits-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  #portfolio .section-head {
    margin-bottom: 48px;
  }

  .portfolio-cases {
    gap: 62px;
  }

  .portfolio-case {
    padding-bottom: 62px;
  }

  .portfolio-preview {
    width: 100%;
    min-height: auto;
    aspect-ratio: 1.22;
    padding: clamp(24px, 8vw, 34px);
  }

  .portfolio-new-badge {
    top: 14px;
    right: 14px;
    min-height: 26px;
    padding: 0 10px;
    font-size: 9px;
  }

  .portfolio-preview img {
    aspect-ratio: 1.22;
  }

  .portfolio-preview-content {
    gap: 12px;
  }

  .portfolio-preview-title {
    font-size: clamp(32px, 9vw, 44px);
  }

  .portfolio-preview-type {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .portfolio-info h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .portfolio-info p {
    font-size: 16px;
  }

  .portfolio-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .portfolio-actions .portfolio-link {
    justify-content: center;
    width: 100%;
  }

  .hero-actions,
  .contact-buttons,
  .footer-inner {
    flex-direction: column;
  }

  .hero-actions,
  .contact-buttons {
    align-items: stretch;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
    text-align: left;
  }

  .hero-stat {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(16, 185, 185, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
  }

  .hero-stat:last-child {
    grid-column: 1 / -1;
    border-right: 1px solid rgba(16, 185, 185, 0.14);
  }

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

  .why-card {
    min-height: 220px;
  }

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

  .btn {
    width: 100%;
  }

  .footer-inner {
    min-height: auto;
    padding: 64px 0 30px;
    align-items: stretch;
    justify-content: stretch;
    gap: 34px;
    text-align: left;
  }

  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 390px) {
  .contact-choice {
    grid-template-columns: 1fr;
  }

  .brand span:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  #portfolio .portfolio-mobile-head {
    margin-bottom: 30px;
  }

  #portfolio .portfolio-mobile-list {
    gap: 18px;
  }
}

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

  .logo-particles {
    display: none;
  }

  .portfolio-mobile-card,
  .portfolio-mobile-card .portfolio-mobile-preview,
  .portfolio-mobile-card .portfolio-mobile-info,
  .portfolio-mobile-preview img {
    opacity: 1;
    transform: none;
  }

  .hero-logo,
  .hero-logo span,
  .hero-title-line,
  .hero-copy .badge,
  .hero-copy .lead,
  .hero-copy .hero-actions,
  .hero-copy .hero-stats,
  .ui-frame,
  .digital-backdrop,
  .interface-lines span {
    opacity: 1;
    transform: none;
  }
}

/* Final mobile-first portfolio and header refresh. */
.portfolio-section {
  overflow: hidden;
  background: #ffffff;
  scroll-margin-top: 120px;
}

.portfolio-message-head {
  max-width: 680px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.portfolio-message-head h2 {
  color: #050505;
}

.portfolio-message-list {
  display: grid;
  gap: clamp(14px, 2.4vw, 22px);
  width: min(100%, 920px);
  margin: 0 auto;
}

.portfolio-message-card {
  --portfolio-shift: 54px;
  width: min(100%, 720px);
  will-change: opacity, transform;
}

.portfolio-message-card.from-left {
  justify-self: start;
  transform: translate3d(calc(var(--portfolio-shift) * -1), 16px, 0);
}

.portfolio-message-card.from-right {
  justify-self: end;
  transform: translate3d(var(--portfolio-shift), 16px, 0);
}

.portfolio-message-card.visible {
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-message-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 220ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.portfolio-message-card a:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 185, 0.32);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1), 0 0 0 4px rgba(16, 185, 185, 0.04);
}

.portfolio-message-card a:active {
  transform: scale(0.985);
}

.portfolio-message-main {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.portfolio-message-main strong {
  color: #10b9b9;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.portfolio-message-card a:hover .portfolio-message-main strong {
  color: #0ea8a8;
}

.portfolio-message-details {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  align-items: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
}

.portfolio-message-details b {
  color: #050505;
  font-weight: 900;
}

.portfolio-message-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.portfolio-message-action em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.portfolio-message-action .badge-live {
  border: 1px solid rgba(16, 185, 185, 0.28);
  background: #111827;
  color: #ffffff;
}

.portfolio-message-action .badge-concept {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(16, 185, 185, 0.08);
  color: #111827;
}

.portfolio-message-action i {
  color: #050505;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  transition: transform 220ms ease, color 220ms ease;
}

.portfolio-message-card a:hover .portfolio-message-action i {
  color: #10b9b9;
  transform: translate(3px, -3px);
}

.portfolio-message-main,
.portfolio-message-action {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-message-card.visible .portfolio-message-main {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}

.portfolio-message-card.visible .portfolio-message-action {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}

@media (max-width: 640px) {
  .header {
    top: 10px;
    padding: 0 12px;
  }

  .nav {
    min-height: 62px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    padding: 0 12px;
    border-color: rgba(17, 24, 39, 0.07);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
  }

  .brand picture {
    width: 50px;
    height: 50px;
  }

  .nav-actions {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    gap: 6px;
    margin-left: 0;
  }

  .social-link {
    width: 34px;
    height: 34px;
    border-color: rgba(16, 185, 185, 0.12);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: none;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.95;
  }

  .menu-btn {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-btn span {
    position: absolute;
    width: 27px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: #10b9b9;
    transition: transform 220ms ease, opacity 180ms ease, width 220ms ease;
  }

  .menu-btn span:nth-child(1) {
    transform: translateY(-8px);
  }

  .menu-btn span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-btn span:nth-child(3) {
    transform: translateY(8px);
  }

  body.menu-open .menu-btn span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.menu-open .menu-btn span:nth-child(2) {
    opacity: 0;
    width: 12px;
  }

  body.menu-open .menu-btn span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-links {
    top: 86px;
    left: 12px;
    right: 12px;
    border-color: rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(20px);
  }

  .portfolio-section {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .portfolio-section .section-inner {
    width: min(100%, 100% - 28px);
  }

  .portfolio-message-head {
    margin-bottom: 28px;
  }

  .portfolio-message-head h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .portfolio-message-list {
    gap: 14px;
  }

  .portfolio-message-card {
    --portfolio-shift: 32px;
    width: min(94%, 340px);
  }

  .portfolio-message-card a {
    min-height: 86px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .portfolio-message-main {
    gap: 7px;
  }

  .portfolio-message-main strong {
    font-size: 18px;
  }

  .portfolio-message-details {
    display: grid;
    gap: 4px;
    font-size: 12px;
  }

  .portfolio-message-action {
    align-self: end;
    gap: 7px;
  }

  .portfolio-message-action em {
    min-height: 20px;
    padding: 0 7px;
    font-size: 8px;
  }

  .portfolio-message-action i {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-message-card,
  .portfolio-message-main,
  .portfolio-message-action {
    opacity: 1;
    transform: none;
  }
}

/* Living phone hero refresh. */
body {
  background: #ffffff;
  color: #111827;
}

.header {
  top: 16px;
  padding: 0 18px;
  transition: top 260ms ease, padding 260ms ease;
}

.nav {
  min-height: 72px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(0);
  transition: background-color 320ms ease, border-color 320ms ease, box-shadow 320ms ease, border-radius 320ms ease, min-height 320ms ease;
}

.header.is-scrolled .nav {
  min-height: 66px;
  border-color: rgba(17, 24, 39, 0.035);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.nav-links a {
  color: #475569;
}

.nav-links a:hover,
.nav-links a.active {
  color: #050505;
}

.nav-links a::after {
  background: #10b9b9;
}

.menu-btn {
  border-color: rgba(16, 185, 185, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.menu-btn span {
  background: #10b9b9;
}

.hero {
  min-height: auto;
  padding: 122px 20px 76px;
  background:
    radial-gradient(circle at 78% 32%, rgba(16, 185, 185, 0.12), transparent 26rem),
    radial-gradient(circle at 18% 18%, rgba(16, 185, 185, 0.06), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
  color: #050505;
}

.hero-video,
.hero-ambient,
.video-shade,
.hero-brand-preview {
  display: none;
}

.hero-inner {
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 700px) minmax(320px, 1fr);
  gap: clamp(34px, 4.5vw, 58px);
}

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

.hero-copy .badge,
.hero-copy .lead,
.hero-copy .hero-actions,
.hero-service-line {
  opacity: 0;
  transform: translateY(18px);
  animation: heroContentIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .badge {
  animation-delay: 90ms;
}

.badge {
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 12px;
  border-color: rgba(16, 185, 185, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #334155;
  font-size: 11px;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.badge svg {
  width: 15px;
  height: 15px;
  stroke: #10b9b9;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 16px;
  gap: 0.1em;
  font-size: clamp(42px, 3.35vw, 48px);
  line-height: 1.02;
  color: #050505;
}

.hero-title-line {
  animation-duration: 760ms;
}

.hero-title-line:nth-child(1) {
  animation-delay: 190ms;
}

.hero-title-line:nth-child(2) {
  animation-delay: 330ms;
  white-space: normal;
}

.hero-title-accent {
  background: none;
  color: #10b9b9;
  text-shadow: 0 10px 30px rgba(16, 185, 185, 0.14);
}

.hero-service-line {
  margin: 0 0 8px;
  color: #3f4a5a;
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 850;
  line-height: 1.35;
  animation-delay: 520ms;
}

.lead {
  color: #64748b;
}

.hero-copy .lead {
  margin: 0;
  font-size: clamp(15px, 1.55vw, 18px);
  font-weight: 720;
  line-height: 1.45;
  animation-delay: 620ms;
}

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

.hero-copy .hero-actions {
  animation-delay: 760ms;
}

.btn {
  min-height: 52px;
  border-radius: 8px;
}

.btn-primary {
  border-color: #10b9b9;
  background: #10b9b9;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 185, 185, 0.24), 0 0 0 rgba(16, 185, 185, 0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #0ea8a8;
  box-shadow: 0 18px 44px rgba(16, 185, 185, 0.28), 0 0 28px rgba(16, 185, 185, 0.16);
}

.btn-outline {
  border-color: transparent;
  background: transparent;
  color: #10b9b9;
  backdrop-filter: none;
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(16, 185, 185, 0.12);
  background: rgba(16, 185, 185, 0.06);
  box-shadow: none;
}

.hero-phone-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: none;
  animation: phoneVisualIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 450ms both;
}

.hero-phone-visual.visible {
  opacity: 1;
  transform: none;
}

.phone-glow {
  position: absolute;
  width: min(440px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 185, 0.16), rgba(16, 185, 185, 0.06) 46%, transparent 70%);
  filter: blur(24px);
  opacity: 0.82;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(310px, 72vw);
  animation: phoneFloat 6.8s ease-in-out 1.25s infinite;
}

.phone-frame {
  position: relative;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, #20252e, #050505);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2), 0 10px 28px rgba(16, 185, 185, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 9px;
  z-index: 4;
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 18.5;
  border-radius: 26px;
  background: #ffffff;
}

.phone-browser-bar {
  height: 35px;
  display: grid;
  grid-template-columns: repeat(3, 6px) 1fr;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(248, 250, 252, 0.94);
}

.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(16, 185, 185, 0.46);
}

.phone-browser-bar strong {
  justify-self: center;
  padding-right: 16px;
  color: #64748b;
  font-size: 9px;
  font-weight: 850;
}

.phone-site-preview {
  height: calc(100% - 35px);
  padding: 15px;
  background:
    radial-gradient(circle at 78% 22%, rgba(16, 185, 185, 0.12), transparent 86px),
    linear-gradient(180deg, #ffffff, #f7fbfb);
}

.phone-site-nav {
  display: grid;
  grid-template-columns: 30px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.phone-site-nav img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.phone-site-nav span {
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.phone-site-nav span:last-child {
  background: rgba(16, 185, 185, 0.16);
}

.phone-site-hero {
  display: grid;
  gap: 10px;
}

.phone-site-hero span {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 185, 0.09);
  color: #0f8f8f;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-site-hero h2 {
  max-width: 210px;
  color: #050505;
  font-size: 24px;
  line-height: 1.04;
}

.phone-site-hero p {
  max-width: 190px;
  margin: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.48;
}

.phone-site-hero a {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 0 12px;
  border-radius: 8px;
  background: #10b9b9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(16, 185, 185, 0.22);
}

.phone-site-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
}

.phone-site-grid span {
  min-height: 56px;
  border: 1px solid rgba(17, 24, 39, 0.055);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.phone-site-grid span:first-child {
  grid-column: 1 / -1;
  min-height: 70px;
  background: linear-gradient(135deg, rgba(16, 185, 185, 0.14), rgba(255, 255, 255, 0.88));
}

.floating-badge {
  position: absolute;
  z-index: 4;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
  opacity: 0;
  animation: floatingBadgeIn 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards, badgeSoftFloat 5.6s ease-in-out infinite;
}

.floating-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #10b9b9;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-badge-leads {
  left: 5%;
  top: 22%;
  --badge-x: -20px;
  animation-delay: 850ms, 1.65s;
}

.floating-badge-seo {
  right: 2%;
  top: 46%;
  --badge-x: 22px;
  animation-delay: 1020ms, 1.82s;
}

.floating-badge-ui {
  left: 8%;
  bottom: 18%;
  --badge-x: -18px;
  animation-delay: 1180ms, 1.98s;
}

@keyframes phoneVisualIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes floatingBadgeIn {
  from {
    opacity: 0;
    transform: translate(var(--badge-x), 12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes badgeSoftFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 104px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .hero-visual {
    order: 0;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    max-width: 560px;
  }

  .hero-title {
    max-width: 540px;
    font-size: clamp(34px, 9.5vw, 50px);
    line-height: 1.04;
  }

  .hero-phone-visual {
    min-height: 420px;
    width: 100%;
    max-width: 430px;
  }

  .phone-mockup {
    width: min(268px, 68vw);
  }
}

@media (max-width: 640px) {
  .header {
    top: 10px;
    padding: 0 12px;
  }

  .nav {
    min-height: 62px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(0);
  }

  .header.is-scrolled .nav {
    min-height: 58px;
    background-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
  }

  .brand picture {
    width: 48px;
    height: 48px;
  }

  .nav-actions {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .social-link {
    width: 34px;
    height: 34px;
    color: #10b9b9;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 92px 16px 54px;
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .badge,
  .hero-title,
  .hero-service-line,
  .hero-copy .lead,
  .hero-actions {
    justify-self: center;
  }

  .hero-copy .badge {
    order: 1;
  }

  .hero-title {
    order: 2;
  }

  .hero-service-line {
    order: 3;
  }

  .hero-copy .lead {
    order: 4;
  }

  .hero-phone-visual {
    order: 5;
  }

  .badge {
    min-height: 28px;
    margin-bottom: 14px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero-title {
    margin-bottom: 12px;
    font-size: clamp(31px, 8.5vw, 40px);
    line-height: 1.06;
  }

  .hero-service-line {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .hero-copy .lead {
    font-size: 13px;
  }

  .hero-actions {
    order: 6;
    width: min(100%, 360px);
    margin-top: 16px;
    gap: 8px;
  }

  .hero-phone-visual {
    min-height: 330px;
    margin-top: 0;
  }

  .phone-mockup {
    width: min(204px, 58vw);
  }

  .phone-frame {
    padding: 8px;
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 23px;
  }

  .phone-browser-bar {
    height: 31px;
    padding: 0 10px;
  }

  .phone-browser-bar strong {
    font-size: 8px;
  }

  .phone-site-preview {
    height: calc(100% - 31px);
    padding: 13px;
  }

  .phone-site-nav {
    margin-bottom: 20px;
  }

  .phone-site-hero h2 {
    font-size: 20px;
  }

  .phone-site-hero p {
    font-size: 9.5px;
  }

  .phone-site-grid {
    gap: 6px;
    margin-top: 16px;
  }

  .phone-site-grid span,
  .phone-site-grid span:first-child {
    min-height: 46px;
  }

  .floating-badge {
    min-height: 31px;
    padding: 0 9px;
    gap: 6px;
    font-size: 10px;
  }

  .floating-badge svg {
    width: 13px;
    height: 13px;
  }

  .floating-badge-leads {
    left: 3px;
    top: 42px;
  }

  .floating-badge-seo {
    right: 0;
    top: 154px;
  }

  .floating-badge-ui {
    left: 10px;
    bottom: 42px;
  }

  .btn {
    min-height: 48px;
  }

  .btn-outline {
    min-height: 34px;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 88px;
  }

  .hero-inner {
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(29px, 8.4vw, 34px);
  }

  .hero-phone-visual {
    min-height: 288px;
  }

  .phone-mockup {
    width: min(172px, 52vw);
  }

  .floating-badge-leads {
    left: 0;
  }

  .floating-badge-seo {
    right: -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone-visual,
  .phone-mockup,
  .floating-badge,
  .hero-service-line {
    opacity: 1;
    animation: none;
    transform: none;
    translate: none;
  }
}

/* Services, FAQ, team and richer phone preview refresh. */
.hero-title-investment {
  gap: 0.02em;
}

.hero-title-investment .hero-title-line:nth-child(3) {
  animation-delay: 440ms;
}

.hero-title-investment .hero-title-line:nth-child(4) {
  margin-top: 0.08em;
  animation-delay: 560ms;
}

.phone-site-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 18px;
}

.phone-info-card {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(17, 24, 39, 0.055);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.phone-info-card-wide {
  grid-column: 1 / -1;
  min-height: 62px;
  background: linear-gradient(135deg, rgba(16, 185, 185, 0.14), rgba(255, 255, 255, 0.92));
}

.phone-info-card b {
  color: #050505;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.phone-info-card small {
  color: #64748b;
  font-size: 7.4px;
  font-weight: 760;
  line-height: 1.25;
}

.services-section,
.faq-section,
.team-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 185, 185, 0.08), transparent 26rem),
    #ffffff;
  color: #050505;
  scroll-margin-top: 116px;
}

.services-section .section-head h2,
.faq-section .section-head h2,
.team-section .section-head h2 {
  color: #050505;
}

.services-section .section-head p:not(.eyebrow),
.faq-section .section-head p:not(.eyebrow),
.team-section .section-head p:not(.eyebrow) {
  color: #64748b;
}

.services-section .pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.services-section .price-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #050505;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.services-section .price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 185, 0.34);
  background: #ffffff;
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.09), 0 0 0 4px rgba(16, 185, 185, 0.045);
}

.services-section .price-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  padding: 7px;
  border-radius: 8px;
  color: #10b9b9;
  background: rgba(16, 185, 185, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.services-section .price-card:hover svg {
  color: #ffffff;
  background: #10b9b9;
  transform: translateY(-2px) rotate(-3deg);
}

.services-section .price-card span {
  color: #10b9b9;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.services-section .price-card strong {
  margin: 10px 0 16px;
  color: #050505;
  font-size: clamp(24px, 2.3vw, 34px);
}

.services-section .price-card p {
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.58;
}

.services-section .price-note {
  color: #64748b;
}

.faq-section {
  padding-top: clamp(78px, 9vw, 118px);
}

.faq-list {
  width: min(100%, 880px);
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(17, 24, 39, 0.075);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
  overflow: hidden;
  transition: transform 220ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 185, 0.2);
}

.faq-item.is-open {
  border-color: rgba(16, 185, 185, 0.26);
  background: #f3ffff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.07), 0 0 0 4px rgba(16, 185, 185, 0.045);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease;
}

.faq-question:active {
  transform: scale(0.992);
}

.faq-question span {
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 900;
  line-height: 1.25;
}

.faq-question i {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 185, 0.08);
  transition: background 220ms ease, transform 260ms ease;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 999px;
  background: #10b9b9;
  transition: transform 260ms ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i {
  background: #10b9b9;
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::before,
.faq-item.is-open .faq-question i::after {
  background: #ffffff;
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: #64748b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.faq-list .faq-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.faq-list.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.faq-list.visible .faq-item:nth-child(2) {
  transition-delay: 70ms;
}

.faq-list.visible .faq-item:nth-child(3) {
  transition-delay: 140ms;
}

.faq-list.visible .faq-item:nth-child(4) {
  transition-delay: 210ms;
}

.faq-list.visible .faq-item:nth-child(5) {
  transition-delay: 280ms;
}

.faq-telegram {
  width: fit-content;
  display: flex;
  margin: 24px auto 0;
  color: #10b9b9;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, color 180ms ease;
}

.faq-telegram:hover {
  color: #0ea8a8;
  transform: translateY(-2px);
}

.team-section {
  padding-top: clamp(78px, 9vw, 118px);
}

.team-intro {
  width: min(100%, 780px);
  margin: -18px auto 32px;
  color: #475569;
  text-align: center;
}

.team-intro p {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 720;
  line-height: 1.58;
}

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

.team-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 185, 0.3);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.09), 0 0 0 4px rgba(16, 185, 185, 0.04);
}

.team-card.visible:nth-child(2) {
  transition-delay: 90ms;
}

.team-card.visible:nth-child(3) {
  transition-delay: 180ms;
}

.team-badge {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.team-card h3 {
  margin: 22px 0 12px;
  color: #050505;
  font-size: clamp(22px, 2.2vw, 30px);
}

.team-card p {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

.team-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(16, 185, 185, 0.08);
  color: #0f8f8f;
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-card a span {
  transition: transform 180ms ease;
}

.team-card a:hover {
  background: #10b9b9;
  color: #ffffff;
  transform: translateY(-2px);
}

.team-card a:hover span {
  transform: translateX(4px);
}

.team-note {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
  text-align: center;
}

.team-note p {
  max-width: 620px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .services-section .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .hero-title-investment {
    gap: 0.04em;
    font-size: clamp(25px, 7.2vw, 34px);
  }

  .hero-title-investment .hero-title-line:nth-child(4) {
    margin-top: 0.12em;
    font-size: 0.78em;
    line-height: 1.16;
  }

  .phone-site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 12px;
  }

  .phone-info-card,
  .phone-info-card-wide {
    min-height: 38px;
    padding: 6px;
  }

  .phone-info-card b {
    font-size: 10px;
  }

  .phone-info-card small {
    font-size: 6px;
  }

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

  .services-section .price-card {
    min-height: auto;
    padding: 20px;
  }

  .faq-question {
    min-height: 66px;
    padding: 0 16px;
  }

  .faq-answer p {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 18px;
  }

  .team-card {
    min-height: auto;
    padding: 20px;
  }

  .team-card a,
  .team-note .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Premium mobile menu and site upgrade constructor. */
.mobile-menu-head,
.mobile-menu-bottom {
  display: none;
}

.nav-menu-list {
  display: contents;
}

.nav-menu-list a span {
  display: none;
}

.site-upgrade-section {
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(76px, 8vw, 112px);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 185, 185, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fcfc 0%, #ffffff 100%);
  color: #050505;
  overflow: hidden;
}

.site-upgrade-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.site-upgrade-copy {
  max-width: 540px;
}

.site-upgrade-copy h2 {
  color: #050505;
}

.site-upgrade-copy p:not(.eyebrow) {
  color: #64748b;
}

.site-builder {
  display: grid;
  gap: 18px;
}

.site-builder-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-builder-preview.is-complete {
  border-color: rgba(16, 185, 185, 0.28);
  box-shadow: 0 30px 82px rgba(15, 23, 42, 0.1), 0 0 0 4px rgba(16, 185, 185, 0.045);
}

.mini-browser-bar {
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 8px) 1fr;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: #f8fafc;
}

.mini-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.62);
}

.mini-browser-bar strong {
  justify-self: center;
  padding-right: 42px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 850;
}

.mini-site {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  transition: background 320ms ease;
}

.site-builder-preview.has-design .mini-site {
  background:
    radial-gradient(circle at 84% 18%, rgba(16, 185, 185, 0.13), transparent 120px),
    linear-gradient(180deg, #ffffff, #f3ffff);
}

.mini-site-nav {
  display: grid;
  grid-template-columns: 72px 1fr 80px;
  align-items: center;
  gap: 12px;
}

.mini-site-nav b,
.mini-site-nav i {
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: background 260ms ease, height 260ms ease, color 260ms ease;
}

.mini-site-nav b {
  display: flex;
  align-items: center;
  padding-left: 10px;
  color: transparent;
  font-size: 10px;
  font-weight: 950;
}

.site-builder-preview.has-design .mini-site-nav b {
  height: 28px;
  background: rgba(16, 185, 185, 0.1);
  color: #10b9b9;
}

.site-builder-preview.has-design .mini-site-nav i:last-child {
  background: rgba(16, 185, 185, 0.22);
}

.mini-site-hero {
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-builder-preview.has-design .mini-site-hero {
  border-color: rgba(16, 185, 185, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.mini-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.site-builder-preview.has-design .mini-kicker {
  color: #10b9b9;
}

.mini-site-hero h3 {
  max-width: 390px;
  margin: 0 0 10px;
  color: #334155;
  font-size: 28px;
  line-height: 1.08;
  transition: color 260ms ease, font-size 260ms ease;
}

.site-builder-preview.has-design .mini-site-hero h3 {
  color: #050505;
  font-size: 34px;
}

.mini-site-hero p {
  max-width: 420px;
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
  transition: color 260ms ease;
}

.site-builder-preview.has-design .mini-site-hero p {
  color: #64748b;
}

.mini-site-hero a,
.mini-lead-card,
.mini-seo-card,
.mini-trust-row {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mini-site-hero a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 8px;
  background: #10b9b9;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(16, 185, 185, 0.22);
}

.site-builder-preview.has-trust .mini-trust-row,
.site-builder-preview.has-seo .mini-seo-card,
.site-builder-preview.has-leads .mini-site-hero a,
.site-builder-preview.has-leads .mini-lead-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mini-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-trust-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(16, 185, 185, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.055);
}

.mini-seo-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(16, 185, 185, 0.18);
  border-radius: 8px;
  background: #f3ffff;
}

.mini-seo-card b {
  color: #10b9b9;
  font-size: 14px;
}

.mini-seo-card p,
.mini-seo-card small {
  margin: 0;
  color: #64748b;
  font-weight: 750;
}

.mini-seo-card small {
  font-size: 11px;
}

.mini-lead-card {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-lead-card button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

.mini-lead-card em {
  color: #10b9b9;
  font-style: normal;
  font-weight: 950;
  animation: leadPulse 1.6s ease-in-out infinite;
}

.mini-site-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-site-blocks span {
  min-height: 58px;
  border-radius: 8px;
  background: #e2e8f0;
  transition: min-height 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-builder-preview.has-design .mini-site-blocks span {
  min-height: 74px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.site-upgrade-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.upgrade-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  transition: transform 180ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 185, 0.28);
}

.upgrade-btn:active {
  transform: scale(0.985);
}

.upgrade-btn.is-active {
  border-color: #10b9b9;
  background: #10b9b9;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 185, 185, 0.22);
  cursor: default;
}

.upgrade-check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 185, 185, 0.1);
  color: #10b9b9;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.upgrade-btn.is-active .upgrade-check {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.site-upgrade-result {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 320ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), max-height 360ms ease;
}

.site-upgrade-result.is-visible {
  max-height: 150px;
  opacity: 1;
  transform: translateY(0);
}

.site-upgrade-result p {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 950;
}

@keyframes leadPulse {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 920px) {
  .nav-menu-list {
    display: grid;
    gap: 7px;
  }

  .nav-menu-list a span {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 8px 10px auto;
    z-index: 40;
    min-height: calc(100svh - 16px);
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 14px;
    border: 1px solid rgba(17, 24, 39, 0.07);
    border-radius: 16px;
    background:
      radial-gradient(circle at 80% 18%, rgba(16, 185, 185, 0.18), transparent 14rem),
      rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px) scale(0.985);
    transition: opacity 280ms ease, visibility 280ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 96px;
    bottom: 126px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 185, 0.38), transparent);
    pointer-events: none;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-menu-head,
  .mobile-menu-bottom {
    display: grid;
  }

  .mobile-menu-head {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 58px;
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .mobile-menu-head img {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .mobile-menu-close {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 185, 185, 0.09);
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  }

  .mobile-menu-close:hover,
  .mobile-menu-close:active {
    background: #10b9b9;
    color: #ffffff;
    transform: rotate(90deg) scale(0.96);
  }

  .nav-menu-list {
    align-content: center;
    padding: 8px 0 4px;
  }

  .nav-menu-list a {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 10px 0 26px;
    border-radius: 8px;
    color: #111827;
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 950;
    line-height: 1;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 420ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
  }

  .nav-menu-list a span {
    min-width: 24px;
    color: #10b9b9;
    font-size: 11px;
    font-weight: 950;
  }

  .nav-menu-list a::after {
    display: none;
  }

  .nav-links.open .nav-menu-list a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open .nav-menu-list a:nth-child(1) {
    transition-delay: 70ms;
  }

  .nav-links.open .nav-menu-list a:nth-child(2) {
    transition-delay: 110ms;
  }

  .nav-links.open .nav-menu-list a:nth-child(3) {
    transition-delay: 150ms;
  }

  .nav-links.open .nav-menu-list a:nth-child(4) {
    transition-delay: 190ms;
  }

  .nav-links.open .nav-menu-list a:nth-child(5) {
    transition-delay: 230ms;
  }

  .nav-links.open .nav-menu-list a:nth-child(6) {
    transition-delay: 270ms;
  }

  .nav-menu-list a:hover,
  .nav-menu-list a.active {
    background: rgba(16, 185, 185, 0.075);
    color: #0f8f8f;
  }

  .nav-menu-list a:active {
    transform: scale(0.985);
  }

  .mobile-menu-bottom {
    gap: 10px;
  }

  .mobile-menu-bottom p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-menu-cta {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #10b9b9;
    color: #ffffff !important;
    font-weight: 950;
    box-shadow: 0 18px 38px rgba(16, 185, 185, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .mobile-menu-cta:active {
    transform: scale(0.985);
    box-shadow: 0 12px 28px rgba(16, 185, 185, 0.18);
  }

  .mobile-menu-bottom span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 850;
  }

  .site-upgrade-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-upgrade-copy {
    max-width: 680px;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .site-upgrade-section {
    padding: 72px 16px;
  }

  .site-upgrade-inner {
    width: min(100%, 100%);
  }

  .site-builder-preview {
    order: 1;
  }

  .site-upgrade-controls {
    order: 2;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .upgrade-btn {
    min-height: 52px;
    font-size: 14px;
  }

  .site-upgrade-result {
    order: 3;
  }

  .mini-site {
    min-height: 330px;
    padding: 15px;
    gap: 10px;
  }

  .mini-site-hero {
    padding: 15px;
  }

  .mini-site-hero h3 {
    font-size: 22px;
  }

  .site-builder-preview.has-design .mini-site-hero h3 {
    font-size: 25px;
  }

  .mini-site-hero p {
    font-size: 12px;
  }

  .mini-site-blocks {
    gap: 7px;
  }

  .mini-site-blocks span,
  .site-builder-preview.has-design .mini-site-blocks span {
    min-height: 46px;
  }
}

/* Lightweight benefits accordion and process timeline refresh. */
.benefits-section,
.process-section {
  background: #ffffff;
  color: #050505;
  overflow: hidden;
}

.benefits-section .section-head h2,
.process-section .section-head h2 {
  color: #050505;
}

.benefits-section .section-inner,
.process-section .section-inner {
  width: min(100%, 980px);
}

.benefits-accordion {
  width: min(100%, 880px);
  margin: 0 auto;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.benefit-accordion-item {
  position: relative;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  transition: background 240ms ease;
}

.benefit-accordion-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: #10b9b9;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 240ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-accordion-item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.benefit-accordion-button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 0 0 0 22px;
  border: 0;
  background: transparent;
  color: #111827;
  text-align: left;
  cursor: pointer;
}

.benefit-accordion-button span {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 950;
  transition: color 220ms ease;
}

.benefit-accordion-button strong {
  color: #111827;
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.05;
  font-weight: 950;
  transition: color 220ms ease, transform 220ms ease;
}

.benefit-accordion-button i {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(16, 185, 185, 0.08);
  transition: background 220ms ease, transform 260ms ease;
}

.benefit-accordion-button i::before,
.benefit-accordion-button i::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 14px;
  height: 2px;
  border-radius: 999px;
  background: #10b9b9;
}

.benefit-accordion-button i::after {
  transform: rotate(90deg);
  transition: transform 240ms ease;
}

.benefit-accordion-item.is-open .benefit-accordion-button span,
.benefit-accordion-item:hover .benefit-accordion-button span {
  color: #10b9b9;
}

.benefit-accordion-item.is-open .benefit-accordion-button strong {
  color: #050505;
  transform: translateX(4px);
}

.benefit-accordion-item.is-open .benefit-accordion-button i {
  background: #10b9b9;
  transform: rotate(45deg);
}

.benefit-accordion-item.is-open .benefit-accordion-button i::before,
.benefit-accordion-item.is-open .benefit-accordion-button i::after {
  background: #ffffff;
}

.benefit-accordion-item.is-open .benefit-accordion-button i::after {
  transform: rotate(0deg);
}

.benefit-accordion-button:active {
  transform: scale(0.992);
}

.benefit-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.benefit-accordion-content p {
  min-height: 0;
  overflow: hidden;
  max-width: 660px;
  margin: 0;
  padding: 0 56px 0 78px;
  color: #64748b;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 680;
  line-height: 1.62;
}

.benefit-accordion-item.is-open .benefit-accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.benefit-accordion-item.is-open .benefit-accordion-content p {
  padding-bottom: 28px;
}

.process-section {
  padding-top: clamp(78px, 9vw, 118px);
}

.process-timeline {
  --process-progress: 0;
  position: relative;
  width: min(100%, 840px);
  display: grid;
  gap: 0;
  margin: 0 auto;
  padding-left: 86px;
}

.process-line {
  position: absolute;
  left: 38px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(17, 24, 39, 0.12);
  overflow: hidden;
}

.process-line span {
  position: absolute;
  inset: 0;
  height: calc(var(--process-progress) * 100%);
  background: #10b9b9;
  transform-origin: top;
  transition: height 220ms ease;
}

.process-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 0 0 46px;
  opacity: 0.42;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-step.visible,
.process-timeline-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.process-timeline-step::before {
  content: "";
  position: absolute;
  left: -55px;
  top: 7px;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(16, 185, 185, 0.35);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 8px #ffffff;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.process-timeline-step.is-active::before,
.process-timeline-step.visible::before {
  background: #10b9b9;
  box-shadow: 0 0 0 8px rgba(16, 185, 185, 0.1);
  transform: scale(1.08);
}

.process-number {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 950;
  transition: color 220ms ease;
}

.process-timeline-step.is-active .process-number,
.process-timeline-step.visible .process-number {
  color: #10b9b9;
}

.process-timeline-step h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(24px, 3.1vw, 42px);
  line-height: 1.04;
}

.process-timeline-step p {
  max-width: 620px;
  margin: 0;
  color: #64748b;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 680;
  line-height: 1.62;
  opacity: 0.5;
  transform: translateY(6px);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline-step.is-active p,
.process-timeline-step.visible p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .benefits-section .section-inner,
  .process-section .section-inner {
    width: min(100%, 100%);
  }

  .benefit-accordion-button {
    min-height: 72px;
    grid-template-columns: 42px 1fr 30px;
    gap: 12px;
    padding-left: 16px;
  }

  .benefit-accordion-button strong {
    font-size: clamp(21px, 7vw, 28px);
  }

  .benefit-accordion-content p {
    padding-left: 58px;
    padding-right: 12px;
    font-size: 14px;
  }

  .benefit-accordion-item.is-open .benefit-accordion-content p {
    padding-bottom: 22px;
  }

  .process-timeline {
    padding-left: 48px;
  }

  .process-line {
    left: 18px;
  }

  .process-timeline-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding-bottom: 34px;
  }

  .process-timeline-step::before {
    left: -36px;
    width: 13px;
    height: 13px;
  }

  .process-timeline-step h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .process-timeline-step p {
    font-size: 14px;
  }
}

/* Dark compact studio footer and expanded team roles. */
.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-role-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: #10b9b9;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

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

.team-card li {
  position: relative;
  padding-left: 14px;
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
}

.team-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b9b9;
}

.footer {
  border-top: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(16, 185, 185, 0.14), transparent 24rem),
    linear-gradient(180deg, #101315 0%, #07090b 100%);
  color: #ffffff;
}

.footer::before {
  right: 6vw;
  top: -80px;
  background: radial-gradient(circle, rgba(16, 185, 185, 0.16), transparent 66%);
  opacity: 0.8;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  gap: 34px;
  padding: 58px 0 24px;
  color: #8b98a8;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  align-items: start;
  gap: clamp(32px, 7vw, 96px);
  padding-bottom: 34px;
  border-bottom: 0;
}

.footer-brand {
  width: clamp(148px, 15vw, 206px);
  height: clamp(48px, 5vw, 66px);
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-top p {
  max-width: 460px;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 780;
  line-height: 1.34;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #9aa6b5;
  font-size: 13px;
  font-weight: 850;
}

.footer-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b9b9;
  box-shadow: 0 0 0 5px rgba(16, 185, 185, 0.14);
}

.footer-columns {
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 54px);
}

.footer-column {
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.footer-column a {
  position: relative;
  min-height: 26px;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  color: #8b98a8;
  font-size: 14px;
  font-weight: 760;
}

.footer-column a::after {
  content: "→";
  color: #10b9b9;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #10b9b9;
  transform: translateX(2px);
}

.footer-column a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #7b8794;
  font-size: 12px;
  font-weight: 760;
}

.footer-bottom p:nth-child(2) {
  justify-self: center;
}

.footer-bottom p:last-child {
  justify-self: end;
}

@media (max-width: 1180px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-inner {
    width: min(100% - 32px, 1180px);
    gap: 26px;
    padding: 48px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 24px;
  }

  .footer-brand {
    width: min(176px, 58vw);
    height: 56px;
    margin-bottom: 12px;
  }

  .footer-top p {
    font-size: 18px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-column {
    gap: 5px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 20px;
  }

  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child {
    justify-self: start;
  }
}

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

  .team-card ul {
    margin-bottom: 20px;
  }
}

/* Final interaction polish, hero underline, FAQ icon and compact contact form. */
:root {
  --motion-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.hero-title-need {
  max-width: 760px;
  gap: 0.06em;
}

.hero-title-need .hero-title-line:nth-child(2) {
  white-space: normal;
}

.hero-title-underline {
  position: relative;
  display: inline-block;
  color: inherit;
  isolation: isolate;
}

.hero-title-underline::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.02em;
  z-index: -1;
  height: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 185, 0.18), rgba(16, 185, 185, 0.86), rgba(74, 222, 222, 0.42));
  box-shadow: 0 8px 22px rgba(16, 185, 185, 0.16);
  transform-origin: left;
  animation: underlineSweep 900ms var(--motion-soft) 680ms both;
}

@keyframes underlineSweep {
  from {
    opacity: 0;
    transform: scaleX(0.22) translateY(5px);
  }
  to {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}

.btn,
.nav-cta,
.footer-column a,
.portfolio-message-card a,
.team-card a,
.upgrade-btn,
.mobile-menu-cta,
.faq-telegram,
.contact-buttons a {
  transition-duration: 340ms;
  transition-timing-function: var(--motion-soft);
}

.btn:hover,
.nav-cta:hover,
.team-card a:hover,
.upgrade-btn:hover,
.contact-buttons a:hover {
  transform: translateY(-3px);
}

.btn:active,
.nav-cta:active,
.team-card a:active,
.upgrade-btn:active,
.mobile-menu-cta:active,
.contact-buttons a:active {
  transform: translateY(1px) scale(0.985);
}

.btn-primary:hover,
.form .btn-primary:hover {
  box-shadow: 0 20px 48px rgba(16, 185, 185, 0.3), 0 0 26px rgba(16, 185, 185, 0.16);
}

.price-card,
.why-card,
.team-card,
.portfolio-message-card a,
.site-builder-preview,
.faq-item,
.contact-benefit,
.form {
  transition-duration: 360ms;
  transition-timing-function: var(--motion-soft);
}

.price-card:hover,
.team-card:hover,
.portfolio-message-card a:hover,
.site-builder-preview:hover,
.contact-benefit:hover {
  transform: translateY(-5px) scale(1.01);
}

.faq-question .faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 185, 0.09);
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  transition: background 260ms var(--motion-soft), transform 300ms var(--motion-soft);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 999px;
  background: #10b9b9;
  transition: transform 300ms var(--motion-soft), opacity 220ms ease, background 220ms ease;
}

.faq-question .faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question .faq-icon {
  background: rgba(16, 185, 185, 0.14);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.2);
}

.faq-item.is-open .faq-question .faq-icon::before {
  background: #10b9b9;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.team-badge-priority {
  background: #10b9b9;
  color: #ffffff;
}

.team-card-priority {
  border-color: rgba(16, 185, 185, 0.28);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08), 0 0 0 4px rgba(16, 185, 185, 0.04);
}

.team-card-priority:hover {
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.12), 0 0 0 5px rgba(16, 185, 185, 0.07);
}

.team-pay {
  color: #111827 !important;
  font-weight: 850 !important;
}

.contact-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(16, 185, 185, 0.09), transparent 26rem),
    #ffffff;
  color: #050505;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-text {
  position: sticky;
  top: 126px;
  padding-top: 8px;
}

.contact-text h2 {
  color: #050505;
}

.contact-text p:not(.eyebrow) {
  max-width: 520px;
  color: #64748b;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.58;
}

.contact-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.contact-buttons::-webkit-scrollbar {
  display: none;
}

.contact-buttons .btn {
  width: auto;
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 14px;
  border-color: rgba(16, 185, 185, 0.16);
  background: rgba(16, 185, 185, 0.06);
  color: #0f8f8f;
  box-shadow: none;
}

.contact-buttons .btn:hover {
  background: #10b9b9;
  color: #ffffff;
}

.form {
  padding: 24px;
  border: 1px solid rgba(16, 185, 185, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(16, 185, 185, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08), 0 0 0 4px rgba(16, 185, 185, 0.025);
}

.form-field {
  gap: 8px;
}

.form > label > span,
.contact-choice legend {
  color: #111827;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.form input,
.form textarea {
  min-height: 50px;
  border-color: rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease, transform 260ms var(--motion-soft);
}

.form textarea {
  min-height: 112px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(16, 185, 185, 0.58);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 185, 0.09);
  transform: translateY(-1px);
}

.contact-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.contact-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.contact-choice label {
  min-height: 48px;
  border-color: rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: #475569;
  box-shadow: none;
}

.contact-choice label:hover {
  border-color: rgba(16, 185, 185, 0.26);
  background: #f3ffff;
  transform: translateY(-2px);
}

.contact-choice label:has(input:checked) {
  border-color: #10b9b9;
  background: #10b9b9;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 185, 185, 0.18);
}

.contact-choice span {
  justify-content: center;
  font-size: 13px;
}

.contact-choice svg {
  width: 17px;
  height: 17px;
}

.contact-dynamic-field {
  animation: contactFieldIn 340ms var(--motion-soft);
}

@keyframes contactFieldIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form button.btn-primary {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
}

.form-hint {
  margin: -4px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

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

  .contact-text {
    position: static;
    text-align: center;
  }

  .contact-text p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-buttons {
    justify-content: flex-start;
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  main,
  .section,
  .section-inner {
    min-width: 0;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section + .section {
    margin-top: 0;
  }

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

  .section-head h2,
  .contact-text h2,
  .team-card h3,
  .portfolio-message-main strong {
    overflow-wrap: anywhere;
  }

  html {
    scroll-padding-top: 78px;
  }

  .hero-title-need {
    font-size: clamp(33px, 9.4vw, 43px);
  }

  .hero-title-underline::after {
    height: 0.16em;
    bottom: 0.01em;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-text h2 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .contact-buttons {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 2px;
  }

  .contact-buttons .btn {
    min-height: 40px;
  }

  .form {
    padding: 18px;
    border-radius: 22px;
  }

  .form input {
    min-height: 48px;
  }

  .form textarea {
    min-height: 104px;
  }

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

  .contact-choice label {
    min-height: 46px;
  }

  .phone-site-preview {
    padding: 8px;
  }

  .phone-site-nav {
    grid-template-columns: 22px 1fr 24px;
    gap: 5px;
    margin-bottom: 8px;
  }

  .phone-site-nav img {
    width: 22px;
    height: 22px;
  }

  .phone-site-nav span {
    height: 5px;
  }

  .phone-site-hero {
    gap: 5px;
  }

  .phone-site-hero span {
    padding: 3px 6px;
    font-size: 6.5px;
  }

  .phone-site-hero h2 {
    max-width: 136px;
    font-size: 14px;
    line-height: 1.06;
  }

  .phone-site-hero p {
    max-width: 132px;
    font-size: 7.2px;
    line-height: 1.32;
  }

  .phone-site-hero a {
    min-height: 20px;
    margin-top: 1px;
    padding: 0 8px;
    font-size: 7.4px;
    border-radius: 6px;
  }

  .phone-site-grid {
    gap: 5px;
    margin-top: 8px;
  }

  .phone-info-card,
  .phone-info-card-wide {
    min-height: 36px;
    padding: 6px;
    border-radius: 7px;
  }

  .phone-info-card:nth-child(4) {
    display: none;
  }

  .phone-info-card b {
    font-size: 10px;
  }

  .phone-info-card small {
    font-size: 6.2px;
    line-height: 1.18;
  }
}
