


:root {
  
  --black: #0a0a0b;
  --black-soft: #111113;
  --black-muted: #17171a;
  --line: #232327;
  --line-soft: rgba(255, 255, 255, 0.08);

  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #ececed;
  --gray-300: #c9c9cd;
  --gray-400: #9a9aa2;
  --gray-500: #6f6f78;

  
  --text: #f4f4f5;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.42);

  
  --ink: #101012;
  --ink-muted: #5a5a63;

  
  --red-400: #ef6f6f;
  --red-500: #e5484d;
  --red-600: #d1373c;
  --red-700: #af2a2f;
  --red: var(--red-600);
  --red-hover: var(--red-500);
  --wine: #5a1418;
  --wine-soft: #3a0e11;

  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.4), 0 24px 60px -30px rgba(0, 0, 0, 0.9);
  --shadow-red: 0 12px 34px -12px rgba(209, 55, 60, 0.6);
  --shadow-glow: 0 0 0 1px rgba(229, 72, 77, 0.16), 0 24px 70px -28px rgba(229, 72, 77, 0.4);

  
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-display: "Sora", var(--font);

  
  --section-y: clamp(4.5rem, 9vw, 7.5rem);

  
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t: 0.3s;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: rgba(229, 72, 77, 0.3);
  color: var(--white);
}


::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2f;
  border-radius: 999px;
  border: 3px solid var(--black);
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a41;
}


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
}

.section--light {
  background: var(--white);
  color: var(--ink);
}

.section--soft {
  background: var(--black-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.section--light .eyebrow {
  border-color: rgba(16, 16, 18, 0.1);
  background: rgba(16, 16, 18, 0.03);
  color: var(--ink-muted);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-top: 1.1rem;
  max-width: 20ch;
}

.section--center .section-title,
.section--center .section-lead,
.section--center .eyebrow-wrap {
  margin-inline: auto;
}

.section--center {
  text-align: center;
}

.section-lead {
  margin-top: 1.1rem;
  max-width: 56ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
}

.section--light .section-lead {
  color: var(--ink-muted);
}

.text-red {
  color: var(--red-500);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}


.bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 75%);
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease), background var(--t) var(--ease),
    border-color var(--t) var(--ease), color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-500);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
}
.btn--secondary:hover {
  background: var(--gray-100);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--outline:hover {
  border-color: rgba(229, 72, 77, 0.6);
  background: rgba(255, 255, 255, 0.03);
}

.section--light .btn--outline {
  color: var(--ink);
  border-color: rgba(16, 16, 18, 0.14);
}
.section--light .btn--outline:hover {
  border-color: rgba(229, 72, 77, 0.6);
  background: rgba(16, 16, 18, 0.03);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  padding-inline: 0.75rem;
}
.btn--ghost:hover {
  color: var(--text);
  transform: none;
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
}
.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--red-500);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.btn-link:hover {
  gap: 0.65rem;
  color: var(--red-400);
}
.btn-link svg {
  width: 1em;
  height: 1em;
}


.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease),
    backdrop-filter var(--t) var(--ease);
}

.header.is-scrolled {
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  box-shadow: 0 6px 18px -6px rgba(209, 55, 60, 0.7);
}
.logo__mark svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo__text span {
  color: var(--red-500);
}
.section--light .logo__text {
  color: var(--ink);
}


.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.nav__link:hover {
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}
.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 14px;
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease),
    top var(--t) var(--ease);
}
.nav-toggle__bars span:nth-child(1) {
  top: 0;
}
.nav-toggle__bars span:nth-child(2) {
  top: 6px;
}
.nav-toggle__bars span:nth-child(3) {
  top: 12px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}


.mobile-menu {
  position: fixed;
  inset: 4.5rem 0 auto 0;
  z-index: 45;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: 1rem clamp(1.25rem, 4vw, 2rem) 2rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease),
    visibility var(--t) var(--ease);
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid rgba(35, 35, 39, 0.7);
  font-size: 1.05rem;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}
.mobile-menu__link:hover {
  color: var(--text);
}
.mobile-menu__link svg {
  width: 16px;
  height: 16px;
  color: var(--red-500);
}
.mobile-menu .btn {
  margin-top: 1.5rem;
}

.mobile-overlay {
  position: fixed;
  inset: 4.5rem 0 0 0;
  z-index: 44;
  background: rgba(10, 10, 11, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}


.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: var(--section-y);
}
.hero__glow-1 {
  top: -10%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(209, 55, 60, 0.28), transparent 70%);
}
.hero__glow-2 {
  bottom: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(90, 20, 24, 0.5), transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin-top: 1.5rem;
  max-width: 15ch;
}
.hero__text {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--red-500);
}


.hero__visual {
  position: relative;
  perspective: 1400px;
}

.window {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #141416, #0d0d0f);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.window__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.window__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f2f35;
}
.window__dot--red {
  background: var(--red-600);
}
.window__title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-display);
}
.window__body {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}


.chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}
.chart__bar {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #2b2b31, #202024);
  transform-origin: bottom;
  animation: growBar 1.1s var(--ease) both;
}
.chart__bar--active {
  background: linear-gradient(180deg, var(--red-500), var(--red-700));
}
@keyframes growBar {
  from {
    transform: scaleY(0.1);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}


.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.mini-card {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}
.mini-card__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}
.mini-card__label svg {
  width: 14px;
  height: 14px;
  color: var(--red-500);
}
.mini-card__value {
  margin-top: 0.5rem;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #34343a 35%, #202024 35%);
}
.mini-card__value--red {
  background: linear-gradient(90deg, var(--red-600) 60%, #202024 60%);
}


.code-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.72rem;
}
.code-line .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
}
.code-pill {
  height: 7px;
  border-radius: 4px;
  background: #2a2a30;
}


.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 20, 22, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  font-weight: 500;
}
.float-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(229, 72, 77, 0.12);
  color: var(--red-500);
}
.float-card__icon svg {
  width: 17px;
  height: 17px;
}
.float-card--ai {
  top: -1.5rem;
  right: -1rem;
  animation: floaty 6s ease-in-out infinite;
}
.float-card--deploy {
  bottom: -1.25rem;
  left: -1.25rem;
  animation: floaty 7s ease-in-out infinite 0.6s;
}
.float-card__sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-dim);
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}


.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--black-soft);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
    background var(--t) var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 0%),
    rgba(229, 72, 77, 0.08),
    transparent 45%
  );
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 72, 77, 0.35);
}
.card:hover::after {
  opacity: 1;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(229, 72, 77, 0.1);
  border: 1px solid rgba(229, 72, 77, 0.2);
  color: var(--red-500);
  margin-bottom: 1.25rem;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card__title {
  font-size: 1.2rem;
  font-family: var(--font-display);
}
.card__text {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}
.card .btn-link {
  margin-top: 1.25rem;
}


.services__grid .card:nth-child(4),
.services__grid .card:nth-child(5) {
  grid-column: span 1;
}


.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process__grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red-700),
    var(--red-500),
    var(--red-700),
    transparent
  );
  opacity: 0.5;
}
.step {
  position: relative;
  text-align: left;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--black);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red-500);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.section--light .step__num {
  background: var(--white);
  border-color: rgba(16, 16, 18, 0.12);
}
.step__title {
  font-size: 1.2rem;
}
.step__text {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.section--light .step__text {
  color: var(--ink-muted);
}


.ai {
  background: radial-gradient(
      1000px 500px at 80% -10%,
      rgba(175, 42, 47, 0.28),
      transparent 60%
    ),
    var(--black);
}
.ai__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ai__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--black-soft);
  font-size: 0.9rem;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 77, 0.4);
}
.chip svg {
  width: 17px;
  height: 17px;
  color: var(--red-500);
}


.ai__visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #141416, #0c0c0e);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
}
.ai-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.5rem;
  align-items: center;
}
.ai-node {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}
.ai-node svg {
  width: 22px;
  height: 22px;
}
.ai-node--core {
  border-color: rgba(229, 72, 77, 0.5);
  background: rgba(229, 72, 77, 0.12);
  color: var(--red-400);
  box-shadow: 0 0 0 6px rgba(229, 72, 77, 0.06);
  animation: pulseCore 2.6s ease-in-out infinite;
}
@keyframes pulseCore {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(229, 72, 77, 0.06);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(229, 72, 77, 0);
  }
}
.ai-caption {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.ai-caption b {
  color: var(--red-400);
  font-weight: 500;
}


.product__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.product__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--red-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product__name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
}
.product__subtitle {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.product__text {
  margin-top: 1.25rem;
  color: var(--text-muted);
  max-width: 46ch;
}
.product__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-top: 1.75rem;
}
.product__feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
}
.product__feature svg {
  width: 20px;
  height: 20px;
  color: var(--red-500);
  flex-shrink: 0;
}
.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.product .btn {
  margin-top: 0;
}


.phone {
  position: relative;
  width: 280px;
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1a1a1d, #0c0c0e);
  padding: 12px;
  box-shadow: var(--shadow-glow), 0 40px 80px -30px rgba(0, 0, 0, 0.9);
}
.phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  border-radius: 999px;
  background: #050506;
  z-index: 3;
}
.phone__screen {
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #0e0e10, #131315);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__top {
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(180deg, rgba(209, 55, 60, 0.18), transparent);
}
.phone__hello {
  font-size: 0.72rem;
  color: var(--text-dim);
}
.phone__title {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: 0.15rem;
}
.phone__stat {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.phone__stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phone__stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 0.2rem;
  color: var(--white);
}
.phone__stat-value small {
  font-size: 0.7rem;
  color: var(--red-500);
  font-weight: 500;
}
.phone__list {
  flex: 1;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}
.phone__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.phone__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--wine));
  flex-shrink: 0;
}
.phone__lines {
  flex: 1;
  display: grid;
  gap: 0.35rem;
}
.phone__lines span {
  height: 6px;
  border-radius: 3px;
  background: #2a2a30;
}
.phone__lines span:first-child {
  width: 70%;
}
.phone__lines span:last-child {
  width: 45%;
  background: #202024;
}
.phone__tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(229, 72, 77, 0.14);
  color: var(--red-400);
  font-weight: 600;
}
.phone__tag--ok {
  background: rgba(120, 200, 120, 0.14);
  color: #7ec97e;
}
.phone__nav {
  display: flex;
  justify-content: space-around;
  padding: 0.85rem 0.5rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
}
.phone__nav span {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #202024;
}
.phone__nav span.active {
  background: rgba(229, 72, 77, 0.25);
}


.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--black-soft);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.project:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 72, 77, 0.35);
}
.project--placeholder {
  border-style: dashed;
  opacity: 0.85;
}
.project__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #161618, #0e0e10);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.project__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}
.project__thumb-mark {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.project__thumb-mark span {
  color: var(--red-500);
}
.project__thumb-ph {
  position: relative;
  color: var(--text-dim);
}
.project__thumb-ph svg {
  width: 40px;
  height: 40px;
}
.project__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red-500);
  font-weight: 600;
}
.project__name {
  font-size: 1.35rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
}
.project__text {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}
.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--text-muted);
}
.project__footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.project__note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}


.seo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.seo__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.seo__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(16, 16, 18, 0.1);
  border-radius: var(--radius);
  background: var(--gray-50);
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.seo__item:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 77, 0.4);
}
.seo__item svg {
  width: 20px;
  height: 20px;
  color: var(--red-600);
  flex-shrink: 0;
}


.seo-panel {
  border: 1px solid rgba(16, 16, 18, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 60px -35px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.seo-panel__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(16, 16, 18, 0.08);
  background: var(--gray-50);
}
.seo-panel__url {
  flex: 1;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(16, 16, 18, 0.1);
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-family: "SFMono-Regular", ui-monospace, monospace;
}
.seo-panel__body {
  padding: 1.5rem;
  display: grid;
  gap: 1.25rem;
}
.seo-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.score {
  text-align: center;
}
.score__ring {
  --val: 90;
  width: 62px;
  height: 62px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(
    var(--red-600) calc(var(--val) * 1%),
    rgba(16, 16, 18, 0.08) 0
  );
}
.score__ring span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.score__label {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--ink-muted);
}
.seo-result__title {
  color: #1a4bcc;
  font-size: 1rem;
  font-weight: 500;
}
.seo-result__url {
  color: #0a7d33;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.seo-result__desc {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}


.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__text p {
  color: var(--text-muted);
  margin-top: 1.1rem;
  font-size: 1.05rem;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pillar {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-soft);
}
.pillar svg {
  width: 26px;
  height: 26px;
  color: var(--red-500);
}
.pillar h3 {
  font-size: 1.05rem;
  margin-top: 1rem;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}


.cta-band {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(
      800px 400px at 50% -30%,
      rgba(209, 55, 60, 0.3),
      transparent 60%
    ),
    linear-gradient(180deg, #141416, #0c0c0e);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-band__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band__text {
  margin: 1.25rem auto 0;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
}


.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__aside .section-title {
  margin-top: 1rem;
}
.contact__channels {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}
.contact__channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-soft);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.contact__channel:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 72, 77, 0.4);
}
.contact__channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(229, 72, 77, 0.1);
  color: var(--red-500);
  flex-shrink: 0;
}
.contact__channel-icon svg {
  width: 20px;
  height: 20px;
}
.contact__channel-label {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.contact__channel-value {
  font-weight: 500;
}

.form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--black-soft);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.field__label .req {
  color: var(--red-500);
}
.field__control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--black);
  color: var(--text);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field__control::placeholder {
  color: var(--text-dim);
}
.field__control:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.18);
}
select.field__control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239a9aa2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
textarea.field__control {
  resize: vertical;
  min-height: 130px;
}
.field.has-error .field__control {
  border-color: var(--red-500);
}
.field__error {
  display: none;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: var(--red-400);
}
.field.has-error .field__error {
  display: flex;
}
.field__error svg {
  width: 14px;
  height: 14px;
}


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__submit {
  margin-top: 0.5rem;
}
.form__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}


.form-feedback {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.form-feedback.is-visible {
  display: flex;
}
.form-feedback svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.form-feedback--success {
  border: 1px solid rgba(120, 200, 120, 0.35);
  background: rgba(120, 200, 120, 0.1);
  color: #9fe09f;
}
.form-feedback--error {
  border: 1px solid rgba(229, 72, 77, 0.35);
  background: rgba(229, 72, 77, 0.1);
  color: var(--red-400);
}


.btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}
.btn.is-loading .btn__label {
  visibility: hidden;
}
.btn__spinner {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner {
  display: block;
}
.btn {
  position: relative;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  padding-block: 4rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
}
.footer__tagline {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 34ch;
}
.footer__socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer__social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.footer__social:hover {
  color: var(--text);
  border-color: rgba(229, 72, 77, 0.5);
}
.footer__social svg {
  width: 19px;
  height: 19px;
}
.footer__col h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  font-family: var(--font);
  font-weight: 600;
}
.footer__col ul {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.75rem;
}
.footer__col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover {
  color: var(--text);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-dim);
}


.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(209, 55, 60, 0.7);
  transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease),
    background var(--t) var(--ease), visibility var(--t) var(--ease);
}
.wa-float.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.wa-float:hover {
  background: var(--red-500);
  transform: scale(1.06);
}
.wa-float svg {
  width: 26px;
  height: 26px;
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(209, 55, 60, 0.4);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}
@keyframes ping {
  75%,
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}



.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

.hidden {
  display: none !important;
}


@media (max-width: 1024px) {
  .hero__grid,
  .ai__grid,
  .product__grid,
  .seo__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .services__grid,
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }
  .process__grid::before {
    display: none;
  }
  .about__pillars {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .nav,
  .header__actions .btn {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .seo__list,
  .product__features {
    grid-template-columns: 1fr;
  }
  .seo-scores {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 560px) {
  .services__grid,
  .projects__grid,
  .process__grid,
  .about__pillars {
    grid-template-columns: 1fr;
  }
  .hero__actions .btn,
  .cta-band__actions .btn {
    width: 100%;
  }
  .float-card {
    display: none;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
