:root {
  --ink: #07111f;
  --ink-soft: #132236;
  --blue: #2778ff;
  --cyan: #27d8c6;
  --cyan-light: #c8fff8;
  --paper: #f5f7f8;
  --white: #ffffff;
  --muted: #607083;
  --line: rgba(9, 24, 42, 0.12);
  --radius: 22px;
  --shadow: 0 24px 80px rgba(5, 17, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.page-glow--one {
  width: 630px;
  height: 630px;
  top: -290px;
  right: -210px;
  background: radial-gradient(circle, rgba(39, 216, 198, 0.22), transparent 68%);
}

.page-glow--two {
  width: 420px;
  height: 420px;
  top: 390px;
  left: -280px;
  background: radial-gradient(circle, rgba(39, 120, 255, 0.13), transparent 70%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(245, 247, 248, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: 18px;
}

.brand img {
  width: 42px;
}

.brand strong {
  color: #168f8d;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #344356;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  padding: 12px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: white;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 17, 31, 0.18);
  background: var(--ink-soft);
}

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 9px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 60px;
  padding-top: 46px;
  padding-bottom: 92px;
}

.eyebrow,
.section-number {
  color: #148d8b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-box h2 {
  margin: 24px 0 22px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.5vw, 77px);
}

.hero h1 em {
  color: #158f8e;
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: #168f8d;
  font-size: 18px;
}

.hero-proof {
  display: flex;
  gap: 36px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  gap: 5px;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.hero-proof span {
  color: #7b8795;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 35px 25px 28px 30px;
  border-radius: 50% 42% 48% 44%;
  background:
    linear-gradient(140deg, rgba(39, 216, 198, 0.18), rgba(39, 120, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(22, 143, 141, 0.05) 40px);
  transform: rotate(-5deg);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(17, 144, 141, 0.17);
  border-radius: 50%;
}

.orbit--one {
  inset: 45px 7px 4px 40px;
  transform: rotate(18deg);
}

.orbit--two {
  inset: 105px 65px 42px 0;
  transform: rotate(-23deg);
}

.glass-card {
  position: absolute;
  top: 70px;
  left: 5px;
  width: 78%;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 70px rgba(3, 25, 46, 0.15);
  backdrop-filter: blur(14px);
  transform: perspective(900px) rotateY(9deg) rotateZ(-3deg);
  overflow: hidden;
}

.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  background: rgba(8, 23, 41, 0.96);
}

.window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #445263;
}

.window-bar i:first-child {
  background: var(--cyan);
}

.window-bar span {
  margin-left: auto;
  color: #8795a5;
  font-size: 8px;
}

.code-content {
  padding: 48px 36px;
}

.code-line {
  height: 9px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #d9e0e7;
}

.code-line--bright {
  background: linear-gradient(90deg, var(--cyan), #70e6dc);
}

.w-45 { width: 45%; }
.w-72 { width: 72%; }
.w-58 { width: 58%; }

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

.mini-grid span {
  height: 92px;
  border-radius: 10px;
  background: linear-gradient(160deg, #eef2f5, #dae4ea);
}

.mini-grid span:nth-child(2) {
  background: linear-gradient(160deg, #d7fbf6, #b4ebe6);
}

.phone-card {
  position: absolute;
  z-index: 3;
  width: 180px;
  height: 360px;
  right: 5px;
  top: 125px;
  padding: 38px 22px 20px;
  border: 6px solid #081525;
  border-radius: 34px;
  color: white;
  background: linear-gradient(165deg, #0e243a, #07111f);
  box-shadow: 0 32px 60px rgba(4, 19, 34, 0.28);
  transform: rotate(7deg);
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 50px;
  height: 5px;
  border-radius: 6px;
  background: #2c3a4b;
  transform: translateX(-50%);
}

.app-mark {
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  margin: 27px auto 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.app-mark img {
  width: 43px;
}

.phone-line {
  height: 8px;
  margin: 12px auto;
  border-radius: 8px;
  background: #2c4053;
}

.phone-line.short {
  width: 66%;
}

.phone-button {
  height: 38px;
  margin-top: 42px;
  border-radius: 9px;
  background: linear-gradient(90deg, #18a9a2, var(--cyan));
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(10, 36, 54, 0.14);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.chip--top {
  top: 55px;
  right: 12px;
  padding: 11px 14px;
}

.chip--top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28cda6;
  box-shadow: 0 0 0 4px rgba(40, 205, 166, 0.15);
}

.chip--bottom {
  left: 25px;
  bottom: 43px;
  padding: 14px 17px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.chip--bottom span {
  margin-left: -8px;
  color: #14918e;
  font-size: 15px;
}

.chip--bottom small {
  color: #778493;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.trust-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-content p {
  color: #7d8996;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tech-list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4.2vw, 60px);
}

.tech-list span {
  color: #586779;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.section {
  padding-top: 130px;
  padding-bottom: 130px;
  scroll-margin-top: 70px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.about-copy h2 {
  max-width: 710px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 59px);
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 445px;
  padding: 38px 34px 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -90px;
  right: -80px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39, 216, 198, 0.42);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 0.12;
}

.service-card--featured {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 25px 60px rgba(5, 17, 32, 0.16);
}

.service-card--featured p,
.service-card--featured li,
.service-card--featured > span {
  color: #9eacba;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 15px;
  color: #118c89;
  background: #d8faf6;
}

.service-card--featured .service-icon {
  color: var(--cyan);
  background: rgba(39, 216, 198, 0.12);
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card > span {
  position: absolute;
  top: 43px;
  right: 34px;
  color: #a1abb5;
  font-size: 11px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 17px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.service-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  color: #526172;
  font-size: 12px;
}

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

.process-section {
  color: white;
  background:
    radial-gradient(circle at 95% 0%, rgba(39, 216, 198, 0.12), transparent 29%),
    var(--ink);
}

.section-heading--light > p,
.process-step p {
  color: #8f9eae;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(39, 216, 198, 0.08));
}

.process-step {
  position: relative;
}

.process-step > span {
  color: #637487;
  font-size: 11px;
  font-weight: 700;
}

.process-dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin: 24px 0 35px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.process-step h3 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.process-step p {
  max-width: 230px;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 20px;
}

.project {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 50px rgba(5, 17, 32, 0.07);
}

.project-art {
  position: relative;
  height: 390px;
  overflow: hidden;
}

.project-art--mobile {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(145deg, #1ed0be, #0d8d94);
}

.project-phone {
  position: absolute;
  width: 190px;
  height: 375px;
  padding: 8px;
  border: 7px solid #07111f;
  border-radius: 32px;
  background: #07111f;
  box-shadow: 0 25px 50px rgba(0, 32, 41, 0.28);
}

.project-phone--back {
  top: 56px;
  left: calc(50% - 185px);
  transform: rotate(-10deg);
}

.project-phone--front {
  top: 32px;
  left: calc(50% - 15px);
  transform: rotate(8deg);
}

.project-screen {
  height: 100%;
  border-radius: 20px;
}

.screen--dark {
  background:
    linear-gradient(160deg, transparent 45%, rgba(39, 216, 198, 0.4)),
    #0d2133;
}

.screen--light {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 22px;
  background: #f3f7f8;
}

.screen--light i {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  background: linear-gradient(140deg, #1fd3c1, #13858e);
}

.screen--light b {
  width: 85%;
  height: 9px;
  margin: 40px 0 12px;
  border-radius: 6px;
  background: #cdd9df;
}

.screen--light span {
  width: 100%;
  height: 38px;
  margin-top: 13px;
  border-radius: 9px;
  background: #e1e8eb;
}

.screen--light span:last-child {
  background: #16aaa3;
}

.project-art--dashboard {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #dfe8ed, #c3d3dc);
}

.dashboard-window {
  width: 86%;
  height: 245px;
  display: grid;
  grid-template-columns: 24% 76%;
  border: 5px solid white;
  border-radius: 15px;
  background: white;
  box-shadow: 0 26px 50px rgba(20, 49, 67, 0.2);
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  overflow: hidden;
}

.dashboard-sidebar {
  background: #0a1929;
}

.dashboard-main {
  padding: 26px 20px;
  background: #f5f8f9;
}

.dashboard-main > i {
  display: inline-block;
  width: 40%;
  height: 34px;
  margin-right: 8px;
  border-radius: 7px;
  background: white;
}

.chart {
  height: 125px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 7px;
  margin-top: 25px;
  padding: 15px 12px 0;
  border-radius: 8px;
  background: white;
}

.chart span {
  width: 15%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#28d8c6, #118b8c);
}

.project-info {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 30px;
}

.project-info span {
  color: #168f8d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 7px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.project-info .project-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 18px;
}

.apps-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(39, 216, 198, 0.12), transparent 26%),
    #e9edef;
}

.apps-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.store-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.store-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.store-profile-link span {
  color: #168f8d;
}

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

.app-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid rgba(9, 24, 42, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(5, 17, 32, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.app-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 216, 198, 0.5);
  box-shadow: 0 26px 60px rgba(5, 17, 32, 0.12);
}

.app-icon {
  width: 88px;
  height: 88px;
  border-radius: 21px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(5, 17, 32, 0.17);
}

.app-card-copy {
  margin-top: 28px;
}

.app-card-copy > span {
  color: #168f8d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.app-card h3 {
  margin: 8px 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.store-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.store-button {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  color: white;
  background: #07111f;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #14263a;
}

.store-button svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.store-button--apple svg {
  fill: white;
}

.store-button span {
  display: grid;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.store-button small {
  color: #aeb8c3;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .store-buttons {
    grid-template-columns: 1fr;
  }
}

.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 130px;
  align-items: center;
}

.about-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 36px;
}

.about-values span {
  color: #38495a;
  font-size: 12px;
  font-weight: 700;
}

.about-values i {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  color: #087d7a;
  background: #d4faf5;
  font-style: normal;
}

.about-quote {
  position: relative;
  padding: 50px 45px;
  border-radius: var(--radius);
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(39, 216, 198, 0.18), transparent 36%),
    var(--ink);
}

.quote-mark {
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 80px;
  line-height: 0.7;
}

.about-quote blockquote {
  margin: 25px 0 40px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.signature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signature img {
  width: 40px;
}

.signature div {
  display: grid;
  gap: 3px;
}

.signature strong {
  font-size: 12px;
}

.signature span {
  color: #8495a7;
  font-size: 10px;
}

.contact-section {
  padding: 110px 0;
  background: #e9edef;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 65px 70px;
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 92% 0, rgba(39, 216, 198, 0.24), transparent 30%),
    linear-gradient(120deg, #081524, #10283f);
  box-shadow: 0 30px 70px rgba(5, 17, 32, 0.14);
}

.contact-box .section-number {
  color: var(--cyan);
}

.contact-box h2 {
  max-width: 650px;
  margin: 18px 0 14px;
  font-size: clamp(37px, 4vw, 56px);
}

.contact-box p {
  margin: 0;
  color: #93a3b3;
  font-size: 14px;
}

.button--light {
  flex: none;
  color: var(--ink);
  border-color: white;
  background: white;
}

.button--light:hover {
  color: white;
  background: transparent;
}

.site-footer {
  padding: 75px 0 28px;
  color: #9eacba;
  background: #050d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-bottom: 65px;
}

.brand--footer {
  color: white;
}

.footer-grid > div > p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 9px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .main-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

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

  .hero-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 60px;
  }

  .process-grid::before {
    display: none;
  }

  .process-dot {
    margin-bottom: 22px;
  }

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

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

  .about-grid {
    gap: 60px;
  }

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

@media (max-width: 760px) {
  .page-glow {
    display: none;
  }

  .container {
    width: min(100% - 32px, 620px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 28px;
    background: rgba(245, 247, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(4, 16, 30, 0.13);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: 0.25s ease;
  }

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

  .main-nav > a:not(.button) {
    padding: 16px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
    gap: 25px;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-proof {
    gap: 20px;
    justify-content: space-between;
  }

  .hero-proof div:nth-child(3) {
    display: none;
  }

  .hero-visual {
    min-height: 420px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .glass-card {
    width: 82%;
    height: 290px;
  }

  .phone-card {
    width: 150px;
    height: 310px;
    right: -5px;
  }

  .chip--bottom {
    bottom: 10px;
  }

  .trust-content {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }

  .tech-list {
    width: 100%;
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .services-grid,
  .process-grid,
  .apps-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 400px;
  }

  .process-grid {
    gap: 42px;
  }

  .process-step {
    padding-left: 35px;
  }

  .process-step > span {
    position: absolute;
    left: 0;
  }

  .process-dot {
    position: absolute;
    left: 0;
    top: 18px;
  }

  .project-art {
    height: 335px;
  }

  .about-grid {
    gap: 50px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .contact-box {
    padding: 45px 30px;
  }

  .button--light {
    width: 100%;
    padding-inline: 13px;
    font-size: 12px;
  }

  .footer-grid {
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 37px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .text-link {
    width: fit-content;
  }

  .hero-visual {
    width: 110%;
    margin-left: -5%;
    transform: scale(0.78);
  }

  .project-phone {
    width: 155px;
    height: 315px;
  }

  .project-phone--back {
    left: calc(50% - 150px);
  }

  .project-phone--front {
    left: calc(50% - 10px);
  }

  .project-info {
    padding-inline: 22px;
  }

  .project-info h3 {
    font-size: 17px;
  }

  .about-quote {
    padding: 42px 28px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
