:root {
  --bg: #050816;
  --bg-soft: #0c1226;
  --surface: rgba(11, 18, 36, 0.72);
  --surface-strong: rgba(14, 23, 42, 0.92);
  --line: rgba(112, 202, 196, 0.18);
  --line-strong: rgba(112, 202, 196, 0.34);
  --text: #f3f7fb;
  --text-soft: #bdd0da;
  --text-muted: #94a8b6;
  --accent: #4fc5c0;
  --accent-strong: #79f0ea;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 197, 192, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(93, 130, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #04070f 0%, #070d1d 58%, #03050c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
}

.ambient {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -10rem;
  left: -6rem;
  background: #48bdb7;
}

.ambient-two {
  right: -10rem;
  bottom: 2rem;
  background: #174f8f;
}

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

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding-bottom: 3rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 10, 21, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name,
.footer-brand {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand-tagline,
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--text-soft);
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: #021316;
  background: linear-gradient(135deg, var(--accent-strong), #d8fff8);
  box-shadow: 0 16px 36px rgba(79, 197, 192, 0.26);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.button-header {
  white-space: nowrap;
}

.button-full {
  width: 100%;
}

.section {
  padding: 5.6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding-top: 3rem;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2,
.policy-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-text,
.section-copy,
.story-panel p,
.service-card p,
.product-card p,
.process-card p,
.contact-copy p,
.signal-card p,
.policy-copy p,
.policy-copy li {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 62ch;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-signals {
  display: grid;
  gap: 0.9rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li,
.contact-note {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(11, 18, 36, 0.46);
  color: var(--text-soft);
}

.hero-signals li {
  position: relative;
  padding-left: 3rem;
}

.hero-signals li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent-strong), #e4fffb);
  box-shadow: 0 0 18px rgba(121, 240, 234, 0.45);
}

.hero-visual {
  display: grid;
  gap: 1.2rem;
}

.interactive-panel {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(1200px) rotateX(var(--ry)) rotateY(var(--rx));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.hero-showcase {
  position: relative;
  min-height: 34rem;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(121, 240, 234, 0.14);
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(180deg, rgba(12, 18, 33, 0.9), rgba(7, 11, 21, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(79, 197, 192, 0.08), transparent 24%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-logo-center {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 34rem;
  padding: 0;
  border-radius: calc(var(--radius-xl) + 6px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-logo-image {
  display: block;
  width: 112%;
  height: 100%;
  min-height: 34rem;
  margin-left: -6%;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(1.04)
    contrast(1.02)
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  clip-path: inset(0 3.5% 0 3.5%);
}

.capability-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(121, 240, 234, 0.14);
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(180deg, rgba(11, 18, 36, 0.78), rgba(6, 11, 22, 0.94)),
    radial-gradient(circle at 14% 18%, rgba(79, 197, 192, 0.08), transparent 24%);
  box-shadow: var(--shadow);
}

.capability-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(121, 240, 234, 0.11), transparent 24%);
  pointer-events: none;
}

.capability-copy {
  position: relative;
  z-index: 1;
}

.capability-chips,
.service-tags,
.service-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.capability-chips {
  margin-top: 1.5rem;
}

.capability-chips span,
.service-tags span,
.service-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(121, 240, 234, 0.16);
  background: rgba(121, 240, 234, 0.07);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.capability-media {
  position: relative;
  z-index: 1;
}

.capability-image,
.product-preview {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid rgba(39, 64, 92, 0.82);
  background: #09111f;
}

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

.service-card-rich,
.product-card-visual {
  position: relative;
  overflow: hidden;
}

.service-card-rich::before,
.product-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(121, 240, 234, 0.08), transparent 36%);
  pointer-events: none;
}

.service-card-rich:hover,
.product-card-visual:hover,
.hero-showcase:hover,
.capability-layout:hover {
  border-color: rgba(121, 240, 234, 0.28);
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(121, 240, 234, 0.08);
}

.service-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 28%, rgba(121, 240, 234, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(20, 36, 58, 0.96), rgba(11, 18, 32, 0.98));
  border: 1px solid rgba(121, 240, 234, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-mobile::after,
.icon-platform::after,
.icon-ai::after,
.icon-mvp::after {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--accent-strong);
  font-size: 1.25rem;
  font-weight: 800;
}

.icon-mobile::after {
  content: "M";
}

.icon-platform::after {
  content: "W";
}

.icon-ai::after {
  content: "AI";
  font-size: 0.95rem;
}

.icon-mvp::after {
  content: "P";
}

.service-rail {
  margin-top: 1.2rem;
}

.product-preview {
  margin-bottom: 1.1rem;
}

.product-card-visual .product-meta {
  position: relative;
  z-index: 1;
}

.product-card-visual p {
  position: relative;
  z-index: 1;
}

.brand-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 31rem;
  padding: 1rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(79, 197, 192, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(79, 197, 192, 0.08), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(71, 98, 170, 0.12), transparent 24%),
    transparent;
}

.brand-halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.44;
  pointer-events: none;
  animation: haloDrift 10s ease-in-out infinite;
}

.brand-halo-one {
  width: 15rem;
  height: 15rem;
  top: 0;
  left: 0;
  background: rgba(79, 197, 192, 0.24);
}

.brand-halo-two {
  width: 14rem;
  height: 14rem;
  right: 0;
  bottom: 0;
  background: rgba(59, 103, 223, 0.18);
  animation-delay: -5s;
}

.brand-spotlight {
  position: absolute;
  inset: 18% 16%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(79, 197, 192, 0.16), rgba(79, 197, 192, 0.05) 38%, transparent 70%);
  box-shadow:
    0 0 90px rgba(79, 197, 192, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.18);
  filter: blur(8px);
  animation: spotlightPulse 7.5s ease-in-out infinite;
}

.logo-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  padding: 0;
  border-radius: 2.25rem;
  background: rgba(0, 0, 0, 0.96);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: logoFloat 7.5s ease-in-out infinite;
  overflow: hidden;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 12% 12% -10%;
  z-index: -1;
  border-radius: 2.5rem;
  background:
    radial-gradient(circle at center, rgba(79, 197, 192, 0.12), rgba(79, 197, 192, 0.04) 48%, transparent 74%);
  filter: blur(34px);
  opacity: 0.88;
  animation: auraPulse 6.5s ease-in-out infinite;
}

.logo-image {
  display: block;
  width: 120%;
  margin-left: -10%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(1.04)
    contrast(1.02)
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  clip-path: inset(0 4.5% 0 4.5%);
}

.signal-card,
.story-panel,
.service-card,
.product-card,
.process-card,
.contact-form,
.policy-shell,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 27, 49, 0.78), rgba(7, 12, 25, 0.88));
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 1.4rem 1.5rem;
}

.signal-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

.signal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.signal-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(121, 240, 234, 0.18);
  background: rgba(121, 240, 234, 0.08);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.signal-label,
.panel-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 56rem;
}

.section-heading h2,
.contact-copy h2,
.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy {
  max-width: 60ch;
  margin-top: 1rem;
}

.intro-grid,
.products-section,
.process-section,
.contact-section,
.policy-page main {
  position: relative;
}

.story-grid,
.service-grid,
.product-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

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

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

.story-panel,
.service-card,
.product-card,
.process-card {
  padding: 1.7rem;
}

.story-panel h3,
.service-card h3,
.process-card h3 {
  margin: 0 0 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(121, 240, 234, 0.12);
  border: 1px solid rgba(121, 240, 234, 0.24);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-muted {
  color: #9cb4ff;
  border-color: rgba(156, 180, 255, 0.24);
  background: rgba(90, 115, 194, 0.16);
}

.product-name,
.process-step {
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.process-step {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-strong);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8497aa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(121, 240, 234, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

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

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

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spotlightPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes auraPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes haloDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(10px, -12px, 0);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 1.8rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta {
  display: grid;
  gap: 0.32rem;
  justify-items: start;
  color: var(--text-muted);
}

.footer-meta p,
.footer-meta a,
.footer-copy {
  margin: 0;
  color: var(--text-muted);
}

.footer-copy {
  text-align: right;
}

.policy-page .page-shell {
  width: min(100% - 2rem, 980px);
}

.policy-hero {
  padding: 5rem 0 2rem;
}

.policy-shell {
  padding: 2rem;
}

.policy-copy h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.policy-copy ul {
  padding-left: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header,
  .hero,
  .story-grid,
  .service-grid,
  .product-grid,
  .process-grid,
  .contact-layout,
  .capability-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .button-header {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-showcase {
    min-height: 30rem;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .interactive-panel,
  .brand-halo,
  .brand-spotlight,
  .hero-showcase,
  .capability-layout {
    animation: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, var(--max-width));
  }

  .site-header {
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section {
    padding: 4.3rem 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .button,
  .button-header {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-showcase {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: auto;
  }

  .hero-logo-center {
    min-height: 22rem;
  }

  .capability-layout {
    padding: 1.35rem;
  }

  .capability-chips,
  .service-tags,
  .service-rail {
    gap: 0.5rem;
  }

  .story-panel,
  .service-card,
  .product-card,
  .process-card,
  .contact-form,
  .policy-shell {
    padding: 1.35rem;
  }
}
