:root {
  --ink: #06111a;
  --ink-2: #0a1925;
  --ink-3: #102432;
  --blue: #34befb;
  --blue-light: #8cddff;
  --teal: #31d6c7;
  --paper: #f4f8fa;
  --white: #ffffff;
  --muted: #647784;
  --line: rgba(99, 145, 171, 0.22);
  --radius: 28px;
  --shadow: 0 30px 80px rgba(6, 25, 36, 0.16);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Oswald", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
  height: 66px;
  overflow: hidden;
}

.brand img {
  width: 76px;
  height: 62px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255,255,255,.72);
  transition: color .2s ease;
}

.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav > a:hover { color: var(--white); }
.nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 11px 20px;
  color: var(--ink);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-cta:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 35%, rgba(52,190,251,.18), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(49,214,199,.09), transparent 22%),
    linear-gradient(135deg, #050d14 0%, #071723 52%, #06121b 100%);
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(118,190,224,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,190,224,.11) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -200px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(52,190,251,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(52,190,251,.025), 0 0 0 160px rgba(52,190,251,.018);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 18%;
  left: -110px;
  width: 260px;
  height: 260px;
  background: rgba(52,190,251,.06);
}

.hero-orb-two {
  top: 42%;
  right: 33%;
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 30px 10px rgba(52,190,251,.55);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  min-height: 760px;
  padding-top: 112px;
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--blue);
}

.eyebrow.dark { color: #177ea9; }

.hero h1,
.section-heading h2,
.approach-copy h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 6vw, 6.2rem);
}

h1 em, h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.67);
  font-size: 1.08rem;
}

.hero-actions,
.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--ink);
  background: var(--blue);
  box-shadow: 0 15px 35px rgba(52,190,251,.18);
}

.btn-primary:hover { background: var(--blue-light); box-shadow: 0 18px 40px rgba(52,190,251,.26); }

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

.btn-secondary:hover { background: rgba(255,255,255,.1); }

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 42px;
  color: rgba(255,255,255,.53);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-signals span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(49,214,199,.75);
}

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

.brand-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(52,190,251,.23);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(52,190,251,.04), 0 0 100px rgba(52,190,251,.04);
}

.brand-halo::before,
.brand-halo::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.brand-halo::before { inset: 38px; border: 1px dashed rgba(255,255,255,.13); }
.brand-halo::after { inset: 90px; border: 1px solid rgba(52,190,251,.12); }

.brand-plate {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 310px;
  height: 360px;
  padding: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 44% 56% 49% 51% / 44% 39% 61% 56%;
  box-shadow: 0 45px 110px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.brand-plate img { width: 245px; filter: drop-shadow(0 22px 38px rgba(0,0,0,.28)); }

.brand-plate p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -12px 0 0;
  color: rgba(255,255,255,.58);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.brand-plate p i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 10px;
  gap: 10px;
  color: rgba(255,255,255,.72);
  background: rgba(5,16,24,.82);
  border: 1px solid rgba(52,190,251,.2);
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  font-weight: 700;
}

.floating-note b {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink);
  background: var(--blue);
  border-radius: 9px;
  font-size: .64rem;
}

.note-one { top: 90px; left: 12px; }
.note-two { right: -4px; bottom: 94px; }

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  color: rgba(255,255,255,.42);
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-footer p { margin: 0; }
.hero-footer a { color: rgba(255,255,255,.7); }
.hero-footer a span { margin-left: 12px; color: var(--blue); }

.section { padding: 120px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  margin-bottom: 56px;
  gap: 70px;
}

.section-heading h2,
.approach-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .98rem;
}

.product-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 710px;
  background: var(--white);
  border: 1px solid rgba(49,99,126,.14);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-copy { padding: 62px 54px; }

.product-brand {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 16px;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 8px;
  background: var(--ink);
  border-radius: 16px;
}

.product-icon img { width: 45px; height: 45px; object-fit: contain; }
.product-brand small { color: #328db4; font-size: .63rem; font-weight: 800; letter-spacing: .14em; }
.product-brand h3 { margin: 1px 0 0; font-family: var(--font-display); font-size: 2rem; line-height: 1; }

.product-copy h4 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.16;
}

.product-copy > p { color: var(--muted); font-size: .94rem; }

.product-features {
  display: grid;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-features li {
  display: flex;
  align-items: center;
  padding: 13px 0;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 700;
}

.product-features span { color: #259dcf; font-family: var(--font-display); font-size: .76rem; }

.text-link {
  color: #167ea9;
  border-bottom: 1px solid rgba(22,126,169,.34);
  font-size: .78rem;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover { color: #075a7e; border-color: currentColor; }

.product-visual {
  position: relative;
  min-width: 0;
  background:
    linear-gradient(rgba(52,190,251,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,190,251,.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(52,190,251,.16), transparent 35%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
  overflow: hidden;
}

.visual-glow {
  position: absolute;
  top: 12%;
  left: 23%;
  width: 55%;
  height: 48%;
  background: rgba(52,190,251,.12);
  border-radius: 50%;
  filter: blur(70px);
}

.pc-device {
  position: absolute;
  top: 14%;
  left: 7%;
  width: 86%;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.45));
}

.pc-screen {
  position: relative;
  padding: 10px;
  background: #f8fbfc;
  border: 2px solid #d9e3e7;
  border-radius: 17px;
  box-shadow: inset 0 0 0 2px #fff;
  overflow: hidden;
}

.pc-screen::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #778a94;
  border-radius: 50%;
}

.pc-screen img { width: 100%; aspect-ratio: 1.605; object-fit: cover; object-position: center; border-radius: 8px; }

.pc-neck {
  width: 14%;
  height: 44px;
  margin: 0 auto;
  background: linear-gradient(90deg, #e4ecef, #fff 48%, #d7e1e5);
  clip-path: polygon(24% 0, 76% 0, 90% 100%, 10% 100%);
}

.pc-base {
  width: 30%;
  height: 8px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 7px 12px rgba(0,0,0,.23);
}

.tablet-device,
.phone-device {
  position: absolute;
  z-index: 4;
  padding: 9px;
  background: #fff;
  border: 2px solid #e0e8eb;
  box-shadow: 0 30px 55px rgba(0,0,0,.5);
  overflow: hidden;
}

.tablet-device {
  right: 7%;
  bottom: 4%;
  width: 30%;
  height: auto;
  padding: 9px;
  border-width: 3px;
  border-radius: 24px;
  transform: rotate(.8deg);
}

.phone-device {
  bottom: 5%;
  left: 8%;
  width: 21%;
  height: auto;
  padding: 8px;
  border-width: 3px;
  border-radius: 30px;
  transform: rotate(-2deg);
}

.tablet-device > i,
.phone-device > i {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #7d8d94;
  border-radius: 50%;
}

.phone-device > i { width: 36%; height: 11px; top: 7px; transform: translateX(-50%); border-radius: 0 0 9px 9px; background: #08131a; }
.tablet-device img,
.phone-device img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #061018;
  border-radius: 13px;
}
.phone-device img { border-radius: 21px; }

.original-badge {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  padding: 9px 13px;
  gap: 8px;
  color: rgba(255,255,255,.7);
  background: rgba(6,17,26,.75);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: .62rem;
  font-weight: 700;
}

.original-badge i { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 10px var(--teal); }

.services {
  color: var(--white);
  background: var(--ink);
}

.light-heading > p { color: rgba(255,255,255,.58); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: 34px 26px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .3s ease, transform .3s ease;
}

.service-card:first-child { border-left: 1px solid rgba(255,255,255,.12); }
.service-card:hover { background: rgba(52,190,251,.055); transform: translateY(-5px); }
.service-card > span { position: absolute; top: 25px; right: 24px; color: rgba(255,255,255,.24); font-family: var(--font-display); font-size: .72rem; }

.service-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 50px 0 30px;
  color: var(--blue);
  border: 1px solid rgba(52,190,251,.35);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: .88rem;
  letter-spacing: .08em;
}

.service-card h3 { margin-bottom: 15px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; }
.service-card p { margin: 0; color: rgba(255,255,255,.5); font-size: .84rem; }

.approach { background: #eef4f7; }

.approach-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}

.approach-copy { position: sticky; top: 100px; align-self: start; }
.approach-copy > p:not(.eyebrow) { margin: 26px 0; color: var(--muted); }
.dark-link { color: var(--ink); border-color: rgba(6,17,26,.2); }

.approach-steps { margin: 0; padding: 0; list-style: none; }

.approach-steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 30px 0;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.approach-steps li:last-child { border-bottom: 1px solid var(--line); }
.approach-steps b { display: grid; place-items: center; width: 50px; height: 50px; color: #177fa9; background: rgba(52,190,251,.1); border-radius: 50%; font-family: var(--font-display); font-size: .78rem; }
.approach-steps h3 { margin: 0 0 7px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; }
.approach-steps p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact {
  position: relative;
  padding: 115px 0;
  color: var(--white);
  background: linear-gradient(125deg, #092232, #07131d 65%);
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  top: -180px;
  left: 25%;
  width: 530px;
  height: 530px;
  background: rgba(52,190,251,.08);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 0 70px rgba(52,190,251,.02), 0 0 0 140px rgba(52,190,251,.015);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 90px;
}

.contact h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.2rem); }

.contact-card {
  padding: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  backdrop-filter: blur(12px);
}

.contact-card > p { margin-bottom: 26px; color: rgba(255,255,255,.58); font-size: .9rem; }

.contact-card a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}

.contact-card small { grid-column: 1; color: rgba(255,255,255,.4); font-size: .65rem; text-transform: uppercase; letter-spacing: .13em; }
.contact-card b { grid-column: 1; font-size: 1rem; }
.contact-card span { grid-column: 2; grid-row: 1 / span 2; display: grid; place-items: center; width: 38px; height: 38px; color: var(--ink); background: var(--blue); border-radius: 50%; transition: transform .2s ease; }
.contact-card a:hover span { transform: rotate(12deg) scale(1.06); }

.footer { padding: 35px 0; color: rgba(255,255,255,.5); background: #040b10; }

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px 40px;
}

.footer-brand { width: 72px; height: 55px; overflow: hidden; }
.footer-brand img { width: 68px; height: 53px; object-fit: contain; }
.footer p { margin: 0; color: rgba(255,255,255,.8); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.35; }
.footer p span { color: rgba(255,255,255,.36); font-family: var(--font-body); font-size: .67rem; }
.footer-links { display: flex; gap: 24px; color: rgba(255,255,255,.64); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a:hover { color: var(--blue); }
.footer small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: .64rem; }

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

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

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr .78fr; gap: 20px; }
  .brand-halo { width: 360px; height: 360px; }
  .brand-plate { width: 270px; height: 320px; }
  .note-one { left: -8px; }
  .note-two { right: -15px; }
  .product-card { grid-template-columns: .95fr 1.05fr; }
  .product-copy { padding: 50px 38px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.12); }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .approach-grid { gap: 60px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 34px), 720px); }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 74px;
    right: 17px;
    left: 17px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 0;
    background: rgba(5,16,24,.98);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 4px; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; padding-bottom: 40px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .hero-signals { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-brand { min-height: 470px; }
  .hero-footer { margin-top: 10px; }
  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .product-card { grid-template-columns: 1fr; }
  .product-visual { min-height: 610px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-copy { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), 520px); }
  .header-inner { min-height: 76px; }
  .brand { width: 67px; height: 56px; }
  .brand img { width: 63px; height: 54px; }
  .hero-inner { padding-top: 125px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions .btn { width: 100%; }
  .hero-signals { gap: 10px 14px; font-size: .64rem; }
  .hero-brand { min-height: 390px; }
  .brand-halo { width: 310px; height: 310px; }
  .brand-plate { width: 230px; height: 275px; }
  .brand-plate img { width: 195px; }
  .brand-plate p { font-size: .55rem; }
  .floating-note { font-size: .58rem; }
  .floating-note b { width: 28px; height: 28px; }
  .note-one { top: 42px; left: 0; }
  .note-two { right: 0; bottom: 42px; }
  .hero-footer p { display: none; }
  .hero-footer { justify-content: center; }
  .section-heading h2, .approach-copy h2 { font-size: 2.8rem; }
  .product-card { border-radius: 24px; }
  .product-copy { padding: 38px 25px; }
  .product-copy h4 { font-size: 2.15rem; }
  .product-actions .btn { width: 100%; }
  .product-actions .text-link { margin: 6px auto 0; }
  .product-visual { min-height: 460px; }
  .pc-device { top: 11%; left: 4%; width: 92%; }
  .pc-screen { padding: 7px; border-radius: 12px; }
  .pc-neck { height: 31px; }
  .tablet-device { right: 5%; bottom: 5%; width: 32%; height: auto; padding: 6px; border-radius: 18px; }
  .phone-device { left: 6%; bottom: 6%; width: 24%; height: auto; padding: 6px; border-radius: 22px; }
  .phone-device > i { height: 8px; top: 5px; }
  .original-badge { right: 12px; bottom: 12px; padding: 7px 10px; font-size: .54rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; border-left: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); }
  .service-card:first-child { border-top: 0; }
  .service-mark { margin-top: 28px; }
  .approach-steps li { grid-template-columns: 55px 1fr; gap: 13px; }
  .contact { padding: 90px 0; }
  .contact h2 { font-size: 3rem; }
  .contact-card { padding: 25px; }
  .contact-card b { font-size: .86rem; }
  .footer-grid { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; flex-wrap: wrap; }
}

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