:root {
  --cyan: #18e0ff;
  --cyan-soft: #70ecff;
  --blue: #2878ff;
  --navy: #07132b;
  --navy-light: #0c1d3d;
  --ink: #020712;
  --red: #8d1527;
  --red-bright: #d1263f;
  --white: #f5fbff;
  --muted: #91a4bd;
  --line: rgba(100, 190, 255, .14);
  --heading: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--ink);
}
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
  border-left: 1px solid rgba(24, 224, 255, .08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(24, 224, 255, .4);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--cyan-soft), var(--cyan));
}
body::selection { background: var(--cyan); color: var(--ink); }
a { color: inherit; text-decoration: none; }
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
.section-pad { padding: 120px 0; }

.navbar {
  padding: 18px 0;
  transition: .35s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(2, 7, 18, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar-brand {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 0;
}
.navbar-brand:hover { color: var(--white); }
.navbar-brand img {
  display: block;
  width: 188px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(24, 224, 255, .1));
}
.nav-link {
  color: #a8b7cb;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 13px !important;
}
.nav-link:hover, .nav-link.active { color: var(--cyan) !important; }
.btn-nav {
  color: var(--white);
  border: 1px solid rgba(24, 224, 255, .5);
  border-radius: 4px;
  padding: 10px 17px;
  font-size: .8rem;
  font-weight: 700;
}
.btn-nav:hover { color: var(--ink); background: var(--cyan); box-shadow: 0 0 25px rgba(24,224,255,.25); }
.navbar-toggler { border: 1px solid rgba(24,224,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 43%, rgba(20, 80, 170, .25), transparent 28%),
    radial-gradient(circle at 12% 52%, rgba(141, 21, 39, .11), transparent 25%),
    linear-gradient(120deg, #020712 0%, #06142d 58%, #020713 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(70, 145, 220, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 145, 220, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, var(--ink));
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one {
  width: 360px; height: 360px; left: -240px; top: 20%;
  border: 1px solid rgba(24,224,255,.16);
  box-shadow: 0 0 80px rgba(24,224,255,.06), inset 0 0 70px rgba(24,224,255,.04);
}
.orb-two {
  width: 180px; height: 180px; right: 5%; bottom: 9%;
  border: 1px solid rgba(209,38,63,.18);
}
.hero-copy { position: relative; z-index: 4; padding-top: 70px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.hero h1, .section-heading h2, .about-section h2, .contact-panel h2 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -.055em;
}
.hero h1 {
  font-size: clamp(3.4rem, 6.2vw, 6.3rem);
  line-height: .93;
  margin-bottom: 28px;
}
.hero h1 span, .section-heading h2 span, .about-section h2 span, .contact-panel h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #3f80ff 75%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 18px rgba(24, 224, 255, .2));
}
.hero-lead {
  color: #a7b8cf;
  max-width: 610px;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.hero-motto {
  color: #7186a0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 36px;
}
.hero-motto code {
  color: var(--cyan);
  font-size: inherit;
  text-shadow: 0 0 10px rgba(24, 224, 255, .4);
}
.btn-primary-glow, .btn-ghost {
  border-radius: 3px;
  padding: 15px 22px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.btn-primary-glow {
  color: #001019;
  border: 0;
  background: linear-gradient(100deg, var(--cyan), #4ab4ff);
  box-shadow: 0 0 26px rgba(24, 224, 255, .2);
}
.btn-primary-glow:hover { color: #001019; transform: translateY(-2px); box-shadow: 0 0 34px rgba(24,224,255,.38); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.16); }
.btn-ghost:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(24,224,255,.05); }
.hero-metrics {
  display: flex;
  gap: 42px;
  margin-top: 62px;
}
.hero-metrics div { display: grid; }
.hero-metrics strong {
  font-family: var(--heading);
  font-size: 1.45rem;
  color: var(--white);
}
.hero-metrics span { color: #7186a0; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-visual { position: relative; min-height: 650px; }
.visual-frame {
  position: absolute;
  width: 780px;
  left: -80px;
  top: 47%;
  transform: translateY(-45%);
}
.visual-frame img {
  width: 100%;
  filter: saturate(1.15) contrast(1.07);
  mask-image: radial-gradient(ellipse 67% 63% at 52% 49%, black 48%, transparent 92%);
}
.visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 28%, transparent 74%, rgba(2,7,18,.8));
  pointer-events: none;
}
.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  font-family: var(--heading);
  font-weight: 600;
  font-size: .78rem;
  background: rgba(5, 17, 39, .76);
  border: 1px solid rgba(24, 224, 255, .28);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3), inset 0 0 20px rgba(24,224,255,.04);
  animation: float 4s ease-in-out infinite;
}
.floating-chip i { color: var(--cyan); font-size: 1.25rem; }
.floating-chip span { display: grid; }
.floating-chip small { color: #7186a0; font-family: var(--body); font-size: .56rem; margin-top: 3px; }
.chip-one { top: 27%; left: 14%; }
.chip-two { bottom: 22%; right: 9%; animation-delay: -2s; }
.status-pill {
  position: absolute;
  right: 20%;
  top: 18%;
  padding: 8px 12px;
  color: #a9bad0;
  background: rgba(3,13,29,.72);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status-pill span {
  display: inline-block;
  width: 7px; height: 7px;
  background: #3cff9a;
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 9px #3cff9a;
}
.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #5f728d;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 5;
}
.scroll-cue i { color: var(--cyan); animation: nudge 1.8s infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes nudge { 50% { transform: translateY(5px); } }

.trust-strip {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
  background: #040b19;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip p {
  color: #52657d;
  text-align: center;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  color: #899bb1;
  margin: 0 36px;
  font-family: var(--heading);
  font-size: .78rem;
  letter-spacing: .12em;
}
.marquee i { color: var(--cyan); margin-right: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(40,120,255,.09), transparent 26%),
    var(--ink);
}
.section-heading { margin-bottom: 55px; }
.section-heading h2, .about-section h2, .contact-panel h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1;
  margin: 0;
}
.section-heading p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 0 5px auto;
}
.service-card {
  position: relative;
  height: 100%;
  min-height: 315px;
  padding: 30px 27px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10,27,57,.78), rgba(4,12,28,.72));
  border: 1px solid var(--line);
  transition: .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
  transition: .35s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(24,224,255,.4); box-shadow: 0 22px 50px rgba(0,0,0,.3); }
.service-card:hover::before { height: 100%; }
.service-card.featured {
  background: linear-gradient(145deg, rgba(10,50,82,.9), rgba(4,17,38,.85));
  border-color: rgba(24,224,255,.28);
}
.service-card.accent-red:hover { border-color: rgba(209,38,63,.55); }
.service-card.accent-red::before { background: var(--red-bright); box-shadow: 0 0 13px var(--red-bright); }
.service-number {
  position: absolute;
  top: 22px; right: 24px;
  color: rgba(125,157,195,.32);
  font-family: var(--heading);
  font-size: .7rem;
}
.service-icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.45rem;
  background: rgba(24,224,255,.07);
  border: 1px solid rgba(24,224,255,.2);
  margin-bottom: 30px;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 0 100%);
}
.accent-red .service-icon { color: #ff5b72; background: rgba(209,38,63,.08); border-color: rgba(209,38,63,.25); }
.service-card h3 {
  font-family: var(--heading);
  font-size: 1.1rem;
  margin-bottom: 13px;
}
.service-card p { color: #8294aa; font-size: .8rem; line-height: 1.75; }
.service-card > a {
  position: absolute;
  left: 27px; bottom: 25px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: #687d97;
  border: 1px solid rgba(255,255,255,.1);
}
.service-card:hover > a { color: var(--cyan); border-color: var(--cyan); }

.work-section {
  background:
    linear-gradient(rgba(4,13,29,.92), rgba(4,13,29,.92)),
    linear-gradient(90deg, rgba(24,224,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(24,224,255,.04) 1px, transparent 1px);
  background-size: auto, 55px 55px, 55px 55px;
  border-top: 1px solid var(--line);
}
.text-link { color: var(--cyan); font-size: .78rem; font-weight: 700; border-bottom: 1px solid rgba(24,224,255,.35); padding-bottom: 5px; }
.project-showcase {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 55px;
  align-items: center;
  padding: 65px;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(9,28,59,.94), rgba(3,10,24,.94));
  border: 1px solid rgba(24,224,255,.18);
}
.project-showcase::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -140px; bottom: -170px;
  border: 1px solid rgba(209,38,63,.18);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(209,38,63,.06);
}
.project-tag { color: var(--cyan); font-size: .63rem; letter-spacing: .16em; }
.project-copy h3 {
  font-family: var(--heading);
  font-size: 2.35rem;
  line-height: 1.1;
  margin: 18px 0;
}
.project-copy > p { color: var(--muted); font-size: .88rem; line-height: 1.8; }
.project-stats { display: flex; gap: 25px; margin-top: 35px; }
.project-stats span { display: grid; color: #637891; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.project-stats strong { color: var(--white); font-size: .8rem; margin-bottom: 4px; }
.project-terminal { position: relative; z-index: 2; background: rgba(1,6,15,.85); border: 1px solid rgba(105,150,205,.2); box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.terminal-bar { display: flex; align-items: center; gap: 6px; padding: 13px 15px; border-bottom: 1px solid rgba(255,255,255,.07); }
.terminal-bar span { width: 7px; height: 7px; border-radius: 50%; background: #39495e; }
.terminal-bar span:first-child { background: var(--red-bright); }
.terminal-bar span:nth-child(2) { background: #e8b43d; }
.terminal-bar span:nth-child(3) { background: #2dcc80; }
.terminal-bar small { margin-left: auto; margin-right: auto; color: #536982; font-size: .6rem; }
.terminal-body { padding: 30px 25px; min-height: 265px; font-size: .75rem; }
.code-line { display: flex; gap: 20px; margin-bottom: 15px; }
.code-line em { color: #30445d; font-style: normal; }
.code-line code { color: #b9c9dc; }
.code-line b { color: #d454eb; }
.code-line span { color: #4db9ff; }
.code-line i { color: #74ddb8; }
.terminal-result { margin-top: 28px; padding: 12px; color: #73e0b7; background: rgba(55,210,150,.05); border-left: 2px solid #3cdb9f; font-size: .65rem; }
.terminal-result i { margin-right: 7px; }

.about-section { overflow: hidden; }
.about-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: rgba(24,224,255,.06);
  border-radius: 50%;
  filter: blur(30px);
}
.about-core {
  position: relative;
  z-index: 3;
  width: 125px; height: 125px;
  display: grid; place-items: center;
  color: var(--cyan);
  font-size: 2.8rem;
  background: radial-gradient(circle, rgba(24,224,255,.2), rgba(6,22,48,.9));
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(24,224,255,.28), inset 0 0 30px rgba(24,224,255,.12);
}
.orbit { position: absolute; border: 1px solid rgba(24,224,255,.2); border-radius: 50%; }
.orbit-one { width: 310px; height: 310px; animation: spin 18s linear infinite; }
.orbit-two { width: 455px; height: 455px; border-style: dashed; opacity: .55; animation: spin 30s linear infinite reverse; }
.orbit::before { content: ""; position: absolute; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; top: 20%; box-shadow: 0 0 12px var(--cyan); }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-node {
  position: absolute;
  z-index: 4;
  padding: 8px 13px;
  color: #92a8c1;
  background: #07142b;
  border: 1px solid rgba(24,224,255,.25);
  font-size: .57rem;
  letter-spacing: .15em;
}
.node-one { left: 10%; top: 23%; }
.node-two { right: 7%; top: 44%; }
.node-three { left: 18%; bottom: 17%; border-color: rgba(209,38,63,.3); }
.about-lead { color: #a2b4c9; font-size: 1rem; line-height: 1.85; margin: 25px 0 35px; }
.value-list { display: grid; gap: 23px; }
.value-item { display: flex; gap: 18px; }
.value-item > i {
  flex: 0 0 45px; height: 45px;
  display: grid; place-items: center;
  color: var(--cyan);
  background: rgba(24,224,255,.06);
  border: 1px solid rgba(24,224,255,.17);
}
.value-item h4 { font-family: var(--heading); font-size: .95rem; margin: 2px 0 6px; }
.value-item p { color: #71859d; font-size: .76rem; margin: 0; }

.contact-section { position: relative; overflow: hidden; background: #040c1b; }
.contact-glow { position: absolute; width: 600px; height: 600px; left: 50%; top: 30%; transform: translate(-50%,-50%); background: rgba(20,100,200,.1); filter: blur(100px); border-radius: 50%; }
.contact-panel {
  position: relative;
  padding: 70px;
  background: linear-gradient(135deg, rgba(9,31,64,.95), rgba(3,11,26,.98));
  border: 1px solid rgba(24,224,255,.22);
  box-shadow: 0 35px 80px rgba(0,0,0,.3);
}
.contact-panel::before, .contact-panel::after {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--cyan);
}
.contact-panel::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.contact-panel::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.contact-panel p { color: #91a5bd; max-width: 500px; line-height: 1.8; margin: 25px 0; }
.contact-email { color: var(--cyan); font-size: .83rem; font-weight: 700; }
.contact-email i { margin-right: 9px; }
.form-label { color: #8296ae; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.form-control, .form-select {
  color: var(--white);
  background-color: rgba(1, 8, 20, .65);
  border: 1px solid rgba(115,160,210,.18);
  border-radius: 2px;
  min-height: 48px;
  font-size: .78rem;
}
.form-control::placeholder { color: #455a72; }
.form-control:focus, .form-select:focus {
  color: var(--white);
  background-color: rgba(1,8,20,.8);
  border-color: var(--cyan);
  box-shadow: 0 0 0 .18rem rgba(24,224,255,.08);
}
.form-select { color: #8296ae; }
.form-select option { background: #06132a; }
textarea.form-control { resize: none; padding-top: 13px; }
.form-status { min-height: 20px; margin-top: 12px; color: #6bdfb2; font-size: .72rem; text-align: center; }

footer { padding: 55px 0 25px; background: #01050d; border-top: 1px solid rgba(100,190,255,.1); }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 35px; }
.footer-main p { color: #53667e; font-size: .76rem; margin: 0; }
.brand-motto code {
  color: var(--cyan);
  font-size: inherit;
  text-shadow: 0 0 10px rgba(24, 224, 255, .35);
}
.footer-main .navbar-brand img { width: 230px; }
.social-links { display: flex; gap: 9px; }
.social-links a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: #6e829a;
  border: 1px solid rgba(255,255,255,.1);
}
.social-links a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #3e5066; border-top: 1px solid rgba(255,255,255,.06); font-size: .61rem; letter-spacing: .04em; }
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 50;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1199.98px) {
  .hero h1 { font-size: 4.7rem; }
  .visual-frame { width: 690px; left: -110px; }
  .project-showcase { padding: 45px; }
}
@media (max-width: 991.98px) {
  .navbar { background: rgba(2,7,18,.93); backdrop-filter: blur(14px); }
  .navbar-collapse { padding: 20px 0; }
  .hero { min-height: auto; }
  .hero .min-vh-100 { padding-top: 140px !important; padding-bottom: 85px; }
  .hero-copy { padding-top: 0; }
  .hero-visual { min-height: 540px; margin-top: 20px; }
  .visual-frame { width: 720px; left: 50%; transform: translate(-50%,-45%); }
  .scroll-cue { display: none; }
  .section-pad { padding: 90px 0; }
  .section-heading p { margin: 20px 0 0; }
  .project-showcase { grid-template-columns: 1fr; }
  .about-visual { min-height: 480px; }
  .contact-panel { padding: 50px 40px; }
}
@media (max-width: 767.98px) {
  .hero h1 { font-size: 3.45rem; }
  .hero-lead { font-size: .95rem; }
  .hero-metrics { gap: 22px; margin-top: 45px; }
  .hero-visual { min-height: 420px; }
  .visual-frame { width: 560px; }
  .floating-chip { transform: scale(.88); }
  .chip-one { left: 5%; }
  .chip-two { right: 2%; }
  .status-pill { display: none; }
  .section-heading h2, .about-section h2, .contact-panel h2 { font-size: 2.75rem; }
  .project-showcase { padding: 35px 25px; gap: 38px; }
  .project-copy h3 { font-size: 1.8rem; }
  .project-stats { flex-wrap: wrap; }
  .about-visual { min-height: 410px; transform: scale(.85); margin: -35px 0; }
  .contact-panel { padding: 40px 25px; }
  .footer-main, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom { gap: 8px; }
}
@media (max-width: 575.98px) {
  .navbar-brand img { width: 158px; }
  .hero .min-vh-100 { padding-top: 120px !important; }
  .hero h1 { font-size: 2.85rem; }
  .hero-actions .btn { width: 100%; }
  .hero-metrics { justify-content: space-between; gap: 10px; }
  .hero-metrics strong { font-size: 1.2rem; }
  .hero-metrics span { font-size: .55rem; }
  .hero-visual { min-height: 345px; }
  .visual-frame { width: 475px; }
  .floating-chip { display: none; }
  .service-card { min-height: 290px; }
  .project-terminal { margin: 0 -12px; }
  .terminal-body { padding: 25px 15px; font-size: .61rem; }
  .code-line { gap: 10px; }
  .about-visual { transform: scale(.72); margin: -75px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
