/* ==========================================================================
   VELORIX INFOTECH — DESIGN ENHANCEMENTS
   --------------------------------------------------------------------------
   Everything here is additive. It loads after style.css, so it fills in the
   styles the templates asked for but never got, and polishes what was there.

   TO USE ON A LIVE SITE: copy this whole file and paste it into
   WordPress → Appearance → Customize → Additional CSS.
   (On this local site it is already loaded by functions.php.)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. MISSING ANIMATION — the portfolio image stack referenced `cyclefade`
      but no keyframes existed, so all six images sat on top of each other.
   -------------------------------------------------------------------------- */
@keyframes cyclefade {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  15%   { opacity: 1; }
  19%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* --------------------------------------------------------------------------
   2. ACCESSIBILITY + MOTION
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 3px;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .hero-visual img,
  .cycle-stack img,
  [style*="cyclefade"] { animation: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   3. STICKY, GLASSY HEADER
      The bar stays with you while scrolling; the ::before is a full-bleed
      translucent panel so the blur spans the viewport, not just the .shell.
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}
/* style.css sets `body { overflow-x: hidden }`, which turns the body into a
   scroll container and quietly kills position:sticky. `clip` clips the same
   overflow without creating one. Browsers without `clip` ignore this line and
   simply keep a non-sticky header. */
body { overflow-x: clip; }
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: rgba(251, 250, 247, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-bottom: 3px;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta { transition: background .25s, color .25s, transform .25s; }
.nav-cta:hover {
  background: var(--ink);
  color: #fffbed;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. "WHO WE ARE" CINEMATIC BAND (front-page.php)
      Had zero styling — it rendered as plain text on the page background
      while the three.js particle canvas drew behind nothing.
   -------------------------------------------------------------------------- */
.velorix-cinematic-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 138px;
  background:
    radial-gradient(120% 90% at 50% -10%, #1d3433 0%, rgba(19,35,35,0) 60%),
    var(--ink);
  color: #fffbed;
  text-align: center;
}
.velorix-cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 55% at 50% 50%, rgba(0,0,0,0) 40%, rgba(10,20,20,.55) 100%);
}
.velorix-cinematic-inner { position: relative; z-index: 2; }
.velorix-cinematic-inner .eyebrow,
.velorix-cinematic-inner .eyebrow-light {
  justify-content: center;
  color: rgba(255, 251, 237, .62);
}
.velorix-cinematic-inner h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.055em;
}
.velorix-cinematic-inner h2 em { color: var(--lime); }
.highlight-lime {
  position: relative;
  color: var(--ink);
  padding: 0 .18em;
  background: var(--lime);
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.velorix-cinematic-sub {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255, 251, 237, .72);
  font-size: 15px;
  line-height: 1.75;
}
.velorix-cinematic-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.button-outline {
  background: transparent;
  color: #fffbed;
  border: 1px solid rgba(255, 251, 237, .45);
}
.button-outline:hover {
  background: rgba(255, 251, 237, .1);
  border-color: #fffbed;
}

/* --------------------------------------------------------------------------
   5. TESTIMONIALS (front-page.php) — also completely unstyled before.
   -------------------------------------------------------------------------- */
.testimonials { padding-bottom: 140px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(19, 35, 35, .1);
  background: #fff;
}
.testimonial-card.featured-card:hover { background: #d7f68a; }

.testimonial-quote {
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.72;
  color: #3c4a49;
}
.testimonial-quote::before {
  content: "“";
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font: 44px/.6 Georgia, serif;
}
.testimonial-card.featured-card .testimonial-quote { color: #26331f; }
.testimonial-card.featured-card .testimonial-quote::before { color: #5f7a33; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-name { font-size: 13px; font-weight: 700; }
.testimonial-role {
  color: var(--muted);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.testimonial-card.featured-card .testimonial-role { color: #4b5c43; }

/* --------------------------------------------------------------------------
   6. SERVICE PAGE SHELLS + HERO ARTWORK
      .service-page and the four per-page hooks had no rules, and each hero's
      decorative block (.strategy-art, .product-art, .development-art,
      .growth-art) was invisible.
   -------------------------------------------------------------------------- */
.service-page,
.pricing-page {
  position: relative;
  overflow-x: clip;
}
.strategy-page    { --accent: var(--orange); }
.product-page     { --accent: var(--coral); }
.development-page { --accent: var(--ink); }
.growth-page      { --accent: var(--lime); }

.service-hero-art { min-height: 380px; }
/* Two concentric orbit rings, echoing the homepage hero visual. */
.service-hero-art::before,
.service-hero-art::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(19, 35, 35, .22);
}
.service-hero-art::before { width: 330px; height: 330px; }
.service-hero-art::after  { width: 232px; height: 232px; border-style: dashed; }
.art-caption-top {
  top: 4px;
  right: 2px;
  text-align: right;
  color: var(--coral);
}
.art-caption-bottom { bottom: 54px; left: 4px; }
.service-hero-art strong { letter-spacing: -.06em; }

/* 6a. Digital strategy — a chart-like riser inside the rings */
.strategy-art .art-caption-top { color: var(--orange); }
.strategy-art::after {
  border-style: solid;
  border-color: rgba(255, 127, 80, .55);
  background:
    linear-gradient(to top right, transparent calc(50% - 1px), var(--orange) 50%, transparent calc(50% + 1px)),
    radial-gradient(circle at 50% 50%, rgba(255,127,80,.12) 0 40%, transparent 41%);
}

/* 6b. Product & UX — the idea card */
.product-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  padding: 22px 20px 24px;
  transform: translate(-50%, -50%) rotate(-4deg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(19, 35, 35, .13);
  color: var(--muted);
  font: 500 9px/1.5 "DM Mono", monospace;
  letter-spacing: .09em;
}

.product-card b {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font: 800 19px/1.15 "Manrope", sans-serif;
  letter-spacing: -.045em;
}
.product-art::before { border-color: rgba(243, 110, 100, .45); }

/* 6c. Web & app development — a small code window */
.code-window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 268px;
  transform: translate(-50%, -50%);
  padding: 34px 20px 24px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(19, 35, 35, .28);
  font: 500 13px/1.6 "DM Mono", monospace;
  white-space: nowrap;
}
.code-window span {
  position: absolute;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 251, 237, .28);
}
.code-window span:nth-child(1) { left: 16px; background: var(--coral); }
.code-window span:nth-child(2) { left: 30px; background: var(--orange); }
.code-window span:nth-child(3) { left: 44px; background: var(--lime); }
.code-window i  { color: #8fb0ae; font-style: normal; }.code-window b  { color: var(--lime); font-weight: 500; }
.code-window em { color: rgba(255, 251, 237, .75); font-family: inherit; font-style: normal; letter-spacing: 0; }
.code-window::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 14px;
  width: 7px;
  height: 14px;
  background: var(--lime);
  animation: velorix-caret 1.1s steps(1) infinite;
}
@keyframes velorix-caret { 50% { opacity: 0; } }
.development-art::before { border-color: rgba(19, 35, 35, .3); }
.development-art .art-caption-top { color: var(--ink); }

/* 6d. Growth & optimization — the results badge */
.growth-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 18px rgba(205, 244, 103, .24);
  display: grid;
  place-content: center;
  text-align: center;
  font: 800 40px/1 "Manrope", sans-serif;
  letter-spacing: -.06em;
  color: var(--ink);
}
.growth-badge small {
  display: block;
  margin-top: 9px;
  font: 500 8px/1.5 "DM Mono", monospace;
  letter-spacing: .12em;
  color: #4b5c43;
}
.growth-art::before { border-color: rgba(19, 35, 35, .3); }
.growth-art .art-caption-top { color: #5f7a33; }

/* --------------------------------------------------------------------------
   7. PRICING PAGE
      37 of its 45 classes had no styles at all — this section is what turns
      it from a stack of plain text back into the designed page.
   -------------------------------------------------------------------------- */
.pricing-glow-one {
  width: 600px; height: 600px;
  top: -220px; right: -200px;
  background: #e3f5d0; opacity: .8;
}
.pricing-glow-two {
  width: 430px; height: 430px;
  top: 820px; left: -300px;
  background: #ffe2ce; opacity: .5;
}

/* 7a. Hero */
.pricing-hero {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 40px;
  padding: 56px 0 78px;
}

.pricing-hero-copy > p:not(.eyebrow):not(.pricing-hero-points) {
  max-width: 430px;
  margin-bottom: 30px;
  color: #536160;
  font-size: 15px;
  line-height: 1.75;
}
.pricing-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 10px/1.5 "DM Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
  max-width: 460px;
}
.pricing-hero-points b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font: 800 27px/1 "Manrope", sans-serif;
  letter-spacing: -.05em;
}

/* 7b. Hero artwork — four plan cards orbiting a core */
.pricing-hero-art {
  position: relative;
  min-height: 430px;
  justify-self: end;
  width: min(100%, 470px);
}
.rank-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(19, 35, 35, .22);
}
.rank-ring-one { width: 366px; height: 366px; }
.rank-ring-two { width: 250px; height: 250px; border-style: dashed; }
.rank-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 15px rgba(205, 244, 103, .22);
  display: grid;
  place-items: center;
}

.rank-card {
  position: absolute;
  width: 122px;
  padding: 12px 13px 13px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(19, 35, 35, .1);
  animation: velorix-float 7s ease-in-out infinite;
}
.rank-card span {
  display: block;
  color: var(--muted);
  font: 500 8px "DM Mono", monospace;
  letter-spacing: .12em;
}
.rank-card strong {
  display: block;
  margin: 4px 0 5px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.045em;
}
.rank-card small {
  display: block;
  color: var(--coral);
  font: 500 7px/1.4 "DM Mono", monospace;
  letter-spacing: .1em;
}
.rank-card-one   { top: 6px;    left: 0;      animation-delay: 0s; }
.rank-card-two   { top: 66px;   right: 0;     animation-delay: -1.75s; background: var(--lime); }
.rank-card-two small { color: #5f7a33; }
.rank-card-two span  { color: #4b5c43; }
.rank-card-three { bottom: 66px; left: 4px;   animation-delay: -3.5s; }
.rank-card-four  { bottom: 2px;  right: 10px; animation-delay: -5.25s; }
@keyframes velorix-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* 7c. Section heading */
.pricing-plans { padding-bottom: 30px; }
.pricing-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 10px;
}
.pricing-heading .eyebrow { margin-bottom: 16px; }

.pricing-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.15vw, 58px);
  line-height: 1.04;
  font-weight: 800;
}
.pricing-heading h2 em { color: var(--coral); }
.pricing-heading > p {
  width: 280px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* 7d. Accordions — used for both the service list and the FAQ */
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: -.03em;
  transition: color .2s, padding-left .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary:hover { color: var(--orange); padding-left: 6px; }
.faq-list summary > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font: 400 17px/1 "Manrope", sans-serif;
  transition: transform .25s ease, background .25s, color .25s;
}
.faq-list summary:hover > span { background: var(--lime); }
.faq-list details[open] > summary > span {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fffbed;
}

.faq-list details > p {
  margin: 0;
  padding: 0 0 28px;
  max-width: 700px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.faq-list details[open] > *:not(summary) {
  animation: velorix-reveal .32s ease both;
}
@keyframes velorix-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 7e. Plan cards */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(19, 35, 35, .12);
}
.plan-label {
  margin: 0 0 14px;
  color: var(--muted);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .12em;
}
.plan-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.045em;
}
.plan-summary {
  margin: 0 0 20px;
  min-height: 62px;
  color: #576261;
  font-size: 12px;
  line-height: 1.65;
}

.plan-price {
  margin: 0 0 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}
.plan-price small {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .04em;
  color: var(--muted);
}
.plan-features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.plan-features li {
  position: relative;
  padding: 0 0 11px 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #576261;
}
.plan-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-size: 12px;
}
.popular-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 11px;
  border-radius: 99px;
  background: var(--ink);
  color: #fffbed;
  font: 500 8px "DM Mono", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.plan-card-lime  { background: var(--lime); border-color: transparent; }
.plan-card-coral { background: var(--coral); border-color: transparent; }
.plan-card-dark  { background: var(--ink); border-color: transparent; color: #fffbed; }

.plan-card-lime .plan-label  { color: #4b5c43; }
.plan-card-lime .plan-summary,
.plan-card-lime .plan-features li { color: #2c3a24; }
.plan-card-lime .plan-price { border-bottom-color: rgba(19, 35, 35, .22); }
.plan-card-lime .plan-price small { color: #4b5c43; }
.plan-card-lime .plan-features li::before { color: #5f7a33; }

.plan-card-coral .plan-label { color: #5c2c26; }
.plan-card-coral .plan-summary,
.plan-card-coral .plan-features li { color: #45211d; }
.plan-card-coral .plan-price { border-bottom-color: rgba(19, 35, 35, .25); }
.plan-card-coral .plan-price small { color: #5c2c26; }
.plan-card-coral .plan-features li::before { color: #fffbed; }

.plan-card-dark .plan-label { color: rgba(255, 251, 237, .5); }
.plan-card-dark .plan-summary,
.plan-card-dark .plan-features li { color: rgba(255, 251, 237, .74); }
.plan-card-dark .plan-price { border-bottom-color: rgba(255, 255, 255, .2); }
.plan-card-dark .plan-price small { color: rgba(255, 251, 237, .55); }
.plan-card-dark .plan-features li::before { color: var(--lime); }

/* PayPal subscribe buttons sit between the price and the feature list */
.plan-card [id^="paypal-button"]:not(:empty) { margin: 4px 0 6px; min-height: 42px; }

.pricing-note {
  max-width: 620px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* 7f. "Every plan includes" band */
.included-section {
  margin-top: 40px;
  padding: 96px 0;
  background: var(--cream);
}
.included-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.included-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05;
  font-weight: 800;
}
.included-copy h2 em { color: var(--coral); }

.included-list > div {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.included-list > div:last-child { border-bottom: 1px solid var(--line); }
.included-list > div > span {
  flex: 0 0 auto;
  color: var(--coral);
  font: 500 9px "DM Mono", monospace;
  letter-spacing: .1em;
  padding-top: 3px;
}
.included-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: -.03em;
}
.included-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* 7g. FAQ section */
.faq-section { padding: 104px 0 96px; }
.faq-heading { margin-bottom: 26px; }
.faq-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 800;
}
.faq-heading h2 em { color: var(--coral); }
.faq-section .faq-list { border-top: 1px solid var(--line); }

/* 7h. Closing contact block */
.pricing-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 0 110px;
}
.pricing-contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 800;
}
.pricing-contact h2 em { color: var(--coral); }
.pricing-contact p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   8. POLISH ON THE SECTIONS THAT ALREADY WORKED
   -------------------------------------------------------------------------- */
img { max-width: 100%; height: auto; }

/* Capability cards get an accent bar that draws in on hover */
.service-card { overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::after,
.service-card:focus-visible::after { transform: scaleX(1); }
.featured-card::after { background: var(--ink); }
.service-card-link span,
.arrow-link span,
.text-link span,
.button span { transition: transform .25s ease; display: inline-block; }
.service-card:hover .service-card-link span,
.arrow-link:hover span,
.text-link:hover span,
.button:hover span { transform: translate(2px, -2px); }
.text-link:hover span { transform: translateY(2px); }

/* Process rows: the number picks up the accent as you move down the list */
.process-row:hover .process-number { color: var(--ink); }
.process-row:hover .process-icon { transform: translate(3px, 3px); }
.process-icon { transition: transform .25s ease; display: inline-block; }

/* Footer links */
.footer-links a { transition: color .2s; }

/* Offering cards on the service pages */
.offering-grid article {
  padding: 22px 20px;
  border: 1px solid transparent;
  transition: border-color .25s, background .25s, transform .25s;
}
.offering-grid article:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .55);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   9. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 850px) {
  [id] { scroll-margin-top: 92px; }
  .velorix-cinematic-hero { padding: 92px 0 96px; }
  .pricing-hero {
    grid-template-columns: 1fr;
    padding: 40px 0 56px;
  }
  .pricing-hero-art {
    justify-self: center;
    width: 100%;
    max-width: 420px;
    min-height: 400px;
    margin-top: 34px;
  }
  .pricing-heading { display: block; }
  .pricing-heading > p { width: auto; max-width: 420px; margin-top: 18px; }
  .included-section { padding: 76px 0; }
  .included-inner { grid-template-columns: 1fr; gap: 34px; }
  .faq-section { padding: 80px 0 72px; }
  .pricing-contact { grid-template-columns: 1fr; padding-bottom: 88px; }
  .testimonials { padding-bottom: 96px; }
  .service-hero-art { min-height: 340px; }
}

@media (max-width: 560px) {
  .plans-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .plan-summary { min-height: 0; }
  .pricing-hero-points { gap: 22px; }
  .pricing-hero-art { min-height: 340px; transform: scale(.85); transform-origin: top center; }
  .rank-card { width: 106px; padding: 10px 11px; }
  .rank-card strong { font-size: 14px; }
  .faq-list summary { padding: 20px 0; }
  .velorix-cinematic-ctas { flex-direction: column; align-items: stretch; }
  .velorix-cinematic-ctas .button { justify-content: center; }
}

/* --------------------------------------------------------------------------
   10. MOTION OPT-OUT for the animations introduced above
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .rank-card,
  .code-window::after,
  .faq-list details[open] > *:not(summary) { animation: none !important; }
}

