:root {
  --bg: #09090b;
  --bg-soft: #111116;
  --card: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.10);
  --text: #f6f7fb;
  --muted: #a6a8b3;
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --max-width: 1180px;
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 5%, rgba(139, 92, 246, 0.13), transparent 30%),
    radial-gradient(circle at 15% 22%, rgba(34, 211, 238, 0.07), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

ul {
  list-style: none;
}

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

.section {
  padding: 120px 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(9, 9, 11, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(9, 9, 11, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #c7c9d2;
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: transform 0.25s ease;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c9cbd4;
  font-size: 0.85rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.2rem, 6.6vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: -0.068em;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff 0%, #a78bfa 48%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: white;
  color: #0c0c0f;
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.12);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 31px;
  color: #8d909c;
  font-size: 0.84rem;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: #9f7aea;
}

.hero-visual {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.orb-one {
  width: 330px;
  height: 330px;
  background: rgba(139, 92, 246, 0.21);
  top: 80px;
  right: 40px;
}

.orb-two {
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.13);
  bottom: 70px;
  left: 20px;
}

.browser-card {
  width: min(100%, 540px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(20, 20, 26, 0.78);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  transform: perspective(1000px) rotateY(-7deg) rotateX(4deg);
}

.browser-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.browser-url {
  flex: 1;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.68rem;
  text-align: center;
}

.browser-content {
  min-height: 390px;
  padding: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.18), transparent 28%),
    #0d0d12;
}

.mini-nav {
  display: flex;
  justify-content: space-between;
}

.mini-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mini-links {
  display: flex;
  gap: 10px;
}

.mini-links span {
  width: 30px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-hero {
  padding: 50px 0 36px;
}

.mini-kicker {
  width: 90px;
  height: 8px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.65);
}

.mini-title {
  width: 62%;
  height: 23px;
  margin-bottom: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
}

.mini-title.wide {
  width: 86%;
}

.mini-text {
  width: 71%;
  height: 7px;
  margin-top: 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.mini-text.short {
  width: 49%;
  margin-top: 7px;
}

.mini-buttons {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.mini-buttons span {
  width: 92px;
  height: 28px;
  border-radius: 999px;
  background: white;
}

.mini-buttons span:last-child {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-grid div {
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(20, 20, 26, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(15px);
}

.floating-card strong {
  font-size: 1.15rem;
}

.floating-card span {
  display: block;
  color: #9ea1ad;
  font-size: 0.7rem;
}

.card-speed {
  top: 98px;
  left: -8px;
}

.card-speed strong {
  color: #4ade80;
}

.card-growth {
  right: -6px;
  bottom: 108px;
}

.growth-icon {
  width: 32px;
  height: 32px;
  display: grid !important;
  place-items: center;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.17);
  color: #b7a0ff !important;
  font-size: 1rem !important;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 80px;
  color: #6f727d;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.logo-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3b3c43;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #9f7aea;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.process-intro h2,
.contact-card h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading p,
.process-intro p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 390px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(139, 92, 246, 0.45);
}

.service-card.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.22), transparent 32%),
    rgba(255, 255, 255, 0.065);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #5f616c;
  font-size: 0.8rem;
}

.service-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin-bottom: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.2rem;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin-top: 27px;
  color: #c6c8d0;
  font-size: 0.86rem;
}

.service-card li::before {
  content: "—";
  margin-right: 9px;
  color: #7c5ce4;
}

.work {
  background: #f3f3f6;
  color: #111116;
}

.work .section-label {
  color: #6d46da;
}

.work .section-heading p {
  color: #696b74;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-card {
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: 0 25px 60px rgba(15, 15, 20, 0.08);
}

.project-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 45px;
}

.project-one .project-visual {
  background: linear-gradient(145deg, #cfb8ff, #efe7ff);
}

.project-two .project-visual {
  background: linear-gradient(145deg, #9ee6ee, #dff9fb);
}

.project-window {
  width: 100%;
  min-height: 285px;
  padding: 28px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 30px 70px rgba(66, 43, 110, 0.18);
  transform: rotate(-2deg);
}

.dark-window {
  background: #11141a;
  transform: rotate(2deg);
}

.project-bar {
  width: 100%;
  height: 11px;
  margin-bottom: 50px;
  border-radius: 999px;
  background: rgba(20, 20, 30, 0.08);
}

.project-badge {
  width: 73px;
  height: 23px;
  margin-bottom: 40px;
  border-radius: 99px;
  background: rgba(34, 211, 238, 0.2);
}

.project-line {
  width: 65%;
  height: 12px;
  margin-bottom: 11px;
  border-radius: 99px;
  background: rgba(20, 20, 30, 0.12);
}

.project-line.large {
  width: 84%;
  height: 31px;
  margin-bottom: 18px;
  background: rgba(20, 20, 30, 0.88);
}

.dark-window .project-line {
  background: rgba(255, 255, 255, 0.13);
}

.dark-window .project-line.large {
  background: rgba(255, 255, 255, 0.9);
}

.project-line.small {
  width: 43%;
}

.project-button {
  width: 110px;
  height: 34px;
  margin-top: 30px;
  border-radius: 999px;
  background: #7c4ce4;
}

.dark-window .project-button {
  background: #5ce1e6;
}

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 30px 31px;
}

.project-info span {
  color: #777982;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.project-info h3 {
  margin-top: 4px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.project-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111116;
  color: white !important;
  font-size: 1rem !important;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro p {
  max-width: 420px;
  margin-top: 24px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item > span {
  color: #7057bd;
  font-size: 0.78rem;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.process-item p {
  max-width: 560px;
  color: var(--muted);
}

.contact {
  padding-top: 50px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 90px 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 75% 30%, rgba(34, 211, 238, 0.16), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(139, 92, 246, 0.25), transparent 35%),
    #121218;
}

.contact-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  top: -100px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.22);
  filter: blur(30px);
}

.contact-card h2 {
  max-width: 820px;
}

.contact-card > p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.button-light {
  background: white;
  color: #0b0b0e;
}

.contact-email {
  color: #c6c8d0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 25px;
  color: #858792;
  font-size: 0.84rem;
}

.footer-inner > p {
  text-align: center;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-heading,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

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

  .section-heading {
    gap: 22px;
  }

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

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

  .service-icon {
    margin-bottom: 38px;
  }

  .process-grid {
    gap: 50px;
  }

  .process-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 88px 0;
  }

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

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(15, 15, 20, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

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

  .browser-card {
    transform: none;
  }

  .floating-card {
    transform: scale(0.85);
  }

  .card-speed {
    left: -13px;
    top: 50px;
  }

  .card-growth {
    right: -14px;
    bottom: 42px;
  }

  .logo-strip {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 50px;
  }

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

  .project-visual {
    min-height: 330px;
    padding: 26px;
  }

  .contact-card {
    padding: 60px 28px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-inner > p {
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 10px 16px;
  }

  .browser-content {
    min-height: 330px;
    padding: 22px;
  }

  .mini-grid div {
    height: 60px;
  }

  .project-window {
    min-height: 245px;
  }

  .process-item {
    grid-template-columns: 45px 1fr;
  }
}

.project-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(15, 15, 20, 0.13);
}
