:root {
  --ink: #071421;
  --ink-soft: #0d2032;
  --navy: #123a5a;
  --cyan: #39d5c8;
  --cyan-bright: #7af5e9;
  --blue: #4d8dff;
  --paper: #f6f9fb;
  --white: #ffffff;
  --muted: #667887;
  --line: #dbe5eb;
  --shadow: 0 24px 70px rgba(7, 20, 33, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1460px, calc(100% - 80px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122,245,233,.55);
  background: linear-gradient(145deg, rgba(57,213,200,.18), rgba(77,141,255,.12));
  clip-path: polygon(12% 0, 88% 0, 100% 22%, 100% 78%, 88% 100%, 12% 100%, 0 78%, 0 22%);
  color: var(--cyan-bright);
}
.brand-mark span { font: 800 15px/1 "Manrope", sans-serif; letter-spacing: -.06em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 800 18px/1 "Manrope", sans-serif; letter-spacing: .045em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; letter-spacing: .24em; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 15px; font-weight: 600; }
.site-nav > a:not(.nav-phone) { color: rgba(255,255,255,.78); transition: color .2s ease; }
.site-nav > a:not(.nav-phone):hover { color: var(--white); }
.site-nav > a[aria-current="page"]:not(.nav-phone) { color: var(--cyan-bright); }
.site-nav .nav-support { padding: 8px 13px; border: 1px solid rgba(122,245,233,.35); border-radius: 999px; background: rgba(57,213,200,.08); }
.site-nav .nav-support:hover { border-color: rgba(122,245,233,.7); background: rgba(57,213,200,.14); }
.site-nav .nav-support[aria-current="page"] { color: var(--ink); border-color: var(--cyan-bright); background: var(--cyan-bright); }
.nav-phone { display: inline-flex; align-items: center; gap: 10px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; }
.nav-phone svg { width: 16px; fill: none; stroke: var(--cyan); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: .2s ease; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 168px 0 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(circle at 76% 36%, #173f5a 0, #0a1d2d 32%, var(--ink) 68%);
  background-size: 46px 46px, 46px 46px, auto;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 63px; height: 1px; background: rgba(255,255,255,.1); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.glow-one { width: 420px; height: 420px; right: 8%; top: 110px; background: rgba(57,213,200,.08); animation: glow-drift-one 10s ease-in-out infinite alternate; }
.glow-two { width: 300px; height: 300px; left: -130px; bottom: 20px; background: rgba(77,141,255,.09); animation: glow-drift-two 12s ease-in-out infinite alternate; }
.hero-motion-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
  background:
    radial-gradient(circle at 15% 78%, rgba(77,141,255,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 83% 22%, rgba(122,245,233,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 72%, rgba(57,213,200,.16) 0 1px, transparent 2px);
  background-size: 210px 210px, 270px 270px, 150px 150px;
  animation: motion-field 18s linear infinite;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(52px, 5vw, 92px); }
.home-page .hero-copy > * { animation: hero-rise .75s cubic-bezier(.2,.7,.25,1) both; }
.home-page .hero-copy > :nth-child(1) { animation-delay: .08s; }
.home-page .hero-copy > :nth-child(2) { animation-delay: .18s; }
.home-page .hero-copy > :nth-child(3) { animation-delay: .3s; }
.home-page .hero-copy > :nth-child(4) { animation-delay: .42s; }
.home-page .hero-copy > :nth-child(5) { animation-delay: .54s; }
.home-page .hero-copy > :nth-child(6) { animation-delay: .64s; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--cyan-bright); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { display: block; width: 26px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #137c7a; }
.hero h1, .section h2, blockquote { font-family: "Manrope", sans-serif; }
.hero h1 { max-width: 770px; margin: 0; font-size: clamp(3.25rem, 5.4vw, 5.35rem); line-height: .98; letter-spacing: -.055em; font-weight: 700; }
.hero h1 em { color: var(--cyan-bright); font-style: normal; }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.65; }
.hero-ai-callout { width: min(100%, 690px); min-height: 66px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; margin-top: 24px; padding: 10px 14px 10px 10px; border: 1px solid rgba(122,245,233,.35); border-radius: 16px; background: linear-gradient(90deg, rgba(57,213,200,.12), rgba(77,141,255,.07)); box-shadow: 0 14px 34px rgba(0,0,0,.14); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.hero-ai-callout:hover { transform: translateY(-2px); border-color: rgba(122,245,233,.7); background: linear-gradient(90deg, rgba(57,213,200,.18), rgba(77,141,255,.1)); }
.hero-ai-badge { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 12px; color: #062026; background: var(--cyan-bright); font: 800 18px/1 "Manrope", sans-serif; letter-spacing: -.04em; box-shadow: 0 0 24px rgba(57,213,200,.25); }
.hero-ai-copy { min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.hero-ai-copy small { color: var(--cyan-bright); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.hero-ai-copy strong { margin-top: 4px; color: rgba(255,255,255,.88); font: 600 14px/1.35 "Manrope", sans-serif; }
.hero-ai-arrow { color: var(--cyan-bright); font-size: 20px; transition: transform .2s ease; }
.hero-ai-callout:hover .hero-ai-arrow { transform: translate(2px, 2px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; border-radius: 999px; padding: 0 24px; font-weight: 700; transition: transform .2s ease, background .2s ease, border-color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--cyan); color: #062026; border: 1px solid var(--cyan); box-shadow: 0 12px 30px rgba(57,213,200,.18); }
.button-primary:hover { background: var(--cyan-bright); border-color: var(--cyan-bright); }
.button-ghost { border: 1px solid rgba(255,255,255,.24); color: var(--white); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
.hero-principles { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.58); font-size: 14px; }
.hero-principles span { display: inline-flex; align-items: center; gap: 9px; }
.hero-principles span::before { content: ""; width: 5px; height: 5px; border: 1px solid var(--cyan); transform: rotate(45deg); }

.hero-visual { position: relative; height: 466px; border-radius: 3px 42px 3px 42px; overflow: visible; animation: visual-arrive 1s cubic-bezier(.2,.7,.25,1) .2s both; }
.hero-visual::before { content: ""; position: absolute; inset: -10px 10px 10px -10px; border: 1px solid rgba(122,245,233,.18); border-radius: 3px 42px 3px 42px; }
.hero-media { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; opacity: .82; filter: saturate(.8) contrast(1.05); animation: hero-image-drift 14s ease-in-out infinite alternate; }
.visual-overlay { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, rgba(7,20,33,.48), transparent 55%), linear-gradient(0deg, rgba(7,20,33,.32), transparent 45%); }
.hero-scan { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; }
.hero-scan::after {
  content: "";
  position: absolute;
  inset: -20% 0 auto;
  height: 28%;
  opacity: .65;
  background: linear-gradient(to bottom, transparent, rgba(122,245,233,.12), rgba(122,245,233,.38), transparent);
  filter: blur(1px);
  animation: hero-scan 6s ease-in-out infinite;
}
.hero-activity { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; pointer-events: none; }
.hero-activity span { position: absolute; width: 8px; height: 8px; border: 1px solid var(--cyan-bright); border-radius: 50%; background: rgba(57,213,200,.45); box-shadow: 0 0 0 0 rgba(57,213,200,.25); animation: activity-pulse 3.4s ease-out infinite; }
.hero-activity span:nth-child(1) { top: 27%; left: 24%; }
.hero-activity span:nth-child(2) { top: 56%; left: 63%; animation-delay: 1.1s; }
.hero-activity span:nth-child(3) { top: 72%; left: 38%; animation-delay: 2.2s; }
.signal-card { position: absolute; z-index: 3; width: max-content; max-width: 250px; display: flex; align-items: center; gap: 13px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(8,24,38,.78); box-shadow: 0 18px 42px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.signal-top { top: 42px; right: -25px; animation: signal-float-top 5.2s ease-in-out infinite; }
.signal-bottom { bottom: 38px; left: -30px; animation: signal-float-bottom 5.8s ease-in-out infinite; }
.signal-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; background: rgba(57,213,200,.12); color: var(--cyan-bright); }
.signal-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.signal-card small, .signal-card strong { display: block; line-height: 1.25; }
.signal-card small { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.signal-card strong { margin-top: 4px; font: 600 14px/1.3 "Manrope", sans-serif; }
.service-strip { position: absolute; z-index: 3; left: 50%; bottom: 0; transform: translateX(-50%); height: 64px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.56); font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-strip i { width: 4px; height: 4px; border: 1px solid var(--cyan); transform: rotate(45deg); }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes visual-arrive {
  from { opacity: 0; transform: translate3d(24px, 18px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-image-drift {
  from { transform: scale(1.02) translate3d(-.7%, 0, 0); }
  to { transform: scale(1.09) translate3d(.8%, -.7%, 0); }
}
@keyframes hero-scan {
  0%, 12% { transform: translateY(-35%); opacity: 0; }
  22% { opacity: .65; }
  72% { opacity: .5; }
  88%, 100% { transform: translateY(410%); opacity: 0; }
}
@keyframes activity-pulse {
  0%, 18% { opacity: 0; box-shadow: 0 0 0 0 rgba(57,213,200,.35); }
  28% { opacity: 1; }
  70% { opacity: .7; box-shadow: 0 0 0 18px rgba(57,213,200,0); }
  100% { opacity: 0; box-shadow: 0 0 0 18px rgba(57,213,200,0); }
}
@keyframes signal-float-top {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-4px, -10px, 0); }
}
@keyframes signal-float-bottom {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, 9px, 0); }
}
@keyframes glow-drift-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-35px, 20px, 0) scale(1.12); }
}
@keyframes glow-drift-two {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(35px, -18px, 0) scale(1.18); }
}
@keyframes motion-field {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 210px -210px, -270px 270px, 150px -150px; }
}

.section { padding: 116px 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 94px;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, #174665 0, #0c263b 34%, var(--ink) 72%);
  background-size: 46px 46px, 46px 46px, auto;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -160px;
  bottom: -260px;
  border: 1px solid rgba(122,245,233,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(122,245,233,.035), 0 0 0 104px rgba(122,245,233,.02);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1040px; }
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font: 700 clamp(3rem, 6vw, 5rem)/1.02 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.page-hero h1 em { color: var(--cyan-bright); font-style: normal; }
.page-hero-lead { max-width: 900px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 19px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.service-catalog { background: var(--paper); }
.catalog-intro { max-width: 980px; margin-bottom: 48px; }
.catalog-intro h2, .difference-copy h2, .promise-copy h2 {
  margin: 0;
  font: 700 clamp(2.25rem, 4vw, 3.55rem)/1.08 "Manrope", sans-serif;
  letter-spacing: -.045em;
}
.catalog-intro > p:not(.eyebrow):not(.catalog-hint) { margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.catalog-intro .catalog-hint { display: flex; align-items: center; gap: 9px; margin: 22px 0 0; color: #137c7a; font-size: 14px; font-weight: 700; }
.catalog-hint > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #0b5c5a; background: #dff7f4; }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 18px; }
.catalog-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.catalog-card:hover { transform: translateY(-7px) scale(1.012); border-color: #b8d5da; border-radius: 28px; box-shadow: 0 30px 80px rgba(7, 20, 33, .16); z-index: 5; }
.catalog-card:focus-within { outline: 3px solid rgba(19,124,122,.25); outline-offset: 3px; }
.catalog-card:first-child {
  color: var(--white);
  border-color: var(--ink-soft);
  background: linear-gradient(145deg, var(--ink-soft), #123958);
}
.catalog-card .service-icon { margin-bottom: 32px; }
.catalog-card h3 { margin: 0; font: 700 24px/1.22 "Manrope", sans-serif; letter-spacing: -.025em; }
.catalog-card p { margin: 15px 0 0; color: var(--muted); }
.catalog-card:first-child p { color: rgba(255,255,255,.67); }
.catalog-card:first-child .service-icon { color: var(--cyan-bright); background: rgba(57,213,200,.12); }
.catalog-card.wide { grid-column: 1 / -1; min-height: 240px; }
.catalog-number { position: absolute; right: 30px; top: 28px; color: #96a4ae; font: 600 12px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.catalog-card > *:not(.catalog-card-trigger) { z-index: 2; pointer-events: none; }
.catalog-card .catalog-number { position: absolute; }
.catalog-link { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 24px; color: #147c79; font-size: 14px; font-weight: 700; }
.catalog-link > span { transition: transform .2s ease; }
.catalog-card:hover .catalog-link > span { transform: translate(2px, -2px); }
.catalog-card:first-child .catalog-link { color: var(--cyan-bright); }
.catalog-hover-details {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height .48s cubic-bezier(.2,.7,.25,1), margin-top .36s ease, opacity .26s ease, transform .36s ease;
}
.catalog-hover-details h4 { margin: 0 0 8px; font: 700 15px/1.3 "Manrope", sans-serif; color: var(--ink); }
.catalog-hover-details p { margin: 0; color: #526a79; font-size: 15px; line-height: 1.62; }
.catalog-hover-details h4:not(:first-child) { margin-top: 20px; }
.catalog-hover-list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.catalog-hover-list li { position: relative; padding-left: 20px; color: #415a6a; font-size: 14px; line-height: 1.45; }
.catalog-hover-list li::before { content: ""; position: absolute; left: 1px; top: .5em; width: 7px; height: 7px; border: 2px solid #15918b; transform: rotate(45deg); }
.catalog-card:first-child .catalog-hover-details h4 { color: var(--white); }
.catalog-card:first-child .catalog-hover-details p,
.catalog-card:first-child .catalog-hover-list li { color: rgba(255,255,255,.7); }
.catalog-card:first-child .catalog-hover-list li::before { border-color: var(--cyan-bright); }
.website-catalog-card { border-color: rgba(57,213,200,.48); background: linear-gradient(145deg, #effcfb, #f7fbff); }
.website-catalog-card::after { content: "WEB"; position: absolute; right: 22px; bottom: -18px; color: rgba(17,124,122,.055); font: 800 88px/1 "Manrope", sans-serif; letter-spacing: -.08em; }
.catalog-card:hover .catalog-hover-details,
.catalog-card:focus-within .catalog-hover-details {
  max-height: 620px;
  margin-top: 24px;
  opacity: 1;
  transform: translateY(0);
}
.catalog-card-trigger { position: absolute; inset: 0; z-index: 4; width: 100%; border: 0; border-radius: inherit; padding: 0; background: transparent; cursor: pointer; }
.catalog-card-trigger:focus { outline: none; }

.service-dialog {
  width: min(880px, calc(100% - 40px));
  max-height: min(88vh, 850px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  border: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 34px 100px rgba(1, 12, 21, .38);
}
.service-dialog::backdrop { background: rgba(3, 14, 23, .72); backdrop-filter: blur(5px); }
.service-dialog[open] { animation: dialog-arrive .24s cubic-bezier(.2,.7,.25,1) both; }
.service-dialog-panel { position: relative; }
.service-dialog-close { position: absolute; z-index: 3; right: 24px; top: 24px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.service-dialog-close:hover { color: var(--white); background: rgba(255,255,255,.16); transform: rotate(4deg); }
.service-dialog-close:focus-visible { outline: 3px solid var(--cyan-bright); outline-offset: 3px; }
.service-dialog-close svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.service-dialog-heading { position: relative; overflow: hidden; padding: 52px 72px 42px; color: var(--white); background: linear-gradient(135deg, var(--ink-soft), #123d5d); }
.service-dialog-heading::after { content: ""; position: absolute; width: 270px; height: 270px; right: -110px; top: -115px; border: 1px solid rgba(122,245,233,.2); border-radius: 50%; box-shadow: 0 0 0 42px rgba(122,245,233,.04), 0 0 0 84px rgba(122,245,233,.025); }
.service-dialog-heading > * { position: relative; z-index: 1; }
.service-dialog-heading .eyebrow { margin-bottom: 16px; color: var(--cyan-bright); }
.service-dialog-heading h2 { max-width: 680px; margin: 0; padding-right: 30px; font: 700 clamp(2rem, 4vw, 3.1rem)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
.service-dialog-lead { max-width: 700px; margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.6; }
.service-dialog-number { position: absolute; right: 78px; bottom: 32px; color: rgba(255,255,255,.055); font: 800 100px/1 "Manrope", sans-serif; letter-spacing: -.08em; }
.service-dialog-body { display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; padding: 46px 72px 42px; }
.service-dialog-body h3 { margin: 0 0 14px; font: 700 18px/1.25 "Manrope", sans-serif; }
.service-dialog-body p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-dialog-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.service-dialog-list li { position: relative; padding-left: 25px; color: #354d5e; line-height: 1.5; }
.service-dialog-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border: 2px solid #15918b; transform: rotate(45deg); }
.service-dialog-footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 25px 72px; border-top: 1px solid var(--line); background: #f5f9fb; }
.service-dialog-footer p { margin: 0; color: var(--muted); font-size: 14px; }
.service-dialog-footer .button { flex: 0 0 auto; }

@keyframes dialog-arrive {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.inner-cta { color: var(--white); background: var(--ink); }
.inner-cta-wrap { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.inner-cta h2 { margin: 0; font: 700 clamp(2.2rem, 4vw, 3.6rem)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
.inner-cta p { max-width: 650px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 18px; }

.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.story-statement {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
  overflow: hidden;
  color: var(--white);
  border-radius: 4px 42px 4px 42px;
  background: linear-gradient(145deg, #123d5d, var(--ink));
  box-shadow: var(--shadow);
}
.story-statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 18%, rgba(57,213,200,.25), transparent 32%); }
.story-statement > * { position: relative; z-index: 1; }
.story-statement strong { color: var(--cyan-bright); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.story-statement blockquote { margin: 24px 0 28px; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.12; letter-spacing: -.045em; }
.story-statement p { margin: 0; color: rgba(255,255,255,.58); }
.story-copy h2 { margin: 0 0 26px; font: 700 clamp(2.25rem, 4vw, 3.75rem)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.difference { background: var(--paper); }
.difference-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: start; }
.difference-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.difference-list { display: grid; gap: 14px; }
.difference-item { padding: 24px 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.difference-item strong { display: block; font: 700 19px/1.3 "Manrope", sans-serif; }
.difference-item p { margin: 7px 0 0; color: var(--muted); }

.promise { background: var(--white); }
.promise-wrap { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.promise-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.promise-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.promise-point { min-height: 150px; padding: 25px; border-radius: 18px; color: var(--white); background: var(--ink-soft); }
.promise-point span { display: block; margin-bottom: 28px; color: var(--cyan-bright); font: 700 12px/1 "Manrope", sans-serif; letter-spacing: .14em; }
.promise-point strong { font: 700 18px/1.3 "Manrope", sans-serif; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 3.75rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading > p { max-width: 610px; margin: 0 0 5px; color: var(--muted); font-size: 18px; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); border-color: var(--ink-soft); background: linear-gradient(145deg, var(--ink-soft), #123958); }
.service-card.featured::after { content: ""; position: absolute; width: 220px; height: 220px; right: -100px; top: -90px; border: 1px solid rgba(122,245,233,.16); border-radius: 50%; box-shadow: 0 0 0 35px rgba(122,245,233,.03), 0 0 0 70px rgba(122,245,233,.025); }
.card-number { position: absolute; top: 28px; right: 30px; color: #96a4ae; font: 600 12px/1 "Manrope", sans-serif; letter-spacing: .12em; }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 60px; border-radius: 16px; color: #117c7a; background: #e3f8f6; }
.featured .service-icon { color: var(--cyan-bright); background: rgba(57,213,200,.12); }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font: 700 24px/1.2 "Manrope", sans-serif; letter-spacing: -.025em; }
.service-card p { margin: 16px 0 30px; color: var(--muted); }
.featured p { color: rgba(255,255,255,.64); }
.service-card a { display: inline-flex; gap: 10px; align-items: center; margin-top: auto; color: #147c79; font-weight: 700; }
.featured a { color: var(--cyan-bright); }

.web-offering {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 66px;
  align-items: center;
  margin-top: 22px;
  padding: 58px;
  overflow: hidden;
  color: var(--white);
  border-radius: 4px 42px 4px 42px;
  background: radial-gradient(circle at 15% 20%, rgba(57,213,200,.2), transparent 32%), linear-gradient(135deg, #123d5d, var(--ink));
  box-shadow: var(--shadow);
}
.web-offering::after { content: ""; position: absolute; width: 330px; height: 330px; right: -170px; bottom: -210px; border: 1px solid rgba(122,245,233,.16); border-radius: 50%; box-shadow: 0 0 0 48px rgba(122,245,233,.028), 0 0 0 96px rgba(122,245,233,.018); }
.web-offering > * { position: relative; z-index: 1; }
.web-offering-visual { min-height: 300px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(4,16,26,.5); box-shadow: 0 24px 60px rgba(0,0,0,.24); transform: rotate(-2deg); }
.web-window-bar { height: 36px; display: flex; align-items: center; gap: 7px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.11); }
.web-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.28); }
.web-window-bar i:first-child { background: var(--cyan); }
.web-window-content { height: 188px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; padding: 26px; }
.web-window-content span { height: 82px; border: 1px solid rgba(122,245,233,.2); border-radius: 8px; background: linear-gradient(160deg, rgba(57,213,200,.12), rgba(77,141,255,.04)); }
.web-window-content strong { width: 74px; height: 74px; display: grid; place-items: center; color: var(--cyan-bright); border: 1px solid rgba(122,245,233,.48); border-radius: 21px; font: 800 24px/1 "Manrope", sans-serif; box-shadow: 0 0 34px rgba(57,213,200,.14); }
.web-status { display: inline-flex; align-items: center; gap: 9px; margin: 6px 0 0 12px; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 700; }
.web-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(57,213,200,.12); }
.web-offering .eyebrow { color: var(--cyan-bright); }
.web-offering-copy h3 { max-width: 750px; margin: 0; font: 700 clamp(2rem, 3.5vw, 3.2rem)/1.08 "Manrope", sans-serif; letter-spacing: -.045em; }
.web-offering-copy > p:not(.eyebrow) { max-width: 790px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.web-offering-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.web-offering-features span { padding: 8px 12px; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.05); font-size: 13px; font-weight: 600; }
.web-offering-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 30px; }
.web-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan-bright); font-weight: 700; }

.ai-section {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 50%, rgba(57,213,200,.13), transparent 32%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 46px 46px, 46px 46px, auto;
}
.ai-section::before { content: ""; position: absolute; width: 560px; height: 560px; left: -330px; bottom: -360px; border: 1px solid rgba(122,245,233,.12); border-radius: 50%; box-shadow: 0 0 0 80px rgba(122,245,233,.025), 0 0 0 160px rgba(122,245,233,.018); }
.ai-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; gap: 80px; align-items: center; }
.ai-copy h2 { max-width: 700px; margin: 0; font: 700 clamp(2.3rem, 4vw, 3.55rem)/1.06 "Manrope", sans-serif; letter-spacing: -.045em; }
.ai-copy > p:not(.eyebrow) { max-width: 690px; margin: 25px 0 0; color: rgba(255,255,255,.68); font-size: 18px; }
.ai-capabilities { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 32px 0; }
.ai-capabilities article { min-height: auto; display: flex; gap: 15px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }
.ai-capabilities article > span { flex: 0 0 30px; color: var(--cyan-bright); font: 700 11px/1.4 "Manrope", sans-serif; letter-spacing: .12em; }
.ai-capabilities h3 { margin: 0; font: 700 17px/1.25 "Manrope", sans-serif; }
.ai-capabilities p { margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.5; }
.ai-visual { position: relative; width: min(100%, 500px); aspect-ratio: 1; justify-self: end; }
.ai-visual::before { content: ""; position: absolute; inset: 13%; border-radius: 50%; background: radial-gradient(circle, rgba(57,213,200,.14), rgba(77,141,255,.05) 46%, transparent 70%); filter: blur(6px); }
.ai-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(122,245,233,.24); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 62%; height: 62%; animation: orbit-breathe 5s ease-in-out infinite; }
.orbit-two { width: 92%; height: 92%; border-style: dashed; border-color: rgba(77,141,255,.2); animation: orbit-turn 28s linear infinite; }
.ai-core { position: absolute; left: 50%; top: 50%; z-index: 2; width: 170px; height: 170px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(122,245,233,.5); border-radius: 36% 64% 56% 44% / 44% 38% 62% 56%; transform: translate(-50%, -50%); background: linear-gradient(145deg, rgba(18,58,90,.98), rgba(6,27,42,.96)); box-shadow: 0 0 70px rgba(57,213,200,.2), inset 0 0 35px rgba(122,245,233,.08); animation: core-morph 8s ease-in-out infinite alternate; }
.ai-core small { color: var(--cyan-bright); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.ai-core strong { margin: 5px 0 3px; font: 800 53px/.95 "Manrope", sans-serif; letter-spacing: -.07em; }
.ai-core span { color: rgba(255,255,255,.52); font-size: 11px; }
.ai-node { position: absolute; z-index: 3; min-width: 118px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(8,24,38,.86); box-shadow: 0 14px 35px rgba(0,0,0,.26); backdrop-filter: blur(10px); }
.ai-node::before { content: ""; position: absolute; width: 7px; height: 7px; border: 1px solid var(--cyan-bright); border-radius: 50%; background: var(--ink); box-shadow: 0 0 16px rgba(57,213,200,.7); }
.ai-node span, .ai-node small { display: block; }
.ai-node span { font: 700 14px/1.2 "Manrope", sans-serif; }
.ai-node small { margin-top: 4px; color: rgba(255,255,255,.46); font-size: 11px; }
.ai-node-one { left: 1%; top: 17%; }
.ai-node-one::before { right: -26px; bottom: -16px; }
.ai-node-two { right: -1%; top: 20%; }
.ai-node-two::before { left: -24px; bottom: -20px; }
.ai-node-three { left: 0; bottom: 13%; }
.ai-node-three::before { right: -27px; top: -14px; }
.ai-node-four { right: -2%; bottom: 15%; }
.ai-node-four::before { left: -26px; top: -17px; }
.ai-catalog-card { border-color: rgba(57,213,200,.5); background: linear-gradient(145deg, #effcfb, #f7fbff); }
.ai-catalog-card::after { content: "AI"; position: absolute; right: 26px; bottom: -22px; color: rgba(17,124,122,.06); font: 800 112px/1 "Manrope", sans-serif; letter-spacing: -.08em; }
.ai-catalog-card > *:not(.catalog-number):not(.catalog-card-trigger) { position: relative; z-index: 1; }

@keyframes orbit-breathe {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.97); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}
@keyframes orbit-turn {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes core-morph {
  to { border-radius: 57% 43% 39% 61% / 52% 59% 41% 48%; transform: translate(-50%, -50%) rotate(3deg); }
}

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: center; }
.about-panel { position: relative; min-height: 490px; display: flex; flex-direction: column; justify-content: flex-end; padding: 54px; overflow: hidden; color: var(--white); border-radius: 4px 42px 4px 42px; background: linear-gradient(145deg, #123d5d, var(--ink)); box-shadow: var(--shadow); }
.about-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(57,213,200,.25), transparent 32%), linear-gradient(135deg, transparent 50%, rgba(255,255,255,.035) 50%); }
.about-panel::after { content: ""; position: absolute; width: 280px; height: 280px; right: -140px; top: 40px; border: 1px solid rgba(122,245,233,.2); border-radius: 50%; box-shadow: 0 0 0 52px rgba(122,245,233,.035), 0 0 0 104px rgba(122,245,233,.02); }
.panel-kicker, .about-panel blockquote, .panel-line, .about-panel p { position: relative; z-index: 1; }
.panel-kicker { color: var(--cyan-bright); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.about-panel blockquote { max-width: 390px; margin: 24px 0 38px; font-size: clamp(2rem, 3.3vw, 3rem); line-height: 1.14; letter-spacing: -.04em; }
.panel-line { width: 50px; height: 2px; background: var(--cyan); }
.about-panel p { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 14px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.about-copy h2 { margin-bottom: 26px; }
.check-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; font-weight: 600; }
.check-list li { display: flex; align-items: center; gap: 12px; }
.check-list span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #0c6e6b; background: #e3f8f6; font-size: 13px; }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .45; background: radial-gradient(circle at 18% 15%, rgba(57,213,200,.15), transparent 30%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 48px 48px, 48px 48px; }
.contact-wrap { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.62); font-size: 18px; }
.contact-links { display: grid; gap: 16px; margin-top: 42px; }
.contact-links a { display: flex; align-items: center; gap: 15px; }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: var(--cyan-bright); background: rgba(255,255,255,.04); }
.contact-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-links small, .contact-links strong { display: block; }
.contact-links small { color: rgba(255,255,255,.44); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-links strong { margin-top: 2px; font: 600 16px/1.3 "Manrope", sans-serif; }
.contact-form { display: grid; gap: 19px; padding: 40px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid #cddbe3; border-radius: 10px; padding: 12px 14px; color: var(--ink); background: #fbfdfe; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input { height: 48px; }
.contact-form select { height: 48px; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #1f9f98; box-shadow: 0 0 0 3px rgba(57,213,200,.15); }
.form-submit { width: 100%; margin-top: 3px; }
.form-submit:disabled { opacity: .7; cursor: wait; transform: none; }
.form-note { margin: -5px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-note.is-success { color: #0b766f; font-weight: 700; }
.form-note.is-error { color: #b42318; font-weight: 700; }
.contact-website-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.support-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 28%, rgba(57,213,200,.16), transparent 27%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(140deg, #0d2f49, var(--ink) 66%);
  background-size: auto, 48px 48px, 48px 48px, auto;
}
.support-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: end; }
.support-hero h1 { max-width: 780px; margin: 0; font: 700 clamp(3rem, 5.4vw, 5rem)/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.support-hero h1 em { color: var(--cyan-bright); font-style: normal; }
.support-hero-inner > div:first-child > p:last-child { max-width: 710px; margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 18px; }
.support-response-card { min-width: 335px; display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid rgba(122,245,233,.24); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.support-response-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--cyan-bright); background: rgba(57,213,200,.12); }
.support-response-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.support-response-card small, .support-response-card strong, .support-response-card span { display: block; }
.support-response-card small { color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.support-response-card strong { margin-top: 2px; font: 700 17px/1.35 "Manrope", sans-serif; }
.support-response-card div > span { margin-top: 3px; color: rgba(255,255,255,.58); font-size: 13px; }
.support-section { background: var(--paper); }
.support-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 7vw, 105px); align-items: start; }
.support-guidance { padding-top: 18px; }
.support-guidance h2 { max-width: 430px; margin-bottom: 22px; }
.support-guidance > p:not(.eyebrow):not(.support-security-note) { max-width: 500px; color: var(--muted); font-size: 17px; }
.support-guidance-list { display: grid; gap: 18px; margin-top: 34px; }
.support-guidance-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); }
.support-guidance-list > div > span { color: #137c7a; font: 700 13px/1.7 "Manrope", sans-serif; letter-spacing: .08em; }
.support-guidance-list p { margin: 0; color: var(--muted); font-size: 14px; }
.support-guidance-list strong { display: block; margin-bottom: 2px; color: var(--ink); font: 700 15px/1.5 "Manrope", sans-serif; }
.support-security-note { margin: 30px 0 0; padding: 17px 18px; color: #315064; border-left: 3px solid var(--cyan); background: #e9f7f6; font-size: 14px; }
.support-form { border: 1px solid var(--line); box-shadow: 0 26px 65px rgba(7,20,33,.11); }
.support-form-heading { padding-bottom: 5px; border-bottom: 1px solid var(--line); }
.support-form-heading span { font: 700 23px/1.3 "Manrope", sans-serif; letter-spacing: -.025em; }
.support-form-heading p { margin: 4px 0 16px; color: var(--muted); font-size: 14px; }
.support-form .form-note.is-success { padding: 13px 14px; border-radius: 10px; background: #e8f8f4; font-size: 14px; }

.site-footer { color: rgba(255,255,255,.55); background: #04101a; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { min-height: 170px; display: grid; grid-template-columns: auto 1fr auto; gap: 45px; align-items: center; }
.footer-inner > p { max-width: 500px; margin: 0; font-size: 14px; }
.footer-meta { display: flex; flex-direction: column; gap: 5px; text-align: right; font-size: 13px; }

@media (max-width: 980px) {
  .site-nav { gap: 14px; }
  .hero { padding-top: 150px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(720px, 100%); }
  .service-strip { position: relative; left: auto; bottom: auto; transform: none; margin-top: 82px; }
  .hero::after { bottom: 63px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 340px; }
  .web-offering { grid-template-columns: .85fr 1.15fr; gap: 42px; padding: 42px; }
  .ai-grid { grid-template-columns: 1fr; gap: 58px; }
  .ai-copy { max-width: 780px; }
  .ai-visual { justify-self: center; }
  .about-grid, .contact-wrap { gap: 54px; }
  .footer-inner { grid-template-columns: auto 1fr; padding: 42px 0; }
  .footer-meta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; text-align: left; }
  .story-grid, .difference-grid, .promise-wrap { gap: 52px; }
  .support-hero-inner, .support-grid { grid-template-columns: 1fr; }
  .support-hero-inner { gap: 36px; }
  .support-response-card { width: min(100%, 430px); min-width: 0; }
  .support-guidance { max-width: 700px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1180px); }
  .site-header { position: absolute; }
  .header-inner { height: 76px; }
  .menu-toggle { display: block; position: relative; z-index: 22; }
  .site-nav { position: fixed; inset: 0; z-index: 21; display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 100px 30px; opacity: 0; pointer-events: none; transform: translateY(-10px); background: rgba(4,16,26,.98); transition: opacity .2s ease, transform .2s ease; font-size: 20px; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.1rem); }
  .hero-lead { font-size: 17px; }
  .hero-ai-callout { max-width: 580px; }
  .hero-visual { height: 380px; }
  .signal-top { right: -6px; }
  .signal-bottom { left: -6px; }
  .service-strip { justify-content: center; flex-wrap: wrap; height: auto; min-height: 64px; gap: 10px 16px; padding: 18px 0; }
  .hero::after { display: none; }
  .section { padding: 82px 0; }
  .section-heading, .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .section-heading { align-items: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 350px; }
  .web-offering { grid-template-columns: 1fr; padding: 34px; }
  .web-offering-visual { min-height: 250px; }
  .ai-capabilities { grid-template-columns: 1fr; }
  .ai-capabilities article { min-height: auto; }
  .ai-visual { width: min(100%, 430px); }
  .about-panel { min-height: 410px; padding: 36px; order: 2; }
  .contact-form { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-meta { grid-column: auto; flex-direction: column; gap: 6px; }
  .page-hero { padding: 146px 0 76px; }
  .page-hero-lead { font-size: 17px; }
  .catalog-grid, .story-grid, .difference-grid, .promise-wrap, .inner-cta-wrap { grid-template-columns: 1fr; }
  .catalog-card.wide { grid-column: auto; }
  .catalog-hover-details { display: none; }
  .service-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); border-radius: 19px; }
  .service-dialog-heading { padding: 72px 28px 32px; }
  .service-dialog-heading h2 { padding-right: 0; }
  .service-dialog-number { right: 24px; bottom: 24px; font-size: 76px; }
  .service-dialog-body { grid-template-columns: 1fr; gap: 32px; padding: 34px 28px; }
  .service-dialog-footer { align-items: stretch; flex-direction: column; padding: 24px 28px 28px; }
  .service-dialog-footer .button { width: 100%; }
  .service-dialog-close { right: 18px; top: 18px; }
  .story-statement { min-height: 390px; padding: 36px; order: 2; }
  .inner-cta-wrap { gap: 30px; }
  .support-hero { padding: 136px 0 66px; }
  .support-hero h1 { font-size: clamp(3rem, 13vw, 4.1rem); }
  .support-grid { gap: 44px; }
}

@media (hover: none), (pointer: coarse) {
  .catalog-hover-details { display: none; }
}

@media (max-width: 470px) {
  .brand-copy strong { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-ai-callout { grid-template-columns: auto 1fr; padding-right: 11px; }
  .hero-ai-arrow { display: none; }
  .hero-ai-copy strong { font-size: 12px; }
  .hero-principles { display: grid; }
  .hero-visual { height: 300px; margin-top: 10px; }
  .signal-card { max-width: 210px; padding: 10px 12px; }
  .signal-top { top: 20px; }
  .signal-bottom { bottom: 20px; }
  .signal-icon { width: 34px; height: 34px; }
  .signal-card strong { font-size: 12px; }
  .ai-visual { width: 100%; }
  .ai-core { width: 132px; height: 132px; }
  .ai-core strong { font-size: 42px; }
  .ai-node { min-width: 96px; padding: 10px 11px; }
  .ai-node span { font-size: 12px; }
  .ai-node small { font-size: 10px; }
  .service-strip i { display: none; }
  .service-strip span { width: calc(50% - 8px); text-align: center; font-size: 11px; }
  .contact-form { padding: 22px 18px; }
  .page-hero-actions .button { width: 100%; }
  .catalog-card { min-height: auto; padding: 28px; }
  .web-offering { padding: 27px 22px 32px; border-radius: 4px 28px 4px 28px; }
  .web-offering-visual { min-height: 214px; padding: 14px; }
  .web-window-content { height: 142px; padding: 18px; }
  .promise-points { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .home-page .hero-copy > *,
  .hero-visual,
  .hero-visual img,
  .hero-scan::after,
  .hero-activity span,
  .signal-card,
  .ai-core,
  .ai-orbit,
  .hero-glow,
  .hero-motion-field { animation: none !important; }
}
