:root {
  color-scheme: dark;
  --bg: #06111d;
  --bg-soft: #0a1828;
  --panel: #0d1f33;
  --panel-strong: #122a45;
  --line: rgba(128, 169, 225, 0.24);
  --text: #f5f8ff;
  --muted: #b7c3d6;
  --faint: #7e8da6;
  --blue: #347dff;
  --cyan: #45c7ff;
  --violet: #8b6dff;
  --green: #3bd6a2;
  --white-soft: rgba(245, 248, 255, 0.84);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(110deg, rgba(69, 199, 255, 0.05) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 78% 9%, rgba(52, 125, 255, 0.26), transparent 31rem),
    radial-gradient(circle at 18% 46%, rgba(69, 199, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 68% 76%, rgba(139, 109, 255, 0.12), transparent 27rem),
    linear-gradient(180deg, #050b13 0%, var(--bg) 42%, #07101b 100%);
  background-size: auto, auto, auto, auto, 100% 100%;
  color: var(--text);
  letter-spacing: 0;
}

::selection {
  color: #fff;
  background: rgba(52, 125, 255, 0.64);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: #07111e;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

.site-header,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(5, 11, 19, 0.92), rgba(5, 11, 19, 0.72));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(128, 169, 225, 0.14);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 11, 19, 0.95), rgba(5, 11, 19, 0.74));
  border-bottom: 1px solid rgba(128, 169, 225, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 184px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 15px rgba(69, 199, 255, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

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

.nav a {
  position: relative;
  padding: 28px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-location {
  color: var(--faint);
  font-size: 12px;
}

.header-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, #4aa3ff, #2967ff);
  box-shadow: 0 12px 34px rgba(52, 125, 255, 0.32);
}

.header-cta::after,
.button.primary::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

.header-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 42px rgba(52, 125, 255, 0.44);
}

.header-cta:hover::after,
.button.primary:hover::after {
  transform: translateX(3px);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button.secondary:hover {
  border-color: rgba(128, 169, 225, 0.48);
  background: rgba(255, 255, 255, 0.065);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  overflow: hidden;
}

.section-frame {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  border-bottom: 1px solid rgba(128, 169, 225, 0.18);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 62px;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 199, 255, 0.55), rgba(139, 109, 255, 0.34), transparent);
}

.hero-atmosphere {
  position: absolute;
  inset: 88px -8% 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ridge {
  position: absolute;
  left: 20%;
  right: 4%;
  bottom: 160px;
  height: 300px;
  opacity: 0.42;
  filter: blur(0.4px);
  background: linear-gradient(180deg, rgba(102, 146, 211, 0.42), rgba(10, 24, 40, 0.08));
  clip-path: polygon(0 100%, 8% 68%, 16% 78%, 27% 42%, 36% 66%, 45% 28%, 53% 58%, 61% 38%, 70% 70%, 82% 31%, 91% 62%, 100% 40%, 100% 100%);
}

.ridge-b {
  left: 0;
  right: 12%;
  bottom: 120px;
  height: 250px;
  opacity: 0.26;
  transform: scaleX(-1);
}

.mist {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 76px;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 29, 0.22) 34%, rgba(6, 17, 29, 0.88));
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

h1 span {
  color: #72a0ff;
  background: linear-gradient(115deg, #4fc9ff, #647eff 55%, #9b7cff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.hero-lead,
.section-heading p,
.project-lead,
.studio-copy p,
.contact p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.hero-points div {
  min-height: 76px;
  padding: 8px 18px 8px 52px;
  position: relative;
  border-left: 1px solid var(--line);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points i {
  width: 34px;
  height: 34px;
  position: absolute;
  left: 8px;
  top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(69, 199, 255, 0.34);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(69, 199, 255, 0.07);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.hero-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -30% -2% -18%;
  background:
    radial-gradient(circle at 48% 36%, rgba(73, 130, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, transparent 0 24%, rgba(69, 199, 255, 0.28) 24.2%, transparent 24.8% 100%),
    linear-gradient(154deg, transparent 0 56%, rgba(139, 109, 255, 0.32) 56.2%, transparent 56.9% 100%);
  opacity: 0.92;
}

.orbit-line {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(128, 169, 225, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(0.67);
  box-shadow: 0 0 80px rgba(52, 125, 255, 0.12);
}

.signal-line {
  position: absolute;
  height: 1px;
  width: 430px;
  background: linear-gradient(90deg, transparent, rgba(69, 199, 255, 0.56), transparent);
  transform-origin: center;
  opacity: 0.58;
}

.signal-a {
  right: -120px;
  top: 150px;
  transform: rotate(-27deg);
}

.signal-b {
  right: -84px;
  bottom: 132px;
  transform: rotate(-16deg);
}

.phone {
  position: absolute;
  width: 228px;
  height: 470px;
  border-radius: 38px;
  border: 1px solid rgba(219, 232, 255, 0.52);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(160deg, #1b2f4d, #060b12 64%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(52, 125, 255, 0.18),
    inset 0 0 0 7px #050910,
    inset 0 0 0 9px rgba(255, 255, 255, 0.08);
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 72%, rgba(69, 199, 255, 0.10));
  mix-blend-mode: screen;
}

.phone::after {
  content: "";
  position: absolute;
  top: 92px;
  right: -5px;
  width: 4px;
  height: 78px;
  border-radius: 4px;
  background: rgba(219, 232, 255, 0.26);
}

.phone-front {
  left: 11%;
  top: 6%;
  padding: 28px 22px;
  transform: rotate(7deg) rotateY(-12deg);
  overflow: hidden;
}

.hero-visual:hover .phone-front {
  transform: rotate(5deg) rotateY(-8deg) translateY(-8px);
}

.hero-visual:hover .phone-back {
  transform: rotate(-14deg) rotateY(16deg) translate(8px, 5px);
}

.phone-back {
  right: 7%;
  top: 14%;
  transform: rotate(-12deg) rotateY(12deg);
}

.notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 82px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  transform: translateX(-50%);
  background: #02050a;
}

.phone-status {
  color: var(--muted);
  font-size: 12px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.status-icons {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.screen-logo {
  width: 30px;
  height: 41px;
  margin-top: 38px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 12px rgba(69, 199, 255, 0.42));
}

.screen-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.screen-landscape {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 70px;
  height: 172px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(40, 92, 174, 0.42), rgba(6, 17, 29, 0.12) 50%, rgba(44, 98, 170, 0.25)),
    linear-gradient(140deg, #172b45, #050a12);
}

.screen-landscape::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 2px),
    linear-gradient(180deg, rgba(84, 139, 223, 0.34), rgba(11, 32, 55, 0.16));
}

.screen-mountain {
  position: absolute;
  bottom: 42px;
  width: 170px;
  height: 106px;
  background: linear-gradient(145deg, rgba(205, 225, 255, 0.56), rgba(28, 62, 104, 0.28) 42%, rgba(8, 20, 35, 0.74));
  clip-path: polygon(0 100%, 48% 0, 100% 100%);
}

.screen-mountain.m1 {
  left: -10px;
}

.screen-mountain.m2 {
  right: -18px;
  width: 194px;
  height: 132px;
  opacity: 0.9;
}

.screen-water {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 34px;
  height: 1px;
  background: rgba(219, 232, 255, 0.42);
  box-shadow: 0 12px 18px rgba(69, 199, 255, 0.26);
}

.phone-front p {
  margin: 190px 0 24px;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 700;
  position: relative;
  z-index: 3;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.42);
}

.screen-list {
  display: grid;
  gap: 10px;
}

.screen-list span {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.095);
  color: var(--muted);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.screen-list i {
  color: var(--cyan);
  font-size: 9px;
  font-style: normal;
}

.camera-grid {
  position: absolute;
  top: 42px;
  right: 28px;
  display: grid;
  grid-template-columns: repeat(2, 34px);
  gap: 10px;
}

.camera-grid span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 6px solid #1f324f;
  background: #02050a;
}

.device-brand {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.24;
}

.device-brand img {
  width: 50px;
  height: auto;
}

.hand-note {
  position: absolute;
  right: -10px;
  top: 104px;
  width: 190px;
  color: #e0e9ff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  transform: rotate(-5deg);
  opacity: 0.96;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 22px rgba(69, 199, 255, 0.26);
}

.hand-note::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--cyan), rgba(185, 202, 255, 0.18));
}

.services,
.project,
.studio,
.process,
.faq,
.contact {
  padding: 56px 0;
  position: relative;
}

.technology-strip {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(128, 169, 225, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(69, 199, 255, 0.07), transparent 34%),
    rgba(9, 24, 40, 0.58);
}

.technology-strip .eyebrow {
  margin-bottom: 8px;
}

.technology-strip h3,
.technology-strip p {
  margin-bottom: 0;
}

.technology-strip p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.technology-strip ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
}

.technology-strip li {
  padding: 8px 11px;
  border: 1px solid rgba(69, 199, 255, 0.24);
  border-radius: 6px;
  color: var(--white-soft);
  background: rgba(52, 125, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 26px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.service-card,
.process-steps div {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(69, 199, 255, 0.08), transparent 36%),
    rgba(13, 31, 51, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: width 180ms ease, opacity 180ms ease;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card:hover,
.process-steps div:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 199, 255, 0.42);
}

.service-card:hover::after {
  width: 42px;
  opacity: 1;
}

.service-card.highlighted {
  border-color: rgba(139, 109, 255, 0.65);
  background: linear-gradient(160deg, rgba(139, 109, 255, 0.20), rgba(13, 31, 51, 0.78));
}

.service-icon,
.process-steps span {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--cyan);
  border: 1px solid rgba(69, 199, 255, 0.36);
  background: rgba(69, 199, 255, 0.07);
  font-weight: 800;
}

.service-icon {
  font-size: 19px;
}

.service-icon.code-icon {
  width: 54px;
  font-size: 14px;
}

.service-card p,
.process-steps p,
.studio-list span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.project,
.studio,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: 46px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.project-visual {
  min-height: 330px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 201, 160, 0.22), transparent 12rem),
    linear-gradient(145deg, rgba(139, 109, 255, 0.43), transparent 34%),
    linear-gradient(20deg, #12314a, #07111e 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), var(--shadow);
}

.project-landscape {
  position: absolute;
  inset: 0;
  opacity: 0.86;
  background:
    linear-gradient(180deg, transparent 44%, rgba(6, 17, 29, 0.44)),
    radial-gradient(circle at 74% 24%, rgba(255, 211, 177, 0.54), transparent 18%),
    linear-gradient(148deg, rgba(141, 103, 214, 0.48), transparent 48%);
}

.project-landscape::before,
.project-landscape::after {
  content: "";
  position: absolute;
  left: 38%;
  right: -8%;
  bottom: 0;
  height: 68%;
  clip-path: polygon(0 100%, 27% 42%, 42% 68%, 68% 18%, 100% 100%);
  background: linear-gradient(160deg, rgba(200, 185, 231, 0.82), rgba(46, 70, 126, 0.64) 48%, rgba(8, 22, 37, 0.9));
}

.project-landscape::after {
  left: -8%;
  right: 45%;
  height: 48%;
  opacity: 0.55;
  transform: scaleX(-1);
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: auto -6% -18% 22%;
  height: 210px;
  background: linear-gradient(180deg, rgba(255, 197, 154, 0.74), rgba(52, 125, 255, 0.26) 58%, transparent);
  clip-path: polygon(0 100%, 42% 18%, 60% 58%, 78% 4%, 100% 100%);
}

.app-panel,
.task-panel {
  position: absolute;
  z-index: 2;
  width: 220px;
  border: 1px solid rgba(219, 232, 255, 0.24);
  border-radius: 30px;
  background: rgba(6, 17, 29, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.app-panel::after,
.task-panel::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 23px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 62px;
  height: 15px;
  border-radius: 0 0 10px 10px;
  background: #02050a;
  transform: translateX(-50%);
}

.app-panel > small,
.task-panel > small {
  position: absolute;
  left: 21px;
  top: 17px;
  color: rgba(245, 248, 255, 0.62);
  font-size: 8px;
}

.app-panel {
  left: 12%;
  top: 38px;
  height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  transform: rotate(-6deg);
}

.app-symbol {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(59, 214, 162, 0.18);
  color: var(--green);
  font-weight: 900;
  font-size: 30px;
}

.app-panel h3 {
  font-size: 34px;
}

.app-panel p {
  color: var(--muted);
}

.task-panel {
  right: 10%;
  top: 70px;
  min-height: 255px;
  padding: 26px;
  transform: rotate(7deg);
}

.task-panel span,
.task-panel strong {
  display: block;
}

.task-panel span {
  margin-bottom: 18px;
  color: var(--muted);
}

.task-panel span b {
  float: right;
  color: #fff;
}

.task-panel strong {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.task-panel strong i {
  margin-right: 7px;
  color: var(--cyan);
  font-size: 9px;
  font-style: normal;
}

.task-panel strong small {
  display: block;
  margin: 5px 0 0 20px;
  color: var(--faint);
  font-size: 9px;
  font-weight: 500;
}

.project-note {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  width: 148px;
  color: rgba(230, 220, 255, 0.86);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 20px;
  line-height: 1.25;
  text-align: right;
  transform: rotate(-5deg);
}

.studio-list {
  display: grid;
  gap: 18px;
}

.studio {
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.72fr) minmax(320px, 0.9fr);
}

.studio-image {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 43%, rgba(69, 199, 255, 0.17), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(160deg, #142337, #050b13 68%);
  box-shadow: var(--shadow);
}

.studio-image::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -8%;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.desk-glow {
  position: absolute;
  left: 35%;
  top: 38%;
  width: 190px;
  height: 120px;
  border-radius: 50%;
  background: rgba(52, 125, 255, 0.28);
  filter: blur(38px);
}

.monitor {
  position: absolute;
  right: 30px;
  top: 70px;
  width: 150px;
  height: 96px;
  padding: 18px;
  border: 1px solid rgba(134, 181, 255, 0.28);
  border-radius: 7px;
  background: linear-gradient(150deg, rgba(52, 125, 255, 0.34), rgba(6, 17, 29, 0.92));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
}

.monitor::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -58px;
  width: 2px;
  height: 58px;
  background: rgba(134, 181, 255, 0.26);
}

.monitor span,
.monitor strong {
  display: block;
  line-height: 1.05;
}

.monitor span {
  color: #b8d0ff;
}

.monitor strong {
  color: #fff;
  margin-top: 5px;
}

.developer-silhouette {
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 150px;
  height: 206px;
  background:
    radial-gradient(circle at 50% 18%, #0b1018 0 34px, transparent 35px),
    linear-gradient(110deg, transparent 0 20%, #070b11 20.5% 78%, transparent 78.5%);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.48));
}

.studio-list div {
  min-height: 92px;
  padding: 20px 20px 20px 72px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(52, 125, 255, 0.10), transparent 34%),
    rgba(13, 31, 51, 0.62);
}

.studio-list i {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 18px;
  top: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(69, 199, 255, 0.32);
  color: var(--cyan);
  background: rgba(52, 125, 255, 0.08);
  font-size: 20px;
  font-style: normal;
}

.studio-list strong,
.studio-list span {
  display: block;
}

.studio-list span {
  margin-top: 8px;
}

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

.process-steps div {
  min-height: 190px;
}

.process-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  align-items: start;
  gap: 54px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 21px 42px 21px 0;
  position: relative;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: -3px 42px 20px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 32px;
  border: 1px solid rgba(69, 199, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(52, 125, 255, 0.16), transparent 46%),
    rgba(13, 31, 51, 0.66);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(69, 199, 255, 0.07), transparent 66%);
}

.contact .button {
  justify-self: end;
}

.contact-actions {
  position: relative;
  justify-self: end;
}

.mail-options {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 5;
  min-width: 218px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(69, 199, 255, 0.28);
  border-radius: 12px;
  background: rgba(10, 24, 41, 0.97);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.mail-options-address {
  margin: 0 0 6px;
  padding: 0 10px;
  font-size: 12px;
  color: var(--muted);
}

.mail-options a,
.mail-options .mail-copy {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.mail-options a:hover,
.mail-options .mail-copy:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer .mail-copy {
  margin-left: 6px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.footer .mail-copy:hover {
  color: #fff;
  border-color: rgba(128, 169, 225, 0.48);
}

.footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer address {
  color: var(--muted);
  font-style: normal;
}

.footer address a,
.footer > a:last-child {
  transition: color 180ms ease;
}

.footer address a:hover,
.footer > a:last-child:hover {
  color: var(--cyan);
}

/* Visual alignment with the original DEVI MOBILE direction. */
.site-header,
.footer,
.section-frame {
  width: min(1180px, calc(100% - 96px));
}

.hero {
  min-height: 610px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 24px;
  padding: 30px 0 34px;
}

.hero-atmosphere {
  inset: 48px -8% 0;
}

.ridge {
  bottom: 108px;
}

.ridge-b {
  bottom: 72px;
}

.mist {
  bottom: 30px;
}

h1 {
  max-width: 560px;
  font-size: clamp(50px, 5.4vw, 70px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 570px;
  font-size: 17px;
}

.hero-points {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(128, 169, 225, 0.18);
}

.hero-points div {
  min-height: 70px;
  padding: 6px 10px 6px 44px;
}

.hero-points i {
  width: 29px;
  height: 29px;
  top: 8px;
  left: 7px;
  border-radius: 7px;
  font-size: 9px;
}

.hero-points span {
  font-size: 11px;
}

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

.phone {
  width: 244px;
  height: 500px;
  border-radius: 40px;
}

.phone-front {
  left: 9%;
  top: 2%;
}

.phone-back {
  right: 5%;
  top: 11%;
}

.camera-grid::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, #21344e, #0b1421 72%);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.camera-grid::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bcc8d8;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.32);
}

.hand-note {
  right: -22px;
}

.visual-caption {
  position: absolute;
  right: -4px;
  bottom: 48px;
  color: #8c9db8;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.visual-caption::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background: var(--blue);
}

.services,
.project,
.studio,
.process,
.faq,
.contact {
  padding-top: 46px;
  padding-bottom: 46px;
}

.services,
.studio,
.process,
.faq {
  isolation: isolate;
}

.services::before,
.studio::before,
.process::before,
.faq::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  pointer-events: none;
}

.services::before,
.process::before {
  background: linear-gradient(90deg, rgba(8, 22, 36, 0.78), rgba(10, 28, 47, 0.42), rgba(8, 22, 36, 0.78));
}

.studio::before,
.faq::before {
  background: rgba(4, 12, 21, 0.36);
}

.service-card {
  min-height: 198px;
  padding: 20px;
}

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

.studio-list {
  gap: 8px;
}

.studio-list div {
  min-height: 82px;
  padding: 16px 8px 16px 68px;
  border: 0;
  border-bottom: 1px solid rgba(128, 169, 225, 0.14);
  border-radius: 0;
  background: transparent;
}

.studio-list i {
  left: 8px;
  top: 18px;
}

.contact {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .header-location {
    display: none;
  }

  .visual-caption {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 8px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 30, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 6px;
    color: var(--muted);
  }

  .mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero,
  .project,
  .studio,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

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

  .technology-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .technology-strip ul {
    justify-content: flex-start;
  }

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

  .contact .button,
  .contact-actions {
    justify-self: start;
  }

  .mail-options {
    right: auto;
    left: 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .footer,
  .section-frame {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 154px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-lead,
  .section-heading p,
  .project-lead,
  .studio-copy p,
  .contact p {
    font-size: 16px;
  }

  .hero-points,
  .service-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-points {
    gap: 6px;
  }

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

  .phone {
    width: 178px;
    height: 370px;
  }

  .phone-front {
    left: 3%;
  }

  .phone-back {
    right: 0;
  }

  .phone-front p {
    margin-top: 72px;
    font-size: 22px;
  }

  .screen-list span {
    padding: 10px 12px;
    font-size: 11px;
  }

  .screen-landscape {
    height: 142px;
  }

  .phone-front p {
    margin-top: 156px;
  }

  .hand-note {
    display: none;
  }

  .project-visual {
    min-height: 420px;
  }

  .project-note {
    display: none;
  }

  .app-panel,
  .task-panel {
    width: 190px;
  }

  .app-panel {
    left: 4%;
  }

  .task-panel {
    right: 3%;
    top: 130px;
  }

  .contact {
    padding: 24px;
  }

  .footer {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
  font-size: 14px;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 108px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(128, 169, 225, 0.6);
  background: rgba(255, 255, 255, 0.065);
}

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: #2967ff;
}

.field-consent label {
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.5;
}

.contact-privacy {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-privacy summary {
  cursor: pointer;
  font-size: 12.5px;
  color: var(--muted);
}

.contact-privacy p {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-form button[type="submit"] {
  justify-self: start;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.form-status {
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.form-status[data-state="success"] { color: #6ee7a8; }
.form-status[data-state="error"] { color: #ff9d9d; }
.form-status[data-state="pending"] { color: var(--muted); }

.contact-actions {
  justify-self: start;
  align-self: start;
}

/* Two columns: copy and mail fallback on the left, form spanning both rows. */
.contact {
  align-items: start;
}

.contact-intro {
  display: grid;
  gap: 26px;
  align-content: start;
  justify-items: start;
}
