@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --font-heading: Manrope, Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text: #111827;
  --navy: #0b1220;
  --muted: #667085;
  --bg: #ffffff;
  --section: #f6f7fb;
  --card: #ffffff;
  --border: #e4e7ec;
  --primary: #6d5dfb;
  --blue: #3578e5;
  --green: #19a974;
  --soft-violet: #f0eeff;
  --soft-blue: #edf5ff;
  --soft-green: #eafbf4;
  --danger: #d92d20;
  --shadow-sm: 0 12px 30px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(17, 24, 39, 0.13);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1220px;
  --pad-x: clamp(18px, 4vw, 32px);
  --section-y: clamp(64px, 8vw, 110px);
  --header-h: 76px;
  --speed: 220ms;
  color-scheme: light;
}

[data-theme="dark"] {
  --text: #f5f7fa;
  --muted: #a8b0bf;
  --bg: #0b0f17;
  --section: #111722;
  --card: #151d2a;
  --border: #273142;
  --soft-violet: #1b1b35;
  --soft-blue: #13233b;
  --soft-green: #102a22;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.6vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 70%, white);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  transition: top var(--speed) ease;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(100% - (var(--pad-x) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.section-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, border-color var(--speed) ease;
}

.button {
  padding: 12px 18px;
  border: 1px solid transparent;
}

.button:hover,
.text-link:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 30%, transparent);
}

.button--secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
}

.text-link {
  color: var(--primary);
}

.text-link i,
.button i {
  width: 18px;
  height: 18px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  color: var(--text);
  transition: transform var(--speed) ease, border-color var(--speed) ease;
}

.icon-button i {
  width: 20px;
  height: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 72%, transparent);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #fff;
  font-weight: 900;
}

.brand__name,
.brand__role {
  display: block;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 900;
}

.brand__role {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: var(--section);
}

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

.menu-toggle,
.nav__close {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--section));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero__lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.23rem);
}

.hero__support {
  color: var(--text);
  font-weight: 700;
}

.hero__actions,
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  margin-top: 28px;
}

.hero__chips {
  margin-top: 24px;
}

.hero__chips span,
.availability {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.availability span,
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 16%, transparent);
}

.availability span {
  animation: pulse 1800ms ease-in-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-visual__image {
  width: min(78%, 430px);
  height: 430px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--soft-blue);
  box-shadow: var(--shadow-md);
}

.placeholder-media {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 320px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 34%),
    radial-gradient(circle at 72% 70%, color-mix(in srgb, var(--green) 14%, transparent), transparent 30%),
    linear-gradient(135deg, var(--soft-blue), var(--soft-violet));
}

.placeholder-media span {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
}

.placeholder-media small {
  max-width: 260px;
  font-weight: 800;
}

.dashboard-card,
.ops-dashboard {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--card) 94%, transparent);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.dashboard-card--main {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(92%, 500px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--section);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}

.window-bar span:nth-child(1) { background: #ff6b6b; }
.window-bar span:nth-child(2) { background: #f5c542; }
.window-bar span:nth-child(3) { background: var(--green); }

.window-bar strong {
  margin-left: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.metric {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
}

.metric i {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric strong {
  font-size: 0.95rem;
}

.floating-ticket {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(280px, 54%);
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.floating-ticket--right {
  left: auto;
  right: 18px;
  top: 76px;
  bottom: auto;
}

.floating-ticket i {
  color: var(--green);
}

.floating-ticket span,
.floating-ticket strong {
  display: block;
}

.floating-ticket span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-strip {
  background: var(--card);
  border-block: 1px solid var(--border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-strip__grid div {
  min-height: 104px;
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  font-weight: 800;
}

.trust-strip__grid div:last-child {
  border-right: 0;
}

.trust-strip__grid i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.editorial-grid,
.responsibility-grid,
.featured__grid,
.values__grid,
.contact__grid,
.skills-tools__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.info-panel,
.skill-panel,
.sample-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.info-panel,
.skill-panel,
.sample-card,
.contact-form {
  padding: clamp(22px, 3vw, 32px);
}

.info-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.info-panel dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.capabilities,
.responsibilities,
.skills-tools,
.privacy {
  background: var(--section);
}

.capabilities {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--primary) 13%, transparent), transparent 30%),
    radial-gradient(circle at 15% 80%, color-mix(in srgb, var(--green) 10%, transparent), transparent 28%),
    var(--section);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-block: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.counter {
  --counter-color: var(--primary);
  --progress-offset: 326.73;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 14px clamp(10px, 1.5vw, 20px) 18px;
  text-align: center;
  border-right: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
}

.counter:last-child {
  border-right: 0;
}

.counter--violet { --counter-color: var(--primary); }
.counter--blue { --counter-color: var(--blue); }
.counter--green { --counter-color: var(--green); }
.counter--p84 { --progress-offset: 52.28; }
.counter--p86 { --progress-offset: 45.74; }
.counter--p88 { --progress-offset: 39.21; }
.counter--p90 { --progress-offset: 32.67; }
.counter--p92 { --progress-offset: 26.14; }

.counter__ring {
  position: relative;
  width: clamp(118px, 10vw, 146px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card) 50%, transparent 52%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--border) 65%, transparent), 0 18px 36px rgba(17, 24, 39, 0.08);
}

.counter svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.counter__track,
.counter__progress {
  fill: none;
  stroke-width: 10;
}

.counter__track {
  stroke: color-mix(in srgb, var(--border) 86%, var(--card));
}

.counter__progress {
  stroke: var(--counter-color);
  stroke-dasharray: 326.73;
  stroke-dashoffset: var(--progress-offset);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
}

.js .counter:not(.is-animated) .counter__progress {
  stroke-dashoffset: 326.73;
}

.counter__number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.counter-value {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.counter__number span:last-child {
  font-size: 0.58em;
}

.counter h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-align: center;
  font-size: clamp(0.98rem, 1.2vw, 1.13rem);
}

.counter p {
  max-width: 180px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.48;
}

.capability-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: clamp(26px, 4vw, 40px) 0 0;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-weight: 800;
}

.capability-note i {
  width: 18px;
  color: var(--green);
}

.task-groups,
.experience-lists {
  display: grid;
  gap: 18px;
}

.task-groups section,
.experience-lists section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.task-groups section:first-child,
.experience-lists section:first-child {
  padding-top: 0;
}

.task-groups section:last-child,
.experience-lists section:last-child {
  border-bottom: 0;
}

.task-groups h3 {
  display: flex;
  gap: 10px;
  align-items: center;
}

.task-groups i {
  width: 22px;
  color: var(--primary);
}

.task-groups ul,
.experience-lists ul,
.privacy__checklist,
.contact-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
}

.featured {
  background: var(--bg);
}

.privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font-weight: 900;
}

.privacy-label i {
  width: 17px;
}

.ops-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.ops-dashboard__grid div {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  color: var(--muted);
  font-weight: 800;
}

.ops-dashboard__grid strong {
  color: var(--text);
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sample-card {
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}

.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sample-card span,
.sample-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
}

.sample-card p {
  color: var(--muted);
}

.process-section {
  background: var(--bg);
}

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

.process::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
}

.process article {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 0 12px;
  text-align: center;
}

.process span {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.process p {
  color: var(--muted);
  font-size: 0.93rem;
}

.pill-list,
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li,
.tool-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.tool-list span {
  color: var(--primary);
  font-size: 0.72rem;
}

.values__grid {
  align-items: center;
}

.value-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.value-list div {
  padding-left: 18px;
  border-left: 3px solid var(--primary);
}

.value-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.value-list p {
  color: var(--muted);
}

.values-visual {
  position: relative;
}

.values-visual__image {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.values-visual__note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card) 90%, transparent);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.values-visual__note i {
  color: var(--primary);
}

.privacy {
  border-block: 1px solid var(--border);
}

.privacy__grid {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.privacy__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--soft-green);
  color: var(--green);
}

.privacy__icon i {
  width: 36px;
  height: 36px;
}

.privacy__checklist {
  margin: 0;
}

.privacy__checklist li::marker {
  color: var(--green);
}

.contact {
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 26%),
    var(--bg);
}

.contact-list {
  margin: 22px 0 0;
  padding-left: 1.2rem;
}

.contact-list a {
  color: var(--primary);
  font-weight: 800;
}

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

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

.form-field label {
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  padding: 12px 13px;
}

.form-field textarea {
  resize: vertical;
}

.form-field small {
  min-height: 1em;
  color: var(--danger);
  font-weight: 700;
}

.form-field.is-error input,
.form-field.is-error select,
.form-field.is-error textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--green) 35%, var(--border));
  background: var(--soft-green);
  color: var(--text);
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--navy);
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer__grid a,
.footer__grid p {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.footer__grid nav {
  display: grid;
  gap: 8px;
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--speed) ease, transform var(--speed) ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 23, 0.68);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.js .counter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 16%, transparent); }
  50% { box-shadow: 0 0 0 7px color-mix(in srgb, var(--green) 6%, transparent); }
}

@media (max-width: 1120px) {
  .site-nav a {
    padding-inline: 8px;
  }

  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
    border-block: 0;
  }

  .counter {
    border-right: 0;
  }

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

@media (max-width: 920px) {
  .menu-toggle,
  .nav__close {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: none;
    padding: 18px;
    padding-top: calc(var(--header-h) + 12px);
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
  }

  .nav__close {
    position: absolute;
    top: 16px;
    right: 18px;
  }

  .header__cta {
    display: none;
  }

  .hero__grid,
  .editorial-grid,
  .responsibility-grid,
  .featured__grid,
  .values__grid,
  .contact__grid,
  .skills-tools__grid,
  .privacy__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .dashboard-card--main,
  .floating-ticket,
  .floating-ticket--right {
    position: static;
    width: 100%;
  }

  .hero-visual__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip__grid div:nth-child(3n) {
    border-right: 0;
  }

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

  .process::before {
    top: 0;
    bottom: 0;
    left: 33px;
    width: 2px;
    height: auto;
  }

  .process article {
    grid-template-columns: 66px 1fr;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .trust-strip__grid,
  .counter-grid,
  .dashboard-grid,
  .ops-dashboard__grid,
  .sample-grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-note {
    border-radius: var(--radius-md);
  }

  .info-panel div {
    display: grid;
  }

  .info-panel dd {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand__role {
    display: none;
  }

  .trust-strip__grid,
  .counter-grid,
  .dashboard-grid,
  .ops-dashboard__grid,
  .sample-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .counter p {
    display: none;
  }
}

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

  .js .reveal,
  .js .counter {
    opacity: 1;
    transform: none;
  }

  .js .counter:not(.is-animated) .counter__progress {
    stroke-dashoffset: var(--progress-offset);
  }
}
