:root {
  --navy: #001058;
  --blue: #103870;
  --cyan: #28a8f0;
  --mint: #5ee2b8;
  --sun: #ffd36a;
  --ink: #0d1424;
  --muted: #617086;
  --line: #d8e3ef;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --ice: #eaf6ff;
  --shadow: 0 24px 60px rgba(0, 16, 88, 0.14);
  --tight-shadow: 0 14px 34px rgba(0, 16, 88, 0.12);
  --lift-shadow: 0 22px 48px rgba(0, 16, 88, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-shift: 0px;
  --scroll-progress: 0%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(234, 246, 255, 0.56), rgba(255, 255, 255, 0) 340px),
    #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 3px solid rgba(40, 168, 240, 0.44);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(2, 9, 27, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 rgba(0, 16, 88, 0);
  transition:
    min-height 240ms var(--ease-out),
    padding 240ms var(--ease-out),
    background 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--sun));
  box-shadow: 0 0 18px rgba(40, 168, 240, 0.34);
}

.site-header.is-scrolled {
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(2, 9, 27, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 16, 88, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease, border-color 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.brand img {
  width: 154px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 850;
}

.main-nav a {
  position: relative;
  opacity: 0.84;
  transition: opacity 160ms ease, color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-action,
.button,
.package-link {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 190ms var(--ease-out),
    background 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease,
    color 190ms ease;
}

.header-action::after,
.button::after,
.package-link::after,
.reference-link::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  transition: left 520ms var(--ease-out);
}

.header-action,
.button.primary {
  color: #fff;
  background: var(--cyan);
  box-shadow: 0 12px 28px rgba(40, 168, 240, 0.24);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.header-action:hover,
.button:hover,
.package-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 16, 88, 0.16);
}

.header-action:hover::after,
.button:hover::after,
.package-link:hover::after,
.reference-link:hover::after {
  left: 118%;
}

.header-action:active,
.button:active,
.package-link:active,
.reference-link:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  max-width: 100vw;
  min-height: clamp(720px, 84vh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 116px clamp(20px, 5vw, 72px) 58px;
  color: #fff;
  background-image: url("/veltyra/assets/veltyra-hero.png");
  background-size: cover;
  background-position: center calc(50% + var(--hero-shift));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(94, 226, 184, 0.12) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 16, 88, 0.96) 0%, rgba(0, 16, 88, 0.86) 46%, rgba(16, 56, 112, 0.55) 78%, rgba(2, 9, 27, 0.3) 100%),
    linear-gradient(180deg, rgba(2, 9, 27, 0.2) 0%, rgba(2, 9, 27, 0.82) 100%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-content {
  max-width: 850px;
  animation: hero-copy-in 720ms var(--ease-soft) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--cyan);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
li,
span,
label {
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hero-copy-in 820ms var(--ease-soft) 90ms both;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  animation: hero-copy-in 820ms var(--ease-soft) 150ms both;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(5, 13, 32, 0.4);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(10px);
  transition: transform 190ms var(--ease-out), border-color 190ms ease, background 190ms ease;
}

.hero-proof span:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 226, 184, 0.55);
  background: rgba(5, 13, 32, 0.58);
}

.hero-panel {
  align-self: end;
  width: 100%;
  perspective: 1100px;
  animation: hero-panel-in 820ms var(--ease-soft) 130ms both;
}

.browser-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 18%;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.browser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.34), transparent 32%);
  opacity: 0.24;
  transition: opacity 220ms ease;
}

.browser-card::after {
  content: none;
}

.browser-card:hover {
  border-color: rgba(94, 226, 184, 0.44);
  box-shadow: 0 38px 92px rgba(0, 0, 0, 0.38);
}

.browser-card:hover::before {
  opacity: 0.9;
}

.browser-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #eaf0f8;
  border-bottom: 1px solid #d5dfeb;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8fa2ba;
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.browser-card:hover .browser-bar span:first-child {
  background: #ff6961;
}

.browser-card:hover .browser-bar span:nth-child(2) {
  background: var(--sun);
}

.browser-card:hover .browser-bar span:nth-child(3) {
  background: var(--mint);
}

.audit-card {
  color: var(--ink);
}

.audit-hero {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 16, 88, 0.96), rgba(16, 56, 112, 0.86)),
    url("/veltyra/assets/veltyra-hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.audit-hero small {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.audit-hero strong {
  position: relative;
  display: block;
  max-width: 350px;
  font-size: 33px;
  line-height: 1;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.audit-grid article {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
  background: #f7fbff;
  transition: transform 190ms var(--ease-out), border-color 190ms ease, background 190ms ease;
}

.audit-grid article:hover {
  transform: translateY(-3px);
  border-color: #b7ddf8;
  background: #fff;
}

.audit-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.audit-grid strong {
  color: var(--navy);
  line-height: 1.1;
}

.audit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.audit-result {
  position: relative;
  display: grid;
  gap: 7px;
  margin: 0 18px 18px;
  border-radius: 7px;
  padding: 16px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.audit-result span {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.audit-result strong {
  position: relative;
  line-height: 1.18;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--navy);
}

.trust-strip article {
  position: relative;
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 26px clamp(20px, 3.2vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  overflow: hidden;
  transition: background 220ms ease, transform 220ms var(--ease-out);
}

.trust-strip article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.trust-strip article:hover {
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip article:hover::before {
  transform: scaleX(1);
}

.trust-strip strong {
  font-size: 20px;
}

.trust-strip span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 720;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease-soft),
    transform 620ms var(--ease-soft),
    filter 620ms ease;
  filter: blur(5px);
}

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

section[id] {
  scroll-margin-top: 92px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
}

.section-intro {
  max-width: 900px;
}

.section-intro.wide {
  max-width: 1050px;
  margin-bottom: 42px;
}

.section-intro.wide > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.text-stack > p {
  max-width: 780px;
  color: var(--muted);
  font-size: 19px;
}

.service-rows {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-rows article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 210ms var(--ease-out), border-color 210ms ease;
}

.service-rows article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18px;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  opacity: 0;
  transform: scaleY(0.3);
  transform-origin: top;
  transition: opacity 210ms ease, transform 210ms var(--ease-out);
}

.service-rows article:hover {
  transform: translateX(6px);
  border-color: #b7d7ee;
}

.service-rows article:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.service-rows span,
.timeline span {
  color: var(--cyan);
  font-weight: 950;
}

.service-rows h3,
.timeline h3,
.package-grid h3,
.case-card h3 {
  margin-bottom: 10px;
}

.service-rows p,
.package-grid p,
.package-grid li,
.timeline p,
.contact-copy p,
.site-footer p,
.case-card p {
  color: var(--muted);
}

.evidence {
  background: #fff;
  border-top: 1px solid var(--line);
}

.case-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 26px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 16, 88, 0.04);
  overflow: hidden;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.case-card::before,
.package-grid article::before,
.care-card::before,
.care-points article::before,
.timeline li::before,
.faq-grid article::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--sun));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: #b7d7ee;
  box-shadow: var(--lift-shadow);
}

.case-card:hover::before,
.package-grid article:hover::before,
.care-card:hover::before,
.care-points article:hover::before,
.timeline li:hover::before,
.faq-grid article:hover::before,
.legal-card:hover::before {
  transform: scaleX(1);
}

.reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.reference-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.featured-reference {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(220px, 0.55fr);
  gap: 24px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 16, 88, 0.98), rgba(16, 56, 112, 0.92)),
    url("/veltyra/assets/veltyra-hero.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.featured-reference::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--sun));
}

.featured-reference:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 16, 88, 0.2);
}

.reference-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.featured-reference h3,
.featured-reference .reference-kicker {
  color: #fff;
}

.featured-reference h3 {
  margin-bottom: 12px;
  font-size: 32px;
}

.featured-reference p,
.featured-reference li {
  color: rgba(255, 255, 255, 0.8);
}

.reference-shot {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  justify-self: center;
  overflow: hidden;
  width: min(100%, 360px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  aspect-ratio: 1200 / 4458;
  background: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease;
}

.featured-reference:hover .reference-shot {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.28);
}

.reference-shot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.reference-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 520ms var(--ease-out);
}

.reference-shot:hover img {
  transform: scale(1.025);
}

.reference-kicker,
.project-type {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-list {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 10px;
  align-self: start;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-list li {
  position: relative;
  padding-left: 20px;
  font-weight: 760;
}

.reference-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.reference-link {
  position: relative;
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 7px;
  padding: 12px 16px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  overflow: hidden;
  transition: transform 190ms var(--ease-out), box-shadow 190ms ease;
}

.reference-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.project-stack {
  display: grid;
  gap: 14px;
}

.project-card {
  min-height: 0;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(0, 16, 88, 0.04);
}

.project-card > span {
  align-self: end;
  justify-self: start;
  border: 1px solid #cce5f8;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--blue);
  background: var(--ice);
  font-size: 12px;
  font-weight: 900;
}

.package-grid article,
.care-card,
.care-points article,
.contact-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.packages {
  background: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid article {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transition:
    transform 230ms var(--ease-out),
    border-color 230ms ease,
    box-shadow 230ms ease,
    background 230ms ease;
}

.package-grid article:hover {
  transform: translateY(-6px);
  border-color: #b7d7ee;
  box-shadow: var(--lift-shadow);
}

.package-grid .highlight {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 34%),
    var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.package-grid .highlight::before {
  transform: scaleX(1);
}

.package-grid .highlight h3,
.package-grid .highlight .package-kicker,
.package-grid .highlight .price {
  color: #fff;
}

.package-grid .highlight p,
.package-grid .highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.package-kicker {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: -2px 0 18px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.scope-note {
  margin: -6px 0 18px;
  border-left: 3px solid var(--cyan);
  padding-left: 12px;
  font-size: 14px;
  font-weight: 820;
}

.package-grid ul {
  display: grid;
  gap: 11px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.package-grid li {
  position: relative;
  padding-left: 19px;
}

.package-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.package-grid li:hover::before,
.care-list li:hover::before,
.reference-list li:hover::before {
  transform: scale(1.35);
  background: var(--mint);
}

.package-link {
  width: 100%;
  margin-top: 28px;
  color: var(--navy);
  background: var(--ice);
  border-color: #bfdff6;
  box-shadow: 0 8px 18px rgba(0, 16, 88, 0.08);
}

.highlight .package-link {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.care {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.care-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.care-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: var(--tight-shadow);
  transition: transform 230ms var(--ease-out), box-shadow 230ms ease, border-color 230ms ease;
}

.care-card:hover {
  transform: translateY(-4px);
  border-color: #b7d7ee;
  box-shadow: var(--lift-shadow);
}

.care-card p,
.care-card li,
.care-points p {
  color: var(--muted);
}

.care-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.care-list li {
  position: relative;
  padding-left: 19px;
}

.care-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.care-card .package-link {
  margin-top: auto;
}

.care-points {
  display: grid;
  gap: 14px;
}

.care-points article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  transition: transform 210ms var(--ease-out), border-color 210ms ease, box-shadow 210ms ease, background 210ms ease;
}

.care-points article:hover {
  transform: translateY(-4px);
  border-color: #b7d7ee;
  background: #fff;
  box-shadow: var(--tight-shadow);
}

.care-points span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-points h3 {
  margin-bottom: 0;
}

.care-points p {
  margin-bottom: 0;
}

.process {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process .section-intro {
  margin-bottom: 42px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.timeline li:hover {
  transform: translateY(-4px);
  border-color: #b7d7ee;
  box-shadow: var(--tight-shadow);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 34px;
  transition: transform 190ms var(--ease-out), color 190ms ease;
}

.timeline li:hover span {
  transform: translateY(-3px);
  color: var(--blue);
}

.guarantee {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 16, 88, 0.97), rgba(16, 56, 112, 0.9)),
    url("/veltyra/assets/veltyra-hero.png");
  background-size: cover;
  background-position: center;
}

.guarantee h2 {
  max-width: 820px;
  color: #fff;
}

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

.guarantee-list span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
  overflow: hidden;
  transition: transform 210ms var(--ease-out), background 210ms ease, border-color 210ms ease;
}

.guarantee-list span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--mint));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 210ms var(--ease-out);
}

.guarantee-list span:hover {
  transform: translateX(4px);
  border-color: rgba(94, 226, 184, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.guarantee-list span:hover::before {
  transform: scaleY(1);
}

.faq {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.faq-grid article {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--soft);
  overflow: hidden;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-grid article:hover {
  transform: translateY(-4px);
  border-color: #b7d7ee;
  background: #fff;
  box-shadow: var(--tight-shadow);
}

.faq-grid h3 {
  margin-bottom: 12px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.contact-copy > p {
  max-width: 660px;
  margin-top: 22px;
  font-size: 19px;
}

.contact-notes {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-notes span {
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #304056;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.contact-notes span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  transform: translateY(-50%) scale(0);
  transition: transform 180ms var(--ease-out);
}

.contact-notes span:hover {
  color: var(--navy);
  transform: translateX(6px);
}

.contact-notes span:hover::before {
  transform: translateY(-50%) scale(1);
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  transition: box-shadow 240ms ease, transform 240ms var(--ease-out), border-color 240ms ease;
}

.contact-form:focus-within {
  transform: translateY(-3px);
  border-color: #b7d7ee;
  box-shadow: 0 30px 70px rgba(0, 16, 88, 0.16);
}

.contact-form.is-submitted {
  border-color: rgba(94, 226, 184, 0.85);
}

.contact-form.has-error {
  border-color: rgba(196, 47, 47, 0.42);
}

.contact-form.is-submitting {
  border-color: rgba(40, 168, 240, 0.5);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334154;
  font-size: 14px;
  font-weight: 850;
  transition: color 180ms ease;
}

.contact-form label:focus-within {
  color: var(--navy);
}

.contact-form label.has-field-error {
  color: #7c2020;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d7e6;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease, transform 170ms var(--ease-out);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(40, 168, 240, 0.16);
  transform: translateY(-1px);
  background: #fbfdff;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #c42f2f;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(196, 47, 47, 0.1);
}

.field-error {
  color: #7c2020;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-privacy a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.legal-main {
  min-height: 100vh;
  background: var(--soft);
}

.legal-hero {
  padding: 146px clamp(20px, 5vw, 72px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 16, 88, 0.97), rgba(16, 56, 112, 0.88)),
    url("/veltyra/assets/veltyra-hero.png");
  background-size: cover;
  background-position: center;
}

.legal-hero h1 {
  margin-bottom: 18px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 72px);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 16, 88, 0.04);
  overflow: hidden;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: #b7d7ee;
  box-shadow: var(--tight-shadow);
}

.primary-legal {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--tight-shadow);
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
}

.legal-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-card p + p,
.legal-card p + .legal-list,
.legal-card .legal-list + p {
  margin-top: 14px;
}

.legal-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-list li {
  padding-left: 4px;
}

.legal-main .reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.primary-legal h2,
.primary-legal .legal-kicker {
  color: #fff;
}

.primary-legal p {
  color: rgba(255, 255, 255, 0.82);
}

.legal-kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.primary-legal a {
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand img {
  width: 132px;
  height: 34px;
}

.footer-brand {
  border-color: transparent;
  padding: 0;
  background: transparent;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 850;
}

.footer-links a {
  position: relative;
  color: var(--blue);
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 190ms var(--ease-out);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(94, 226, 184, 0.55);
  border-radius: 7px;
  padding: 12px 14px;
  color: #0d4637;
  background: rgba(94, 226, 184, 0.16);
  font-size: 14px;
  font-weight: 850;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-state="info"] {
  border-color: rgba(40, 168, 240, 0.38);
  color: #123d66;
  background: rgba(40, 168, 240, 0.12);
}

.form-status[data-state="error"] {
  border-color: rgba(196, 47, 47, 0.34);
  color: #7c2020;
  background: rgba(196, 47, 47, 0.1);
}

.form-status[data-state="success"] {
  border-color: rgba(94, 226, 184, 0.55);
  color: #0d4637;
  background: rgba(94, 226, 184, 0.16);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes live-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(94, 226, 184, 0.58);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(94, 226, 184, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .browser-card,
  .hero-content,
  .hero-actions,
  .hero-proof,
  .hero-panel {
    transform: none !important;
    translate: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .hero,
  .split,
  .care-layout,
  .guarantee,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    align-self: stretch;
    max-width: 620px;
  }

  .trust-strip,
  .package-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-grid,
  .featured-reference {
    grid-template-columns: 1fr;
  }

  .reference-copy,
  .reference-shot,
  .reference-list,
  .reference-link {
    grid-column: auto;
    grid-row: auto;
  }

  .project-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand {
    max-width: 100%;
    padding: 7px 9px;
  }

  .brand img {
    width: min(132px, 42vw);
    height: 34px;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding: 106px 22px 48px;
    background-position: 62% center;
  }

  .hero-content,
  .hero-lead {
    width: 100%;
    max-width: 346px;
  }

  .hero-panel {
    max-width: 346px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 16, 88, 0.97) 0%, rgba(0, 16, 88, 0.88) 100%),
      linear-gradient(180deg, rgba(2, 9, 27, 0.18) 0%, rgba(2, 9, 27, 0.78) 100%);
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.06;
  }

  h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .trust-strip,
  .package-grid,
  .care-points,
  .reference-grid,
  .project-stack,
  .legal-grid,
  .faq-grid,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span {
    justify-content: center;
    text-align: center;
  }

  .browser-card {
    box-shadow: var(--tight-shadow);
  }

  .audit-hero {
    min-height: 158px;
  }

  .audit-hero strong {
    font-size: 26px;
  }

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

  .audit-grid article,
  .faq-grid article {
    min-height: auto;
  }

  .trust-strip article {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 66px 22px;
  }

  .service-rows article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .package-grid article,
  .care-card,
  .timeline li,
  .project-card,
  .care-points article {
    min-height: auto;
  }

  .package-grid article,
  .care-card {
    padding: 26px;
  }

  .contact-form label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 32px;
  }
}
