* {
  box-sizing: border-box;
}

:root {
  --bg: #0b0e12;
  --panel: #11161c;
  --panel-2: #171d24;
  --text: #f6f7f8;
  --muted: #9aa4b2;
  --line: rgba(255,255,255,.1);
  --accent: #a7f36b;
  --accent-dark: #12210b;
  --white: #ffffff;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

button, input, textarea {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image:
    radial-gradient(rgba(255,255,255,.7) .5px, transparent .5px);
  background-size: 8px 8px;
  z-index: 999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(11,14,18,.75);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0d10;
  border-radius: 11px;
  font-size: 13px;
  letter-spacing: -.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: #c7ced6;
}

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

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.menu-toggle {
  display: none;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 24px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 74% 28%, rgba(167,243,107,.10), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,.018), transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
}

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

h1 {
  font-size: clamp(50px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
  margin-bottom: 28px;
  max-width: 900px;
}

h1 span {
  color: #aab3be;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 13px;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #0a0d10;
  border-color: transparent;
}

.btn-secondary {
  background: rgba(255,255,255,.03);
  color: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-row strong {
  font-size: 13px;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
}

.hero-panel {
  position: relative;
}

.browser-card {
  background: linear-gradient(145deg, #161c23, #0f1318);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  overflow: hidden;
}

.browser-top {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

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

.browser-url {
  margin-left: 12px;
  background: rgba(255,255,255,.05);
  color: #7d8793;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  flex: 1;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 26px;
}

.arrow {
  color: var(--accent);
  font-weight: 800;
}

.mini-panel {
  min-height: 325px;
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.mini-label {
  font-size: 10px;
  color: #7c8590;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.old {
  background: #e8e6df;
}

.old-title {
  width: 70%;
  height: 22px;
  background: #595959;
  margin-top: 42px;
}

.old-line {
  width: 92%;
  height: 8px;
  background: #9a9a95;
  margin-top: 14px;
}

.old-line.short {
  width: 63%;
}

.old-box {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 118px;
  background: #cac7bd;
  border: 1px solid #aaa69c;
}

.new {
  background:
    radial-gradient(circle at 70% 20%, rgba(167,243,107,.22), transparent 26%),
    #0b0f13;
  border: 1px solid rgba(255,255,255,.08);
}

.new-kicker {
  width: 38%;
  height: 5px;
  background: var(--accent);
  margin-top: 36px;
}

.new-title {
  width: 92%;
  height: 18px;
  background: #f4f6f8;
  margin-top: 18px;
}

.new-title.short {
  width: 65%;
  margin-top: 7px;
}

.new-button {
  width: 48%;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  margin-top: 22px;
}

.new-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 95px;
  background: #141a20;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
}

.panel-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px 22px;
  color: #919ba7;
  font-size: 12px;
  border-top: 1px solid var(--line);
}

.panel-caption strong {
  color: var(--text);
}

.logo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.logo-strip p {
  margin: 0;
  padding: 24px 0;
  color: #b3bbc5;
  text-align: center;
  font-size: 14px;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: #080b0e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2,
.about-grid h2,
.contact-grid h2,
.pricing-box h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -.05em;
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  margin-bottom: 4px;
  max-width: 460px;
}

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

.service-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 250px;
}

.service-card .icon {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 42px;
}

.service-card h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.project-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.project-visual {
  min-height: 320px;
  padding: 34px;
}

.event-visual {
  min-height: 430px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, transparent 15%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.22), transparent 16%),
    radial-gradient(circle at 72% 34%, rgba(167,243,107,.35), transparent 18%),
    linear-gradient(145deg, #502b7b, #151521 50%, #0c0d11);
}

.event-ui span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
}

.event-ui h3 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 14px 0 22px;
}

.event-button {
  display: inline-flex;
  background: var(--white);
  color: #111;
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.concept-visual {
  background:
    radial-gradient(circle at 80% 14%, rgba(167,243,107,.18), transparent 22%),
    #eae9e4;
  color: #171717;
}

.concept-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #686868;
}

.concept-title {
  margin-top: 76px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.concept-lines {
  width: 84%;
  height: 44px;
  margin-top: 16px;
  background:
    linear-gradient(#999 0 0) 0 0 / 100% 5px no-repeat,
    linear-gradient(#aaa 0 0) 0 16px / 74% 5px no-repeat,
    linear-gradient(#aaa 0 0) 0 32px / 56% 5px no-repeat;
}

.concept-btn {
  width: 120px;
  height: 36px;
  border-radius: 8px;
  background: #141414;
  margin-top: 24px;
}

.project-copy {
  padding: 24px 26px 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.project-copy.compact {
  grid-template-columns: 1fr;
}

.project-copy h3 {
  margin: 6px 0 0;
  font-size: 21px;
  letter-spacing: -.03em;
}

.project-copy p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.tag {
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 30px 28px 34px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 38px 0 12px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.process-step p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.pricing-section {
  padding-top: 0;
}

.pricing-box {
  background:
    radial-gradient(circle at 86% 20%, rgba(167,243,107,.13), transparent 28%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.pricing-box h2 span {
  color: var(--accent);
}

.pricing-box p {
  max-width: 700px;
  color: var(--muted);
  margin: 18px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.about-copy {
  max-width: 650px;
}

.about-copy .lead {
  color: var(--white);
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.about-copy p {
  color: var(--muted);
}

.contact-section {
  background: #0f1419;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

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

.contact-form {
  background: #0a0d11;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}

.contact-form label {
  display: block;
  color: #c9d0d8;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 17px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(255,255,255,.11);
  background: #11161b;
  color: var(--white);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(167,243,107,.7);
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 5px;
}

.contact-form small {
  display: block;
  color: #68727d;
  font-size: 10px;
  margin-top: 12px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-right a:hover {
  color: var(--white);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: #0e1318;
    border: 1px solid var(--line);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-heading,
  .portfolio-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

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

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .pricing-box {
    align-items: start;
    flex-direction: column;
  }
}

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

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: 48px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .before-after {
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .mini-panel {
    min-height: 230px;
  }

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

  .process-step,
  .process-step + .process-step {
    padding: 26px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    gap: 24px;
  }

  .project-copy {
    grid-template-columns: 1fr;
  }

  .pricing-box,
  .contact-form {
    padding: 22px;
  }

  .footer-wrap,
  .footer-right {
    align-items: flex-start;
    flex-direction: column;
  }
}


.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.6;
}

.form-status.success {
  display: block;
  background: rgba(167, 243, 107, .08);
  border: 1px solid rgba(167, 243, 107, .28);
  color: #dfffc8;
}

.form-status.error {
  display: block;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #f4f6f8;
}

.form-submit:disabled {
  cursor: default;
  opacity: .78;
  transform: none;
}
