/* ==========================================================================
   Rabata.io Landing Pages CSS — Dark Cinematic Theme
   BEM methodology, vanilla CSS, no build step
   ========================================================================== */

/* --- Design Tokens (CSS Custom Properties) --- */
:root {
  /* Backgrounds */
  --vl-bg-deep: #06080D;
  --vl-bg-surface: #0C1019;
  --vl-bg-card: #111622;
  --vl-bg-card-hover: #161D2E;

  /* Borders */
  --vl-border: rgba(143, 231, 241, .08);
  --vl-border-strong: rgba(143, 231, 241, .15);
  --vl-border-gray: rgba(143, 231, 241, .12);

  /* Accent Colors */
  --vl-accent: #8FE7F1;
  --vl-accent-dim: rgba(143, 231, 241, .6);
  --vl-blue: #2556BB;
  --vl-blue-hover: rgba(37, 86, 187, .85);
  --vl-second-dark: #6DD5E0;

  /* Text */
  --vl-text: #E8ECF4;
  --vl-text-secondary: #8A94A8;
  --vl-text-muted: #5A6478;
  --vl-white: #FFFFF5;

  /* Semantic */
  --vl-back-blue: #020C14;
  --vl-teal-dark: #1F3840;
  --vl-error: #FF5858;
  --vl-success: #2556BB;
  --vl-warn: #E7A006;

  /* Code */
  --vl-code-bg: #0A0E16;
  --vl-code-comment: #5A6478;
  --vl-code-str: #8FE7F1;
  --vl-code-fn: #7EB8FF;
  --vl-code-var: #C79BFF;

  /* Shadows */
  --vl-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  --vl-shadow-small: 0 2px 8px rgba(0, 0, 0, .2);
  --vl-shadow-glow: 0 0 20px rgba(143, 231, 241, .15);

  /* Radii */
  --vl-radius: 12px;
  --vl-radius-sm: 8px;
  --vl-radius-lg: 20px;

  /* Fonts */
  --font-inter: "Inter", system-ui, sans-serif;
  --font-tektur: "Tektur", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Typography */
  --text-small: 12px;
  --text-less: 14px;
  --text-normal: 16px;
  --text-larger: 18px;
  --text-h3: 20px;
  --text-pre-middle: 22px;
  --text-middle: 24px;
  --text-h2: 28px;
  --text-big: 32px;
  --text-h1: 40px;
}

/* --- Reset / Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  font-weight: normal;
  font-style: normal;
  min-width: 320px;
  min-height: 100%;
  background-color: var(--vl-bg-deep);
  color: var(--vl-text);
  font-size: var(--text-normal);
  line-height: 1.2;
  position: relative;
  overflow-x: hidden;
}

a { color: var(--vl-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--vl-white); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, .h4, h5, .h5 {
  font-family: var(--font-tektur);
  color: var(--vl-text);
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: var(--text-h1); font-weight: 700; }
h2 { font-size: var(--text-h2); padding-bottom: 20px; }
h3 { font-size: var(--text-h2); padding-bottom: 10px; }
h4, .h4 { font-size: var(--text-middle); }
h5, .h5 { font-size: var(--text-larger); }

pre { overflow-x: auto; }
code { font-family: var(--font-mono); font-size: var(--text-less); }
pre code {
  display: block;
  padding: 16px;
  background: var(--vl-bg-deep);
  color: var(--vl-text);
  border-radius: var(--vl-radius-sm);
  border: 1px solid var(--vl-border-strong);
}

.text-colored { color: var(--vl-accent); }
.text-gray { color: var(--vl-text-muted); }

/* --- Main Content --- */
.main-content { padding-top: 64px; }
.main-wrapper { position: relative; z-index: 1; }

/* --- Wrapper --- */
.wrapper {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ==========================================================================
   VL Container
   ========================================================================== */
.vl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .vl-container { padding: 0 40px; }
}

@media (min-width: 1200px) {
  .vl-container { padding: 0 20px; }
}

/* ==========================================================================
   VL Header — Fixed with blur backdrop
   ========================================================================== */
.vl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 8, 13, .95);
  border-bottom: 1px solid var(--vl-border);
}

@supports (backdrop-filter: blur(16px)) {
  .vl-header {
    background: rgba(6, 8, 13, .85);
    backdrop-filter: blur(16px);
  }
}

.vl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.vl-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vl-header__logo-img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.vl-header__logo-badge {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 13px;
  color: var(--vl-bg-deep);
  background: var(--vl-accent);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .02em;
}

.vl-header__logo-badge--s3 {
  background: var(--vl-blue);
  color: var(--vl-white);
}

.vl-header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .vl-header__nav { display: flex; }
}

.vl-header__link {
  font-size: var(--text-less);
  color: var(--vl-text-secondary);
  transition: color .2s;
  font-weight: 500;
}
.vl-header__link:hover { color: var(--vl-white); }
.vl-header__link--auth { margin-right: 4px; }

.vl-header__actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .vl-header__actions { display: flex; }
}

.vl-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 1024px) {
  .vl-header__burger { display: none; }
}

.vl-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vl-text);
  border-radius: 2px;
  transition: all .3s ease;
}

.vl-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vl-header__burger.is-active span:nth-child(2) { opacity: 0; }
.vl-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   VL Mobile Nav
   ========================================================================== */
.vl-mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(6, 8, 13, .95);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

@supports (backdrop-filter: blur(16px)) {
  .vl-mobile-nav {
    background: rgba(6, 8, 13, .97);
    backdrop-filter: blur(16px);
  }
}

@media (min-width: 1024px) {
  .vl-mobile-nav { display: none; }
}

.vl-mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.vl-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
}

.vl-mobile-nav__link {
  font-family: var(--font-tektur);
  font-size: 24px;
  font-weight: 600;
  color: var(--vl-text);
  padding: 8px 0;
  transition: color .2s;
}
.vl-mobile-nav__link:hover { color: var(--vl-accent); }

.vl-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.vl-mobile-nav__actions .vl-btn { width: 100%; }

/* ==========================================================================
   VL Button System
   ========================================================================== */
.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--vl-radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}

.vl-btn--primary {
  background: linear-gradient(135deg, var(--vl-accent), var(--vl-second-dark));
  color: var(--vl-bg-deep);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(143, 231, 241, .15);
}
.vl-btn--primary:hover {
  box-shadow: 0 0 30px rgba(143, 231, 241, .3);
  transform: translateY(-1px);
  color: var(--vl-bg-deep);
}

.vl-btn--ghost {
  background: transparent;
  color: var(--vl-accent);
  border-color: var(--vl-border-strong);
}
.vl-btn--ghost:hover {
  border-color: var(--vl-accent);
  background: rgba(143, 231, 241, .05);
  color: var(--vl-accent);
}

.vl-btn--sm { padding: 8px 20px; font-size: 14px; }
.vl-btn--lg { padding: 16px 36px; font-size: 16px; }
.vl-btn--block { display: flex; width: 100%; }

/* ==========================================================================
   Standard Button (used in content sections)
   ========================================================================== */
.button {
  display: inline-block;
  padding: 22px;
  background: linear-gradient(135deg, var(--vl-accent), var(--vl-second-dark));
  color: var(--vl-bg-deep);
  border-radius: var(--vl-radius-sm);
  font-size: var(--text-larger);
  line-height: 22px;
  font-weight: 600;
  font-family: var(--font-tektur), sans-serif;
  text-align: center;
  text-decoration: none;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--vl-shadow-glow);
}
.button:hover {
  box-shadow: 0 0 30px rgba(143, 231, 241, .3);
  transform: translateY(-1px);
  color: var(--vl-bg-deep);
}

.button--white {
  color: var(--vl-text);
  background: transparent;
  border: 1px solid var(--vl-border-strong);
  box-shadow: none;
}
.button--white:hover {
  border-color: var(--vl-accent);
  background: rgba(143, 231, 241, .05);
  color: var(--vl-text);
}

.button--small { padding: 8px 20px; font-size: var(--text-less); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 1;
}

.hero-headline {
  text-align: center;
  padding: 80px 60px 0;
  border-left: solid 1px var(--vl-border-strong);
  border-right: solid 1px var(--vl-border-strong);
}
.hero-headline h1 { margin-bottom: 16px; }

.hero-subtitle {
  font-size: var(--text-pre-middle);
  color: var(--vl-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Product Split */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: solid 1px var(--vl-border-strong);
  border-right: solid 1px var(--vl-border-strong);
}

.product-card-link {
  display: block;
}
.product-card-link:first-child .product-card {
  border-right: solid 1px var(--vl-border-strong);
}

.product-card {
  padding: 60px;
  position: relative;
  transition: background-color ease .3s;
}
.product-card:hover { background-color: rgba(143, 231, 241, .03); }

.product-card__badge {
  display: inline-block;
  font-family: var(--font-tektur);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(37, 86, 187, .2);
  color: var(--vl-accent);
  margin-bottom: 24px;
}
.product-card__badge--accent { background: rgba(143, 231, 241, .12); }

.product-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vl-radius);
  background: var(--vl-bg-card);
  border: solid 1px var(--vl-border-strong);
  color: var(--vl-accent);
  margin-bottom: 24px;
}

.product-card__title {
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 0;
  color: var(--vl-text);
}

.product-card__description {
  font-size: var(--text-normal);
  color: var(--vl-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.product-card__features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--vl-text-secondary);
  font-size: var(--text-less);
  line-height: 1.5;
}
.product-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vl-accent);
  opacity: .6;
}

.product-card__note {
  font-size: var(--text-small);
  color: var(--vl-text-muted);
  text-align: center;
}

.product-split-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 60px;
  border-left: solid 1px var(--vl-border-strong);
  border-right: solid 1px var(--vl-border-strong);
}
.product-split-cta .button {
  width: auto;
  padding: 22px 80px;
}

/* ==========================================================================
   Grant Banner
   ========================================================================== */
.main-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  background-color: var(--vl-back-blue);
  position: relative;
  overflow: hidden;
}

.main-banner__title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  position: relative;
}
.main-banner__title::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -20px;
  width: 176px;
  height: 176px;
  background: rgba(143, 231, 241, .30);
  filter: blur(60px);
  border-radius: 50%;
}
.main-banner__title h3 {
  padding: 0;
  color: var(--vl-text);
  font-size: var(--text-pre-middle);
  font-weight: 700;
  line-height: 30px;
}

.main-banner__description {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  border-left: 1px solid var(--vl-teal-dark);
  border-right: 1px solid var(--vl-teal-dark);
  position: relative;
}
.main-banner__description::before {
  content: "";
  position: absolute;
  top: -95px;
  left: 0;
  width: 176px;
  height: 176px;
  background: rgba(143, 231, 241, .30);
  filter: blur(60px);
  border-radius: 50%;
}
.main-banner__description::after {
  content: "";
  position: absolute;
  bottom: -95px;
  right: 0;
  width: 176px;
  height: 176px;
  background: rgba(143, 231, 241, .30);
  filter: blur(60px);
  border-radius: 50%;
}
.main-banner__description p {
  color: var(--vl-text);
  font-size: var(--text-normal);
  font-weight: 600;
  line-height: 24px;
}

.main-banner__action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  position: relative;
}
.main-banner__action::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -20px;
  width: 176px;
  height: 176px;
  background: rgba(143, 231, 241, .30);
  filter: blur(60px);
  border-radius: 50%;
}
.main-banner__action .button {
  padding: 10px 64px;
  font-size: var(--text-normal);
  font-weight: 600;
  line-height: 24px;
  box-shadow: none;
  border: 0;
}
.main-banner__action .button:hover { box-shadow: var(--vl-shadow-glow); }

.main-banner__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.color-second { color: var(--vl-accent); }

.visible-mobile { display: none; }
.visible-desktop { display: inline; }

/* ==========================================================================
   Ticker / Marquee
   ========================================================================== */
.banner-horizontal {
  background-color: var(--vl-bg-card);
  padding: 52px 20px;
  border-top: solid 1px var(--vl-border-strong);
  border-bottom: solid 1px var(--vl-border-strong);
}
.banner-horizontal h2 {
  font-size: var(--text-h1);
  color: var(--vl-text);
}
.banner-horizontal--small h2 {
  text-align: center;
  padding-bottom: 0;
}
.banner-horizontal--small h2 br { display: none; }

.banner-horizontal--ticker {
  height: 152px;
  padding: 40px 0;
  background-color: rgba(143, 231, 241, .06);
}

.banner-horizontal__small-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.marquee {
  overflow: hidden;
  display: flex;
}

.ticker {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.ticker-button {
  display: inline-flex;
  align-items: center;
  border: solid 1px var(--vl-border-strong);
  border-radius: 100px;
  padding: 20px;
  margin-right: 60px;
  color: var(--vl-text);
}

.ticker-button__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: cover;
}
.ticker-button__icon--cloud { background-image: url("/assets/icon_cloud-ce2105a5.svg"); }
.ticker-button__icon--person { background-image: url("/assets/icon_person-7c6a04c0.svg"); }
.ticker-button__icon--money { background-image: url("/assets/icon_money-3ad87fbc.svg"); }
.ticker-button__icon--locked { background-image: url("/assets/icon_locked-file-7c813fbe.svg"); }

.ticker-button__text {
  white-space: nowrap;
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: var(--text-larger);
  margin-left: 8px;
}

/* ==========================================================================
   Block Layout
   ========================================================================== */
.block__row {
  display: flex;
  border-left: solid 1px var(--vl-border-strong);
  border-right: solid 1px var(--vl-border-strong);
}
.block__row--main {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, auto);
}
.block__row--main .block__col:nth-child(1) { grid-column: 1 / 1; grid-row: 1 / 1; }
.block__row--main .block__col:nth-child(2) { grid-column: 2 / 2; grid-row: 1 / 3; }
.block__row--main .block__col:nth-child(3) { grid-column: 1 / 1; grid-row: 2 / 2; }
.block__row--border-bottom { border-bottom: solid 1px var(--vl-border-strong); }

.block__col {
  flex: 1;
  padding: 60px;
}
.block__col--without-pad { padding: 0; }
.block__col--small-pad { padding-left: 40px; padding-right: 40px; }
.block__col--border-right { border-right: solid 1px var(--vl-border-strong); }
.block__col--border-bottom { border-bottom: solid 1px var(--vl-border-strong); }
.block__col--border-left { border-left: solid 1px var(--vl-border-strong); }
.block__col--img-wrapper { display: flex; align-items: center; justify-content: center; }
.block__col--left, .block__col--right { width: 50%; }
.block__col--50 { width: 50%; }
.block__col--30 { width: 30%; }
.block__col--25 { width: 25%; }
.block__col--button-wrapper { display: flex; justify-content: center; padding: 40px 32px; }
.block__img-big { display: block; width: 100%; }

.block__offer-text {
  font-size: var(--text-pre-middle);
  padding-bottom: 18px;
  color: var(--vl-text-secondary);
}
.block__offer-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.block__offer-row-item { display: flex; align-items: center; }
.block__offer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: cover;
}
.block__offer-row-text {
  flex-shrink: 0;
  padding-left: 6px;
  color: var(--vl-text-secondary);
}

/* ==========================================================================
   Card
   ========================================================================== */
.card p {
  margin-bottom: 24px;
  color: var(--vl-text-secondary);
}

.card__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 48px;
  background-color: var(--vl-accent);
  font-family: var(--font-tektur);
  font-size: var(--text-big);
  font-weight: 600;
  color: var(--vl-bg-deep);
  position: relative;
  margin-bottom: 20px;
  border-radius: var(--vl-radius-sm);
}
.card__label::before, .card__label::after { content: none; }

/* ==========================================================================
   Animation (Step Animation)
   ========================================================================== */
.animation {
  margin: 0 auto;
  width: 350px;
  height: 310px;
  position: sticky;
  top: 60px;
}

.animation__top, .animation__bottom {
  width: 350px;
  height: 101px;
  left: 0;
}
.animation__top, .animation__bottom, .animation__inner {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}

.animation__top {
  top: 0;
  background-image: url("/assets/animation_midnight_top-dfe8d493.svg");
  z-index: 10;
}
.animation__bottom {
  bottom: 0;
  background-image: url("/assets/animation_midnight_bottom-1ec1b8be.svg");
}
.animation__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  left: calc(50% - 130px);
  bottom: 66px;
  background-image: url("/assets/animation_midnight_inner-4dde1a24.svg");
  width: 260px;
  height: 190px;
  z-index: 5;
}

.animation__inner-img {
  visibility: hidden;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 55px;
  transition: all ease .3s;
}

.animation__inner-img-0 {
  opacity: 1;
  visibility: visible;
  width: 65px;
  height: 86px;
  top: 60px;
  left: calc(50% - 33px);
  background-image: url("/assets/animation_midnight_img-0-2c54c8fa.svg");
}
.animation__inner-img-1 {
  width: 115px;
  height: 78px;
  left: calc(50% - 56px);
  top: 105px;
  background-image: url("/assets/animation_midnight_img-1-d59ee757.svg");
}
.animation__inner-img-2 {
  width: 110px;
  height: 75px;
  top: 105px;
  left: calc(50% - 55px);
  background-image: url("/assets/animation_midnight_img-2-10bb2bbc.svg");
}
.animation__inner-img-3 {
  width: 92px;
  height: 92px;
  top: 60px;
  left: calc(50% - 55px);
  background-image: url("/assets/animation_midnight_img-3-24f5659a.svg");
}
.animation__inner-img-4 {
  width: 92px;
  height: 92px;
  top: 60px;
  left: calc(50% - 55px);
  background-image: url("/assets/animation_midnight_img-4-238924ff.svg");
}

/* Step Animate Classes */
#animated-block.show-img-0 .animation__inner-img.animation__inner-img-0 {
  opacity: 1; visibility: visible; top: 60px;
}
#animated-block.show-img-0.show-img-1 .animation__inner-img.animation__inner-img-0 {
  visibility: hidden; opacity: 0;
}
#animated-block.show-img-1 .animation__inner-img.animation__inner-img-0 {
  visibility: hidden; opacity: 0;
}
#animated-block.show-img-1 .animation__inner-img.animation__inner-img-1 {
  visibility: visible; opacity: 1; top: 70px;
}
#animated-block.show-img-2 .animation__inner-img.animation__inner-img-0,
#animated-block.show-img-2 .animation__inner-img.animation__inner-img-1 {
  visibility: hidden; opacity: 0;
}
#animated-block.show-img-2 .animation__inner-img.animation__inner-img-2 {
  visibility: visible; opacity: 1; top: 70px;
}
#animated-block.show-img-3 .animation__inner-img.animation__inner-img-0,
#animated-block.show-img-3 .animation__inner-img.animation__inner-img-1,
#animated-block.show-img-3 .animation__inner-img.animation__inner-img-2 {
  visibility: hidden; opacity: 0;
}
#animated-block.show-img-3 .animation__inner-img.animation__inner-img-3 {
  visibility: visible; opacity: 1;
}
#animated-block.show-img-4 .animation__inner-img.animation__inner-img-0,
#animated-block.show-img-4 .animation__inner-img.animation__inner-img-1,
#animated-block.show-img-4 .animation__inner-img.animation__inner-img-2,
#animated-block.show-img-4 .animation__inner-img.animation__inner-img-3 {
  visibility: hidden; opacity: 0;
}
#animated-block.show-img-4 .animation__inner-img.animation__inner-img-4 {
  visibility: visible; opacity: 1;
}

/* ==========================================================================
   Calculator
   ========================================================================== */
.calculator-wrapper__toggle {
  display: flex;
  gap: 30px;
}
.calculator-wrapper__toggle--modal {
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.calculator-wrapper__toggle--modal .calculator__toggle-item { width: 100%; }

.calculator-wrapper__toggle-content {
  display: flex;
  flex-direction: column;
}

.calculator-wrapper__toggle-title {
  font-family: var(--font-tektur);
  font-size: var(--text-h2);
  line-height: 1;
  font-weight: 600;
  padding-left: 42px;
  margin-bottom: 10px;
}

.calculator-wrapper__toggle-text {
  line-height: 1.25;
  color: var(--vl-text-secondary);
  padding-left: 42px;
}

.calculator-wrapper__toggle-item {
  position: relative;
  width: 50%;
}
.calculator-wrapper__toggle-item .checkbox {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.calculator-wrapper__toggle-item .checkbox + label {
  display: flex;
  align-items: center;
  min-height: 140px;
  position: relative;
  padding: 30px 60px;
  top: 0;
  left: 0;
  background-color: var(--vl-bg-card);
  border: solid 1px var(--vl-border-strong);
  width: 100%;
  height: auto;
  margin-right: 0;
  border-radius: var(--vl-radius);
  box-shadow: var(--vl-shadow);
  transition: all ease .3s;
  color: var(--vl-text);
}
.calculator-wrapper__toggle-item .checkbox + label::after {
  content: "";
  display: block;
  position: absolute;
  left: 60px;
  top: 28px;
  border-radius: 50%;
  border: solid 4px var(--vl-border-strong);
  background-color: var(--vl-bg-card);
  background-image: url("/assets/icon_complete-34b1202a.svg");
  background-repeat: no-repeat;
  background-size: 0;
  background-position: 50%;
  width: 32px;
  height: 32px;
  transition: all ease .3s;
}
.calculator-wrapper__toggle-item .checkbox:checked + label {
  background: var(--vl-blue);
  color: var(--vl-white);
  box-shadow: var(--vl-shadow-glow);
  height: 100%;
}
.calculator-wrapper__toggle-item .checkbox:checked + label::after {
  background-color: var(--vl-white);
  border-color: var(--vl-white);
  background-size: 80%;
}

.calculator-wrapper__content { margin-top: 60px; }
.calculator-wrapper__ranges {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
.calculator-wrapper__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
.calculator-wrapper__bottom .button { width: 50%; }

.calculator-wrapper__comparison-link {
  margin-top: 40px;
  text-align: center;
}
.calculator-wrapper__comparison-link p {
  margin-top: 25px;
  font-size: var(--text-normal);
  color: var(--vl-text-secondary);
}
.calculator-wrapper__comparison-link a {
  color: var(--vl-accent);
  font-weight: 600;
  text-decoration: underline;
}
.calculator-wrapper__comparison-link a:hover { text-decoration: none; }

.calculator-range { width: 50%; }
.calculator-range--full { width: 100%; }
.calculator-range__row { display: flex; justify-content: space-between; }
.calculator-range__row--top { align-items: center; margin-bottom: 10px; }
.calculator-range__row--bottom { margin-top: 17px; color: var(--vl-text-secondary); }

.calculator-range__digit {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: var(--text-larger);
  color: var(--vl-accent);
}

/* Range Input */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: var(--vl-bg-card);
  border: solid 1px var(--vl-border-strong);
  border-radius: var(--vl-radius-sm);
}
input[type="range"]:focus { outline: none; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 32px;
  background-image: url("/assets/icon_slider-9201e7d4.svg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
input[type="range"]::-moz-range-thumb {
  width: 40px;
  height: 32px;
  background-image: url("/assets/icon_slider-9201e7d4.svg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

/* Calculator Diagram */
.calculator-diagram { margin-bottom: 16px; }
.calculator-diagram:last-child { margin-bottom: 0; }
.calculator-diagram.active { color: var(--vl-accent); }
.calculator-diagram.active .calculator-diagram__scale-inner { background-color: var(--vl-accent); }

.calculator-diagram__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  z-index: 5;
  color: var(--vl-text-secondary);
}

.calculator-diagram__digit {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: var(--text-larger);
}

.calculator-diagram__scale-wrapper {
  border-radius: var(--vl-radius-sm);
  background-color: var(--vl-border-strong);
  padding: 1px;
}

.calculator-diagram__scale {
  display: flex;
  height: 48px;
  position: relative;
  border-radius: var(--vl-radius-sm);
  background-color: var(--vl-bg-card);
}

.calculator-diagram__scale-inner {
  background-color: var(--vl-text-muted);
  border-right: solid 1px var(--vl-border-strong);
  border-radius: var(--vl-radius-sm) 0 0 var(--vl-radius-sm);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features__row {
  display: flex;
  border-left: solid 1px var(--vl-border-strong);
  border-right: solid 1px var(--vl-border-strong);
  border-bottom: solid 1px var(--vl-border-strong);
}

.features__img-wrapper {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: solid 1px var(--vl-border-strong);
}
.features__img-wrapper img { display: block; }

.features__info {
  width: 75%;
  padding: 60px;
}

/* ==========================================================================
   Banner
   ========================================================================== */
.banner {
  display: flex;
  position: relative;
  background-color: var(--vl-bg-card);
  border: solid 1px var(--vl-border-strong);
  border-radius: var(--vl-radius-lg);
  padding: 52px 60px 60px;
  box-shadow: var(--vl-shadow);
}
.banner h2 { font-size: var(--text-h1); color: var(--vl-text); }
.banner__img-wrap {
  width: 43%;
  margin-top: -52px;
  margin-bottom: -60px;
  position: relative;
  overflow: hidden;
}
.banner__img-wrap img { display: block; width: 100%; position: absolute; }
.banner__info { width: 57%; margin-left: 60px; }
.banner__info p { margin-bottom: 24px; color: var(--vl-text-secondary); }

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background: var(--vl-bg-surface);
  color: var(--vl-text);
  border-top: solid 1px var(--vl-border-strong);
  position: relative;
  z-index: 2;
}
.site-footer .wrapper { padding: 60px; }

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section--main { max-width: 300px; }

.footer-logo-img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: var(--vl-text-secondary);
  font-size: var(--text-less);
  margin-bottom: 20px;
}

.footer-section-title {
  font-family: var(--font-tektur);
  font-size: var(--text-larger);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--vl-text);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-links li {
  margin: 0 0 8px;
  padding: 0;
  display: block;
}
.footer-links a {
  color: var(--vl-text-muted);
  text-decoration: none;
  font-size: var(--text-less);
  line-height: 1.5;
  transition: color ease .3s;
  display: inline-block;
  text-align: left;
}
.footer-links a:hover { color: var(--vl-accent); }

.footer-bottom {
  border-top: solid 1px var(--vl-border-strong);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright,
.footer-compliance {
  color: var(--vl-text-muted);
  font-size: var(--text-small);
  margin: 0;
}

/* ==========================================================================
   Geometric Animated Background
   ========================================================================== */
.geo-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
.geo-glow--top-left {
  top: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(143, 231, 241, .06) 0%, transparent 70%);
  filter: blur(60px);
}
.geo-glow--bottom-right {
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 86, 187, .08) 0%, transparent 70%);
  filter: blur(80px);
}
.geo-glow--center {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 231, 241, .03) 0%, transparent 60%);
  filter: blur(120px);
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(143, 231, 241, .04);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.geo-shape--hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(143, 231, 241, .02), transparent);
  border: 0;
}
.geo-shape--hexagon:nth-child(1) {
  width: 120px; height: 120px; top: 8%; left: 5%;
  animation: geo-float-1 25s infinite, geo-rotate 40s linear infinite;
}
.geo-shape--hexagon:nth-child(2) {
  width: 80px; height: 80px; top: 35%; right: 8%;
  animation: geo-float-2 30s infinite, geo-rotate-reverse 35s linear infinite;
}
.geo-shape--hexagon:nth-child(3) {
  width: 60px; height: 60px; bottom: 20%; left: 12%;
  animation: geo-float-3 28s infinite, geo-rotate 50s linear infinite;
}

.geo-shape--diamond {
  width: 40px; height: 40px;
  transform: rotate(45deg);
  background: rgba(143, 231, 241, .03);
  border-color: rgba(143, 231, 241, .06);
}
.geo-shape--diamond:nth-child(4) { top: 15%; right: 20%; animation: geo-drift-down 20s infinite; }
.geo-shape--diamond:nth-child(5) { width: 24px; height: 24px; top: 60%; left: 8%; animation: geo-drift-up 18s infinite; }
.geo-shape--diamond:nth-child(6) { width: 32px; height: 32px; bottom: 35%; right: 15%; animation: geo-drift-down 22s infinite; animation-delay: -5s; }

.geo-shape--circle {
  border-radius: 50%;
  background: transparent;
}
.geo-shape--circle:nth-child(7) { width: 200px; height: 200px; top: 45%; left: 25%; border-color: rgba(143, 231, 241, .03); animation: geo-pulse 12s ease-in-out infinite; }
.geo-shape--circle:nth-child(8) { width: 140px; height: 140px; top: 10%; right: 30%; border-color: rgba(37, 86, 187, .05); animation: geo-pulse 15s ease-in-out infinite; animation-delay: -4s; }

.geo-shape--triangle {
  width: 0; height: 0; border: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(143, 231, 241, .02);
}
.geo-shape--triangle:nth-child(9) { top: 70%; right: 25%; animation: geo-float-1 22s infinite, geo-rotate 45s linear infinite; }
.geo-shape--triangle:nth-child(10) { top: 25%; left: 35%; border-left-width: 20px; border-right-width: 20px; border-bottom-width: 35px; animation: geo-float-2 26s infinite, geo-rotate-reverse 55s linear infinite; }

.geo-shape--line {
  height: 1px; width: 150px; border: 0;
  background: linear-gradient(90deg, transparent, rgba(143, 231, 241, .06), transparent);
}
.geo-shape--line:nth-child(11) { top: 30%; left: -50px; transform: rotate(25deg); animation: geo-scan-right 18s linear infinite; }
.geo-shape--line:nth-child(12) { top: 55%; right: -50px; width: 200px; transform: rotate(-15deg); animation: geo-scan-left 22s linear infinite; }

.geo-shape--grid-dot {
  width: 3px; height: 3px; border-radius: 50%; border: 0;
  background: rgba(143, 231, 241, .08);
}
/* Grid dots positioned statically since CSS can't do SCSS random() */
.geo-shape--grid-dot:nth-child(13) { top: 12%; left: 67%; animation: geo-twinkle 11s ease-in-out infinite; animation-delay: -3s; }
.geo-shape--grid-dot:nth-child(14) { top: 45%; left: 23%; animation: geo-twinkle 14s ease-in-out infinite; animation-delay: -7s; }
.geo-shape--grid-dot:nth-child(15) { top: 78%; left: 82%; animation: geo-twinkle 9s ease-in-out infinite; animation-delay: -1s; }
.geo-shape--grid-dot:nth-child(16) { top: 33%; left: 45%; animation: geo-twinkle 12s ease-in-out infinite; animation-delay: -5s; }
.geo-shape--grid-dot:nth-child(17) { top: 89%; left: 15%; animation: geo-twinkle 10s ease-in-out infinite; animation-delay: -8s; }
.geo-shape--grid-dot:nth-child(18) { top: 22%; left: 91%; animation: geo-twinkle 13s ease-in-out infinite; animation-delay: -2s; }
.geo-shape--grid-dot:nth-child(19) { top: 56%; left: 55%; animation: geo-twinkle 15s ease-in-out infinite; animation-delay: -6s; }
.geo-shape--grid-dot:nth-child(20) { top: 71%; left: 38%; animation: geo-twinkle 8s ease-in-out infinite; animation-delay: -4s; }
.geo-shape--grid-dot:nth-child(21) { top: 8%; left: 78%; animation: geo-twinkle 11s ease-in-out infinite; animation-delay: -9s; }
.geo-shape--grid-dot:nth-child(22) { top: 62%; left: 5%; animation: geo-twinkle 14s ease-in-out infinite; animation-delay: -3s; }
.geo-shape--grid-dot:nth-child(23) { top: 93%; left: 50%; animation: geo-twinkle 9s ease-in-out infinite; animation-delay: -7s; }
.geo-shape--grid-dot:nth-child(24) { top: 41%; left: 72%; animation: geo-twinkle 12s ease-in-out infinite; animation-delay: -1s; }

/* Keyframes */
@keyframes geo-float-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, -35px); }
  75% { transform: translate(20px, -15px); }
}
@keyframes geo-float-2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 15px); }
  50% { transform: translate(10px, 30px); }
  75% { transform: translate(-15px, 10px); }
}
@keyframes geo-float-3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -10px); }
  66% { transform: translate(-15px, 20px); }
}
@keyframes geo-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes geo-rotate-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes geo-drift-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50% { transform: rotate(45deg) translateY(30px); opacity: 1; }
}
@keyframes geo-drift-up {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .6; }
  50% { transform: rotate(45deg) translateY(-25px); opacity: 1; }
}
@keyframes geo-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.15); opacity: 1; }
}
@keyframes geo-twinkle {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.5); }
}
@keyframes geo-scan-right {
  0% { transform: rotate(25deg) translateX(-200px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(25deg) translateX(calc(100vw + 200px)); opacity: 0; }
}
@keyframes geo-scan-left {
  0% { transform: rotate(-15deg) translateX(200px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(-15deg) translateX(calc(-100vw - 200px)); opacity: 0; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .geo-shape { animation: none !important; }
  .geo-glow { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Comparison Pages
   ========================================================================== */
.comparison-page .block { padding: 40px 0; }
.comparison-header { padding: 20px 0; }
.comparison-header h1 { margin-bottom: 16px; }
.comparison-subtitle { font-size: var(--text-larger); color: var(--vl-text-secondary); line-height: 1.5; }

.comparison-methodology { padding: 20px 0; }
.comparison-methodology h2 { margin-bottom: 16px; }
.comparison-methodology p { margin-bottom: 12px; line-height: 1.6; }

.methodology-content h2 { margin: 24px 0 12px; }
.methodology-content h3 { margin: 20px 0 8px; }
.methodology-content h4 { margin: 16px 0 8px; }
.methodology-content p { margin-bottom: 12px; line-height: 1.6; }
.methodology-content ul { margin: 8px 0 16px 24px; list-style: disc; }
.methodology-content ul li { margin-bottom: 6px; line-height: 1.5; color: var(--vl-text-secondary); }
.methodology-content ol { margin: 8px 0 16px 24px; }
.methodology-content ol li { margin-bottom: 6px; line-height: 1.5; color: var(--vl-text-secondary); }
.methodology-content pre { margin: 12px 0; }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin: 16px 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: var(--text-less); }
.comparison-table th {
  background: var(--vl-bg-card);
  color: var(--vl-text);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--vl-border-strong);
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--vl-border);
  color: var(--vl-text-secondary);
}
.comparison-table .provider-name { font-weight: 600; color: var(--vl-text); }
.comparison-table .best-value { color: var(--vl-accent); font-weight: 600; }
.comparison-table .highlight { background: rgba(143, 231, 241, .03); }
.comparison-table.digits td:not(.provider-name) { font-family: var(--font-tektur); text-align: right; }
.table-unit { font-weight: 400; font-size: var(--text-small); opacity: 0.7; }

/* Charts */
.comparison-charts { display: flex; flex-direction: column; gap: 40px; }
.chart-section h3 { margin-bottom: 16px; }
.chart-img { width: 100%; border-radius: var(--vl-radius-sm); border: 1px solid var(--vl-border-strong); }
.chart-description { margin-top: 12px; font-size: var(--text-less); color: var(--vl-text-secondary); line-height: 1.5; }

/* Provider Comparison Grid */
.provider-comparison-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.provider-comparison-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--vl-border-strong);
  border-radius: var(--vl-radius-sm);
  transition: all 0.2s;
  color: var(--vl-text);
  background: var(--vl-bg-card);
}
.provider-comparison-card:hover {
  border-color: var(--vl-accent);
  box-shadow: var(--vl-shadow-glow);
  color: var(--vl-text);
}
.provider-comparison-card h3 { margin-bottom: 8px; font-size: var(--text-normal); padding-bottom: 0; }
.provider-comparison-card p { font-size: var(--text-less); color: var(--vl-text-secondary); line-height: 1.4; }

/* CTA */
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.cta-box { background: rgba(231, 154, 6, 0.1); border: 1px solid rgba(231, 154, 6, 0.3); border-radius: var(--vl-radius-sm); padding: 16px; margin: 16px 0; }

/* Legal Page */
.legal-page { padding: 40px 0; max-width: 800px; }
.legal-page__back-link { display: inline-block; margin-bottom: 24px; font-size: var(--text-less); }
.legal-page h1 { margin-bottom: 24px; }
.legal-page h3 { margin: 24px 0 12px; }
.legal-page h4 { margin: 16px 0 8px; }
.legal-page p { margin-bottom: 12px; line-height: 1.6; color: var(--vl-text-secondary); }
.legal-page ul { margin: 8px 0 16px 24px; list-style: disc; }
.legal-page ul li { margin-bottom: 6px; line-height: 1.5; color: var(--vl-text-secondary); }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.checklist-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--vl-border-strong);
  border-radius: var(--vl-radius-sm);
  background: var(--vl-bg-card);
}
.checklist-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--vl-blue);
  color: #fff;
  border-radius: 50%;
  font-size: var(--text-less);
  font-weight: 600;
}
.checklist-content h4 { margin-bottom: 4px; }
.checklist-content p { font-size: var(--text-less); color: var(--vl-text-secondary); }

/* ==========================================================================
   Responsive — Desktop (max-width: 1199px)
   ========================================================================== */
@media screen and (max-width: 1199px) {
  .wrapper { padding: 0; }
  .main-content { padding-top: 57px; }

  h2 { font-size: var(--text-pre-middle); }
  h3 { font-size: var(--text-pre-middle); padding-bottom: 12px; }

  .card p { margin-bottom: 16px; }
  .card__label { margin-bottom: 12px; }

  .animation {
    top: calc(64px + 60px);
    width: 180px;
    height: 160px;
  }
  .animation__top, .animation__bottom { width: 180px; height: 52px; }
  .animation__inner { width: 140px; height: 100px; left: calc(50% - 70px); bottom: 35px; }
  .animation__inner .animation__inner-img-3 { width: 44px; height: 44px; top: 34px; left: calc(50% - 22px); }
  .animation__inner .animation__inner-img-4 { width: 44px; height: 44px; top: 34px; left: calc(50% - 22px); }
  .animation__inner-img-0 { width: 33px; height: 44px; top: 35px; left: calc(50% - 17px); }
  .animation__inner-img-1 { width: 59px; height: 40px; left: calc(50% - 29px); top: 54px; }
  .animation__inner-img-2 { width: 56px; height: 38px; top: 54px; left: calc(50% - 28px); }

  #animated-block.show-img-0 .animation__inner-img.animation__inner-img-0 { top: 35px; }
  #animated-block.show-img-1 .animation__inner-img.animation__inner-img-1 { top: 35px; }
  #animated-block.show-img-2 .animation__inner-img.animation__inner-img-2 { top: 40px; }

  .block__row { border-left: 0; border-right: 0; }
  .block__row--main .block__col:nth-child(1) { padding: 32px 30px 32px 40px; }
  .block__row--main .block__col:nth-child(2),
  .block__row--main .block__col:nth-child(3) { padding: 40px; }
  .block__col { padding: 60px 40px; }
  .block__col--without-pad { padding: 0; }
  .block__col--left { width: 36%; }
  .block__col--right { width: 64%; }
  .block__offer-text { font-size: var(--text-normal); }

  .calculator-wrapper__content { margin-top: 40px; }
  .calculator-wrapper__toggle-content { margin-bottom: 8px; }
  .calculator-wrapper__toggle { gap: 20px; }
  .calculator-wrapper__toggle-text { font-size: var(--text-small); }
  .calculator-wrapper__toggle-item .checkbox + label { min-height: 110px; padding: 20px 40px 20px 20px; }
  .calculator-wrapper__toggle-item .checkbox + label::after { left: 20px; top: 16px; }
  .calculator-wrapper__toggle-title { font-size: var(--text-pre-middle); font-weight: 700; padding-left: 40px; }
  .calculator-wrapper__bottom { gap: 20px; margin-top: 40px; }
  .calculator-wrapper__ranges { margin-bottom: 40px; gap: 20px; }

  .calculator-diagram__scale { height: 28px; }
  .calculator-diagram__top { margin-bottom: 4px; }

  .features__row { border-left: 0; border-right: 0; }
  .features__img-wrapper { width: 36%; }
  .features__info { width: 64%; padding: 60px 40px; }

  .banner-horizontal--ticker { height: 132px; padding: 30px 0; }
  .ticker-button { margin-right: 30px; }
  .ticker-button__text { font-size: var(--text-less); }

  .banner { border-radius: var(--vl-radius); padding: 40px; }
  .banner h2 { font-size: var(--text-pre-middle); padding-bottom: 12px; }
  .banner h2 br { display: none; }
  .banner__img-wrap { display: none; }
  .banner__info { width: 100%; margin-left: 0; }
  .banner__info p { margin-bottom: 16px; }

  .site-footer .wrapper { padding: 60px 40px; }
  .footer-content { grid-template-columns: repeat(3, 1fr); }
  .footer-section--main { grid-column: span 3; max-width: 100%; }

  /* Grant Banner */
  .main-banner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 12px 40px 14px;
    gap: 4px 20px;
  }
  .main-banner::before {
    content: "";
    position: absolute;
    top: -95px;
    left: 50%;
    width: 176px;
    height: 176px;
    transform: translateX(-50%);
    background: rgba(143, 231, 241, .30);
    filter: blur(60px);
    border-radius: 50%;
  }
  .main-banner__title { grid-column: 1 / 2; grid-row: 1 / 2; justify-content: flex-start; padding: 0; }
  .main-banner__title::before { display: none; }
  .main-banner__description { grid-column: 1 / 2; grid-row: 2 / 2; justify-content: flex-start; border: 0; padding: 0; }
  .main-banner__description::before { top: -40px; left: -60px; }
  .main-banner__description::after { display: none; }
  .main-banner__description p { font-size: var(--text-small); line-height: 20px; }
  .main-banner__action { grid-column: 2 / 2; grid-row: span 2; padding: 0; }
  .main-banner__action::before { top: -65px; right: -90px; }
  .main-banner__action .button { padding: 8px 34px; }
  .main-banner .visible-mobile { display: inline; }
  .main-banner .visible-desktop { display: none; }
  .main-banner br { display: none; }

  /* Hero */
  .hero-headline { padding: 60px 40px 0; border-left: 0; border-right: 0; }
  .hero-subtitle { font-size: var(--text-normal); }
  .product-split { border-left: 0; border-right: 0; }
  .product-card { padding: 40px; }
  .product-split-cta { border-left: 0; border-right: 0; padding: 40px; }
}

/* ==========================================================================
   Responsive — Tablet (max-width: 767px)
   ========================================================================== */
@media screen and (max-width: 767px) {
  h1 { font-size: var(--text-pre-middle); line-height: 1.3; }
  h3 { padding-bottom: 6px; }

  .calculator-wrapper__toggle { flex-direction: column; gap: 16px; }
  .calculator-wrapper__toggle-item { width: 100%; }
  .calculator-wrapper__toggle-item .checkbox + label { padding: 20px; }
  .calculator-wrapper__ranges { flex-direction: column; align-items: flex-start; }
  .calculator-wrapper__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .calculator-wrapper__bottom .button { width: 100%; }

  .calculator-range { width: 100%; }
  .calculator-range__label { font-size: var(--text-small); }
  .calculator-range__digit { font-size: var(--text-less); }
  .calculator-range__row--bottom { font-size: var(--text-small); }

  .calculator-diagram__scale { height: 20px; }
  .calculator-diagram__label { font-size: var(--text-small); }
  .calculator-diagram__digit { font-size: var(--text-less); }

  .banner-horizontal h2 { font-size: var(--text-pre-middle); }
  .banner-horizontal--small h2 br { display: inline-block; }
  .banner-horizontal--ticker { height: 120px; padding: 30px 0; }

  .features__content { padding-top: 50px; }
  .features__row { padding: 20px; border-bottom: 0; flex-direction: column; }
  .features__img-wrapper, .features__info { width: 100%; }
  .features__img-wrapper { justify-content: flex-start; border-right: 0; }
  .features__info { padding: 0; margin-top: 12px; }

  .banner { border: 0; border-radius: 0; box-shadow: none; padding: 70px 20px; }
  .banner h2 br { display: inline-block; }
  .banner__info p { margin-bottom: 20px; }

  .ticker-button { padding: 14px; margin-right: 20px; }
  .ticker-button__text { margin-left: 6px; }

  .block__img-big { max-width: 500px; }
  .block__offer-text { padding-bottom: 16px; }
  .block__col { padding: 60px 20px; }
  .block__col--without-pad { padding: 0; }
  .block__col--border-bottom { border-bottom: 0; }
  .block__col--border-left { border-left: 0; }
  .block__col--button-wrapper { padding: 20px 20px 70px; }
  .block__col--left { display: none; }
  .block__col--right { width: 100%; padding: 50px 0; }
  .block__col--right .block__col { padding: 20px; }

  .block__row--main {
    display: flex;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 55px;
  }
  .block__row--main .block__col:nth-child(1),
  .block__row--main .block__col:nth-child(2),
  .block__row--main .block__col:nth-child(3) { padding: 15px 20px; }

  /* Grant Banner */
  .main-banner {
    grid-template-rows: auto;
    padding: 16px 20px;
  }
  .main-banner::before { top: 5px; left: 0; transform: none; }
  .main-banner__title h3 { font-size: var(--text-normal); line-height: var(--text-middle); }
  .main-banner__description { display: none; }
  .main-banner__action::before { display: none; }
  .main-banner br { display: block; }

  /* Hero */
  .hero-headline { padding: 40px 20px 0; }
  .hero-headline h1 { font-size: var(--text-h2); }
  .hero-subtitle { font-size: var(--text-less); }
  .product-split { grid-template-columns: 1fr; }
  .product-card { padding: 30px 20px; }
  .product-card-link:first-child .product-card { border-right: 0; border-bottom: solid 1px var(--vl-border-strong); }
  .product-split-cta { padding: 30px 20px; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .footer-content .footer-links br { display: none; }
  .footer-section--main { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Comparison */
  .provider-comparison-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   Responsive — Small Phone (max-width: 575px)
   ========================================================================== */
@media screen and (max-width: 575px) {
  .block__offer-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media screen and (max-width: 390px) {
  .main-banner__action .button { padding: 8px 24px; }
}

/* ==========================================================================
   Menu Open State
   ========================================================================== */
.menu-open { overflow: hidden; }

/* ==========================================================================
   No Scroll
   ========================================================================== */
.no-scroll { overflow-y: hidden; }

/* ==========================================================================
   VL Component System — Shared Landing Components
   Used by: /video, /s3, /comparison/* pages
   ========================================================================== */

/* --- VL Wrapper --- */
.vl {
  position: relative;
  overflow: hidden;
}

/* --- Section Helpers --- */
.vl-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.vl-section-title {
  font-family: var(--font-tektur);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--vl-white);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .vl-section-title { font-size: 40px; }
}

.vl-section-subtitle {
  font-size: 17px;
  color: var(--vl-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   VL Hero
   ========================================================================== */
.vl-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .vl-hero { padding: 160px 0 100px; }
}
@media (min-width: 1024px) {
  .vl-hero { padding: 160px 0 120px; }
}

.vl-hero .vl-container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .vl-hero .vl-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.vl-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vl-hero__glow--top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(143,231,241,.08) 0%, transparent 70%);
}
.vl-hero__glow--right {
  top: 20%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,86,187,.1) 0%, transparent 70%);
}

.vl-hero__content {
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .vl-hero__content { margin-bottom: 0; }
}

.vl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vl-accent-dim);
  border: 1px solid var(--vl-border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  background: rgba(143,231,241,.03);
}

.vl-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vl-accent);
  animation: vl-pulse-dot 2s ease-in-out infinite;
}

.vl-hero__title {
  font-family: var(--font-tektur);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--vl-white);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
@media (min-width: 768px) {
  .vl-hero__title { font-size: 52px; }
}
@media (min-width: 1024px) {
  .vl-hero__title { font-size: 60px; }
}

.vl-hero__title-accent {
  color: var(--vl-accent);
}

.vl-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--vl-text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .vl-hero__subtitle { font-size: 18px; }
}

.vl-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero — Player Mockup */
.vl-hero__visual {
  position: relative;
}

.vl-hero__player {
  border-radius: var(--vl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vl-border-strong);
  background: var(--vl-bg-card);
  box-shadow: 0 4px 40px rgba(0,0,0,.4), 0 0 80px rgba(143,231,241,.05);
}

.vl-hero__player-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--vl-bg-surface);
  border-bottom: 1px solid var(--vl-border);
}

.vl-hero__player-dots {
  display: flex;
  gap: 6px;
}
.vl-hero__player-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vl-text-muted);
  opacity: .4;
}
.vl-hero__player-dots span:first-child { background: #FF5F57; opacity: .7; }
.vl-hero__player-dots span:nth-child(2) { background: #FEBC2E; opacity: .7; }
.vl-hero__player-dots span:last-child { background: #28C840; opacity: .7; }

.vl-hero__player-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vl-text-muted);
}

.vl-hero__player-screen {
  position: relative;
  background: linear-gradient(135deg, #0A1628, #0E1A2E);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
}

.vl-hero__player-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(143,231,241,.1);
  border: 2px solid rgba(143,231,241,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vl-accent);
  transition: all .3s;
}
.vl-hero__player-play svg {
  margin-left: 4px;
}
.vl-hero__player-play:hover {
  background: rgba(143,231,241,.2);
  transform: scale(1.05);
}

.vl-hero__player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
}

.vl-hero__player-progress {
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.vl-hero__player-progress-bar {
  width: 38%;
  height: 100%;
  background: var(--vl-accent);
  border-radius: 2px;
}

.vl-hero__player-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

@keyframes vl-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* ==========================================================================
   VL Features Grid
   ========================================================================== */
.vl-features {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-features { padding: 120px 0; }
}

.vl-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .vl-features__grid { grid-template-columns: 1fr 1fr; }
}

.vl-feature-card {
  position: relative;
  padding: 32px;
  background: var(--vl-bg-card);
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius);
  transition: all .3s ease;
}
@media (min-width: 768px) {
  .vl-feature-card { padding: 40px; }
}
.vl-feature-card:hover {
  border-color: var(--vl-border-strong);
  background: var(--vl-bg-card-hover);
  transform: translateY(-2px);
}

.vl-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--vl-radius-sm);
  background: rgba(143,231,241,.06);
  border: 1px solid var(--vl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vl-accent);
  margin-bottom: 20px;
}

.vl-feature-card__title {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 20px;
  color: var(--vl-white);
  margin-bottom: 10px;
  padding-bottom: 0;
}

.vl-feature-card__text {
  font-size: 15px;
  color: var(--vl-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   VL Quickstart / Steps + Code Block
   ========================================================================== */
.vl-quickstart {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-quickstart { padding: 120px 0; }
}

.vl-quickstart__inner {
  /* default: stacked */
}
@media (min-width: 1024px) {
  .vl-quickstart__inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
  }
}

.vl-quickstart__info {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .vl-quickstart__info {
    margin-bottom: 0;
    position: sticky;
    top: 100px;
  }
}
.vl-quickstart__info .vl-section-title { text-align: left; }
.vl-quickstart__info .vl-section-subtitle { margin: 0; text-align: left; }

.vl-quickstart__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.vl-quickstart__step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--vl-text-secondary);
}

.vl-quickstart__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(143,231,241,.08);
  border: 1px solid var(--vl-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--vl-accent);
  flex-shrink: 0;
}

/* Code Block */
.vl-code-block {
  background: var(--vl-code-bg);
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius);
  overflow: hidden;
}

.vl-code-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--vl-border);
}

.vl-code-block__lang {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vl-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.vl-code-block__copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--vl-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--vl-text-muted);
  cursor: pointer;
  transition: all .2s;
}
.vl-code-block__copy:hover {
  border-color: var(--vl-accent);
  color: var(--vl-accent);
}
.vl-code-block__copy.is-copied {
  border-color: #28C840;
  color: #28C840;
}

.vl-code-block__body {
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  color: var(--vl-text);
}
@media (min-width: 768px) {
  .vl-code-block__body { padding: 24px; font-size: 14px; }
}

.vl-code-comment { color: var(--vl-code-comment); }
.vl-code-str { color: var(--vl-code-str); }
.vl-code-fn { color: var(--vl-code-fn); }
.vl-code-var { color: var(--vl-code-var); }

/* ==========================================================================
   VL Comparison Table
   ========================================================================== */
.vl-comparison {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-comparison { padding: 120px 0; }
}

.vl-comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius);
  background: var(--vl-bg-card);
}

.vl-comparison__table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}
.vl-comparison__table th,
.vl-comparison__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--vl-border);
  white-space: nowrap;
}
.vl-comparison__table thead th {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 14px;
  color: var(--vl-text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--vl-bg-surface);
  position: sticky;
  top: 0;
}
.vl-comparison__table tbody td {
  color: var(--vl-text-secondary);
}
.vl-comparison__table tbody tr:last-child td {
  border-bottom: 0;
}
.vl-comparison__table tbody tr:hover td {
  background: rgba(143,231,241,.02);
}

.vl-comparison__feature-col {
  font-weight: 500;
  color: var(--vl-text) !important;
}
.vl-comparison__highlight-col {
  color: var(--vl-accent) !important;
  font-weight: 500;
  background: rgba(143,231,241,.03);
}
.vl-comparison__highlight-col strong {
  color: var(--vl-accent);
  font-weight: 700;
}
.vl-comparison__warn {
  color: var(--vl-warn) !important;
}
.vl-comparison__note {
  display: block;
  font-size: 11px;
  color: var(--vl-text-muted);
  font-weight: normal;
  margin-top: 2px;
}

.vl-comparison .vl-icon-check {
  vertical-align: middle;
  margin-right: 4px;
  color: var(--vl-accent);
}

.vl-comparison__cta {
  text-align: center;
  margin-top: 32px;
}
.vl-comparison__cta p {
  font-size: 15px;
  color: var(--vl-text-secondary);
  margin-bottom: 16px;
}

.vl-comparison__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.vl-comparison__links a {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 13px;
  color: var(--vl-accent);
  border: 1px solid var(--vl-border-strong);
  border-radius: 100px;
  padding: 6px 16px;
  transition: all .2s;
}
.vl-comparison__links a:hover {
  border-color: var(--vl-accent);
  background: rgba(143,231,241,.05);
}

/* ==========================================================================
   VL Pricing
   ========================================================================== */
.vl-pricing {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-pricing { padding: 120px 0; }
}

.vl-pricing__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(143,231,241,.06) 0%, transparent 70%);
  pointer-events: none;
}

.vl-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .vl-pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

.vl-pricing__footer {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--vl-text-secondary);
}
.vl-pricing__footer strong {
  color: var(--vl-text);
}
.vl-pricing__footer a {
  color: var(--vl-accent);
  border-bottom: 1px solid rgba(143,231,241,.3);
  transition: border-color .2s;
}
.vl-pricing__footer a:hover {
  border-color: var(--vl-accent);
}

.vl-pricing-card {
  position: relative;
  padding: 36px;
  background: var(--vl-bg-card);
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius);
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.vl-pricing-card:hover {
  border-color: var(--vl-border-strong);
  transform: translateY(-2px);
}

.vl-pricing-card--featured {
  border-color: rgba(143,231,241,.25);
  background: linear-gradient(180deg, rgba(143,231,241,.04) 0%, var(--vl-bg-card) 100%);
  box-shadow: 0 0 40px rgba(143,231,241,.06);
}
.vl-pricing-card--featured:hover {
  border-color: rgba(143,231,241,.4);
}

.vl-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vl-accent);
  color: var(--vl-bg-deep);
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.vl-pricing-card__header {
  margin-bottom: 28px;
}

.vl-pricing-card__name {
  font-family: var(--font-tektur);
  font-weight: 600;
  font-size: 20px;
  color: var(--vl-text);
  margin-bottom: 8px;
  padding-bottom: 0;
}

.vl-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.vl-pricing-card__currency {
  font-family: var(--font-tektur);
  font-size: 24px;
  font-weight: 600;
  color: var(--vl-accent);
}

.vl-pricing-card__amount {
  font-family: var(--font-tektur);
  font-size: 48px;
  font-weight: 700;
  color: var(--vl-white);
  line-height: 1;
}
.vl-pricing-card__amount--custom {
  font-size: 22px;
  color: var(--vl-text-secondary);
}

.vl-pricing-card__period {
  font-size: 16px;
  color: var(--vl-text-muted);
  margin-left: 4px;
}

.vl-pricing-card__features {
  flex: 1;
  margin-bottom: 28px;
}
.vl-pricing-card__features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--vl-text-secondary);
  border-bottom: 1px solid var(--vl-border);
  padding-left: 20px;
  position: relative;
}
.vl-pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(143,231,241,.2);
  border: 1px solid var(--vl-border-strong);
}
.vl-pricing-card__features li:last-child {
  border-bottom: 0;
}

/* ==========================================================================
   VL Migration
   ========================================================================== */
.vl-migration {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-migration { padding: 120px 0; }
}

.vl-migration__inner {
  background: var(--vl-bg-card);
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius-lg);
  padding: 48px 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .vl-migration__inner { padding: 64px 60px; }
}

.vl-migration__content {
  margin-bottom: 48px;
}
.vl-migration__content .vl-section-title {
  margin-bottom: 8px;
}

.vl-migration__lead {
  font-family: var(--font-tektur);
  font-size: 20px;
  color: var(--vl-accent);
  font-weight: 600;
}

.vl-migration__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .vl-migration__steps {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.vl-migration__step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(143,231,241,.04);
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius-sm);
  padding: 12px 20px;
}

.vl-migration__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(143,231,241,.1);
  border: 1px solid var(--vl-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--vl-accent);
  flex-shrink: 0;
}

.vl-migration__step-text {
  font-size: 14px;
  color: var(--vl-text);
  white-space: nowrap;
}

.vl-migration__step-arrow {
  color: var(--vl-text-muted);
  display: none;
}
@media (min-width: 768px) {
  .vl-migration__step-arrow { display: block; }
}
.vl-migration__step-arrow svg {
  width: 20px;
  height: 20px;
}

.vl-migration__note {
  font-size: 14px;
  color: var(--vl-text-muted);
}

/* ==========================================================================
   VL Demo
   ========================================================================== */
.vl-demo {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-demo { padding: 120px 0; }
}

.vl-demo__player-frame {
  border: 1px solid var(--vl-border);
  border-radius: var(--vl-radius-lg);
  overflow: hidden;
  background: var(--vl-bg-card);
}

.vl-demo__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--vl-text-muted);
}
.vl-demo__placeholder p {
  font-size: 14px;
}

.vl-demo__placeholder-icon {
  color: var(--vl-text-muted);
  opacity: .4;
}

/* ==========================================================================
   VL FAQ
   ========================================================================== */
.vl-faq {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-faq { padding: 120px 0; }
}

.vl-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.vl-faq__item {
  border-bottom: 1px solid var(--vl-border);
}
.vl-faq__item:first-child {
  border-top: 1px solid var(--vl-border);
}

.vl-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  color: var(--vl-text);
  transition: color .2s;
}
.vl-faq__question:hover {
  color: var(--vl-accent);
}
.vl-faq__question[aria-expanded="true"] {
  color: var(--vl-accent);
}
.vl-faq__question[aria-expanded="true"] .vl-faq__chevron {
  transform: rotate(180deg);
}

.vl-faq__chevron {
  flex-shrink: 0;
  color: var(--vl-text-muted);
  transition: transform .3s ease;
}

.vl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.vl-faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--vl-text-secondary);
  padding-bottom: 20px;
}
.vl-faq__answer a {
  color: var(--vl-accent);
  border-bottom: 1px solid rgba(143,231,241,.3);
  transition: border-color .2s;
}
.vl-faq__answer a:hover {
  border-color: var(--vl-accent);
}

/* ==========================================================================
   VL CTA
   ========================================================================== */
.vl-cta {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  border-top: 1px solid var(--vl-border);
  overflow: hidden;
}

.vl-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(143,231,241,.08) 0%, transparent 70%);
  pointer-events: none;
}

.vl-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.vl-cta__title {
  font-family: var(--font-tektur);
  font-weight: 700;
  font-size: 36px;
  color: var(--vl-white);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .vl-cta__title { font-size: 44px; }
}

.vl-cta__text {
  font-size: 17px;
  color: var(--vl-text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.vl-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   VL Geometric Background (JS-generated canvas)
   ========================================================================== */
.vl-geo-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vl-geo-shape {
  position: absolute;
  border: 1px solid rgba(143,231,241,.04);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.vl-geo-shape--hexagon {
  width: 120px;
  height: 120px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(143,231,241,.02), transparent);
  border: 0;
}
.vl-geo-shape--hexagon:nth-child(1) {
  top: 8%; left: 5%;
  animation: vl-geo-float-1 25s infinite, vl-geo-rotate 40s linear infinite;
}
.vl-geo-shape--hexagon:nth-child(2) {
  top: 35%; right: 8%;
  width: 80px; height: 80px;
  animation: vl-geo-float-2 30s infinite, vl-geo-rotate-reverse 35s linear infinite;
}
.vl-geo-shape--hexagon:nth-child(3) {
  bottom: 20%; left: 12%;
  width: 60px; height: 60px;
  animation: vl-geo-float-3 28s infinite, vl-geo-rotate 50s linear infinite;
}

.vl-geo-shape--diamond {
  width: 40px; height: 40px;
  transform: rotate(45deg);
  background: rgba(143,231,241,.03);
  border-color: rgba(143,231,241,.06);
}
.vl-geo-shape--diamond:nth-child(4) {
  top: 15%; right: 20%;
  animation: vl-geo-drift-down 20s infinite;
}
.vl-geo-shape--diamond:nth-child(5) {
  top: 60%; left: 8%;
  width: 24px; height: 24px;
  animation: vl-geo-drift-up 18s infinite;
}
.vl-geo-shape--diamond:nth-child(6) {
  bottom: 35%; right: 15%;
  width: 32px; height: 32px;
  animation: vl-geo-drift-down 22s infinite;
  animation-delay: -5s;
}

.vl-geo-shape--circle {
  border-radius: 50%;
  background: transparent;
}
.vl-geo-shape--circle:nth-child(7) {
  top: 45%; left: 25%;
  width: 200px; height: 200px;
  border-color: rgba(143,231,241,.03);
  animation: vl-geo-pulse 12s ease-in-out infinite;
}
.vl-geo-shape--circle:nth-child(8) {
  top: 10%; right: 30%;
  width: 140px; height: 140px;
  border-color: rgba(37,86,187,.05);
  animation: vl-geo-pulse 15s ease-in-out infinite;
  animation-delay: -4s;
}

.vl-geo-shape--triangle {
  width: 0; height: 0; border: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(143,231,241,.02);
}
.vl-geo-shape--triangle:nth-child(9) {
  top: 70%; right: 25%;
  animation: vl-geo-float-1 22s infinite, vl-geo-rotate 45s linear infinite;
}
.vl-geo-shape--triangle:nth-child(10) {
  top: 25%; left: 35%;
  border-left-width: 20px; border-right-width: 20px; border-bottom-width: 35px;
  animation: vl-geo-float-2 26s infinite, vl-geo-rotate-reverse 55s linear infinite;
}

.vl-geo-shape--line {
  height: 1px; width: 150px; border: 0;
  background: linear-gradient(90deg, transparent, rgba(143,231,241,.06), transparent);
}
.vl-geo-shape--line:nth-child(11) {
  top: 30%; left: -50px;
  transform: rotate(25deg);
  animation: vl-geo-scan-right 18s linear infinite;
}
.vl-geo-shape--line:nth-child(12) {
  top: 55%; right: -50px; width: 200px;
  transform: rotate(-15deg);
  animation: vl-geo-scan-left 22s linear infinite;
}

.vl-geo-shape--grid-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  border: 0;
  background: rgba(143,231,241,.08);
}
.vl-geo-shape--grid-dot:nth-child(13) { top: 12%; left: 45%; animation: vl-geo-twinkle 10s ease-in-out infinite; animation-delay: -3s; }
.vl-geo-shape--grid-dot:nth-child(14) { top: 38%; left: 72%; animation: vl-geo-twinkle 12s ease-in-out infinite; animation-delay: -7s; }
.vl-geo-shape--grid-dot:nth-child(15) { top: 65%; left: 18%; animation: vl-geo-twinkle 9s ease-in-out infinite; animation-delay: -1s; }
.vl-geo-shape--grid-dot:nth-child(16) { top: 82%; left: 55%; animation: vl-geo-twinkle 14s ease-in-out infinite; animation-delay: -5s; }
.vl-geo-shape--grid-dot:nth-child(17) { top: 25%; left: 88%; animation: vl-geo-twinkle 11s ease-in-out infinite; animation-delay: -9s; }
.vl-geo-shape--grid-dot:nth-child(18) { top: 50%; left: 32%; animation: vl-geo-twinkle 13s ease-in-out infinite; animation-delay: -2s; }
.vl-geo-shape--grid-dot:nth-child(19) { top: 72%; left: 78%; animation: vl-geo-twinkle 10s ease-in-out infinite; animation-delay: -6s; }
.vl-geo-shape--grid-dot:nth-child(20) { top: 5%; left: 62%; animation: vl-geo-twinkle 15s ease-in-out infinite; animation-delay: -4s; }
.vl-geo-shape--grid-dot:nth-child(21) { top: 90%; left: 8%; animation: vl-geo-twinkle 12s ease-in-out infinite; animation-delay: -8s; }
.vl-geo-shape--grid-dot:nth-child(22) { top: 43%; left: 95%; animation: vl-geo-twinkle 9s ease-in-out infinite; animation-delay: -10s; }
.vl-geo-shape--grid-dot:nth-child(23) { top: 58%; left: 50%; animation: vl-geo-twinkle 11s ease-in-out infinite; animation-delay: -3s; }
.vl-geo-shape--grid-dot:nth-child(24) { top: 15%; left: 28%; animation: vl-geo-twinkle 14s ease-in-out infinite; animation-delay: -7s; }

/* VL Geometric Keyframes */
@keyframes vl-geo-float-1 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, -35px); }
  75% { transform: translate(20px, -15px); }
}
@keyframes vl-geo-float-2 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 15px); }
  50% { transform: translate(10px, 30px); }
  75% { transform: translate(-15px, 10px); }
}
@keyframes vl-geo-float-3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(25px, -10px); }
  66% { transform: translate(-15px, 20px); }
}
@keyframes vl-geo-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes vl-geo-rotate-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes vl-geo-drift-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .4; }
  50% { transform: rotate(45deg) translateY(30px); opacity: 1; }
}
@keyframes vl-geo-drift-up {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: .6; }
  50% { transform: rotate(45deg) translateY(-25px); opacity: 1; }
}
@keyframes vl-geo-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.15); opacity: 1; }
}
@keyframes vl-geo-twinkle {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .8; transform: scale(1.5); }
}
@keyframes vl-geo-scan-right {
  0% { transform: rotate(25deg) translateX(-200px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(25deg) translateX(calc(100vw + 200px)); opacity: 0; }
}
@keyframes vl-geo-scan-left {
  0% { transform: rotate(-15deg) translateX(200px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(-15deg) translateX(calc(-100vw - 200px)); opacity: 0; }
}

/* VL Reveal Animation */
.vl-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.vl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .vl-geo-shape { animation: none !important; }
  .vl-reveal { opacity: 1; transform: none; transition: none; }
  .vl-s3-visual__bar-fill { transition: none; }
}

/* ==========================================================================
   S3 Landing — Hero Visual (Benchmark Display)
   ========================================================================== */

.vl-hero__player-screen--s3 {
  aspect-ratio: 4 / 3;
  padding: 24px;
}
@media (min-width: 768px) {
  .vl-hero__player-screen--s3 { padding: 32px; }
}

.vl-s3-visual { width: 100%; }

.vl-s3-visual__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .vl-s3-visual__metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.vl-s3-visual__metric {
  text-align: center;
  padding: 12px 8px;
  background: rgba(143, 231, 241, .03);
  border: 1px solid var(--vl-border);
  border-radius: 8px;
}

.vl-s3-visual__metric-value {
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--vl-accent);
  display: block;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .vl-s3-visual__metric-value { font-size: 28px; }
}

.vl-s3-visual__metric-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vl-text-muted);
  display: block;
  margin-top: 2px;
}

.vl-s3-visual__metric-label {
  font-size: 11px;
  color: var(--vl-text-secondary);
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

.vl-s3-visual__bar-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.vl-s3-visual__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.vl-s3-visual__bar::before {
  content: attr(data-label);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vl-text-muted);
  width: 48px;
  flex-shrink: 0;
  text-align: right;
}

.vl-s3-visual__bar-fill {
  height: 20px;
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(.25, .8, .25, 1);
}
.vl-s3-visual__bar-fill--accent {
  background: linear-gradient(90deg, var(--vl-blue), var(--vl-accent));
  box-shadow: 0 0 12px rgba(143, 231, 241, .2);
}
.vl-s3-visual__bar-fill--muted {
  background: rgba(143, 231, 241, .12);
}

.vl-s3-visual__caption {
  text-align: center;
  font-size: 11px;
  color: var(--vl-text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   Grant Application Page
   ========================================================================== */

/* Grant Badge (framed text) */
.vl-grant-badge {
  display: inline-flex;
  position: relative;
  border: 1px solid var(--vl-teal-dark);
  background-color: rgba(143, 231, 241, .04);
  margin-bottom: 16px;
}
.vl-grant-badge__text {
  display: inline-flex;
  position: relative;
  font-family: 'Tektur', sans-serif;
  color: var(--vl-accent);
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  padding: 7px 14px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .vl-grant-badge__text { font-size: 40px; }
}
.vl-grant-badge__corner {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--vl-back-blue);
  border: 1px solid var(--vl-accent);
}
.vl-grant-badge__corner--tl { top: -4px; left: -4px; }
.vl-grant-badge__corner--tr { top: -4px; right: -4px; }
.vl-grant-badge__corner--bl { bottom: -4px; left: -4px; }
.vl-grant-badge__corner--br { bottom: -4px; right: -4px; }

/* Grant Hero — two-column layout with illustration */
.vl-grant-hero__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .vl-grant-hero__row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.vl-grant-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .vl-grant-hero__text {
    align-items: flex-start;
    text-align: left;
  }
}
.vl-grant-hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .vl-grant-hero__img {
    border-left: 1px solid var(--vl-teal-dark);
  }
}
.vl-grant-hero__illustration {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}
@media (min-width: 1200px) {
  .vl-grant-hero__illustration { max-width: 462px; }
}

.vl-grant-hero__note {
  font-size: 14px;
  color: var(--vl-text-secondary);
  opacity: .5;
  margin-top: 16px;
}

/* Conditions Grid */
.vl-grant-conditions {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-grant-conditions { padding: 100px 0; }
}

.vl-grant-conditions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 576px) {
  .vl-grant-conditions__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .vl-grant-conditions__grid { grid-template-columns: repeat(4, 1fr); }
}

.vl-grant-condition {
  position: relative;
  background-color: var(--vl-teal-dark);
  padding: 1px;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
.vl-grant-condition__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 24px 16px;
  background-color: var(--vl-bg-card);
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}
@media (max-width: 575px) {
  .vl-grant-condition {
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  }
  .vl-grant-condition__inner {
    flex-direction: row;
    justify-content: flex-start;
    clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  }
  .vl-grant-condition__text { text-align: left; }
}

.vl-grant-condition__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  background-color: rgba(143, 231, 241, .06);
  border: 1px solid var(--vl-accent);
  border-radius: 50%;
}
.vl-grant-condition__icon img {
  width: 24px;
  height: 24px;
}

.vl-grant-condition__text {
  color: var(--vl-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

/* About Rabata */
.vl-grant-about {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-grant-about { padding: 100px 0; }
}

.vl-grant-about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .vl-grant-about__inner { grid-template-columns: 1fr 1fr; }
}

/* Laptop illustration for About Rabata */
.vl-grant-about__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-bottom: 1px solid var(--vl-teal-dark);
}
@media (min-width: 1024px) {
  .vl-grant-about__illustration {
    border-bottom: none;
    border-right: 1px solid var(--vl-teal-dark);
  }
}

.vl-grant-laptop {
  width: 280px;
  max-width: 100%;
}
.vl-grant-laptop__top {
  height: 24px;
  background-color: var(--vl-bg-card);
  border: 1px solid var(--vl-teal-dark);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.vl-grant-laptop__top::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 6px;
  display: flex;
  background-image: radial-gradient(circle, var(--vl-teal-dark) 3px, transparent 3px);
  background-size: 14px 6px;
  background-repeat: repeat-x;
}
.vl-grant-laptop__screen {
  aspect-ratio: 16 / 10;
  background-color: rgba(12, 16, 25, .9);
  border: 1px solid var(--vl-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vl-grant-laptop__play {
  width: 48px;
  height: 48px;
}
.vl-grant-laptop__bottom {
  height: 24px;
  background-color: var(--vl-bg-card);
  border: 1px solid var(--vl-teal-dark);
  border-top: none;
  border-radius: 0 0 8px 8px;
  position: relative;
}
.vl-grant-laptop__bottom::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 6px;
  background-image: radial-gradient(circle, var(--vl-teal-dark) 3px, transparent 3px);
  background-size: 14px 6px;
  background-repeat: repeat-x;
}

.vl-grant-about__content {
  display: flex;
  flex-direction: column;
}

.vl-grant-about__intro {
  padding: 24px 0;
  border-bottom: 1px solid var(--vl-teal-dark);
}
@media (min-width: 1024px) {
  .vl-grant-about__intro { padding: 24px; }
}

.vl-grant-about__intro .vl-section-title {
  margin-bottom: 16px;
}
.vl-grant-about__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vl-text-secondary);
}

.vl-grant-about__features {
  display: flex;
  flex-direction: column;
}
.vl-grant-about__feature {
  padding: 20px 0;
  border-bottom: 1px solid var(--vl-teal-dark);
}
@media (min-width: 1024px) {
  .vl-grant-about__feature { padding: 20px 24px; }
}
.vl-grant-about__feature:last-child { border-bottom: none; }

.vl-grant-about__feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 15px;
  background-color: var(--vl-bg-card);
  border: 1px solid var(--vl-accent);
  font-family: 'Tektur', sans-serif;
  color: var(--vl-accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 12px;
  clip-path: polygon(10px 0%, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0% 10px);
}

.vl-grant-about__feature h3 {
  color: var(--vl-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 768px) {
  .vl-grant-about__feature h3 { font-size: 20px; }
}

.vl-grant-about__feature ul {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.vl-grant-about__feature li {
  position: relative;
  padding-left: 12px;
  color: var(--vl-text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.vl-grant-about__feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background-color: var(--vl-accent);
}
.vl-grant-about__feature li strong {
  color: var(--vl-accent);
  font-weight: 600;
}

/* How It Works */
.vl-grant-workflow {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  border-top: 1px solid var(--vl-border);
}
@media (min-width: 768px) {
  .vl-grant-workflow { padding: 100px 0; }
}

.vl-grant-workflow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 520px;
  margin: 0 auto;
}

.vl-grant-workflow__step {
  position: relative;
  width: 100%;
}
/* Connector lines between workflow steps */
.vl-grant-workflow__step:nth-child(1)::before,
.vl-grant-workflow__step:nth-child(2)::before,
.vl-grant-workflow__step:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 120px;
  background-image: url("/assets/scheme_mobile-75ab32cb.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.vl-grant-workflow__step:nth-child(odd)::before {
  left: -12px;
}
.vl-grant-workflow__step:nth-child(even)::before {
  right: -12px;
  left: auto;
  transform: scaleX(-1);
}
@media (min-width: 768px) {
  .vl-grant-workflow__step:nth-child(1)::before,
  .vl-grant-workflow__step:nth-child(2)::before,
  .vl-grant-workflow__step:nth-child(3)::before {
    width: 82px;
    height: 134px;
    background-image: url("/assets/scheme_desktop-d09fde08.svg");
  }
  .vl-grant-workflow__step:nth-child(odd)::before {
    left: -84px;
  }
  .vl-grant-workflow__step:nth-child(even)::before {
    right: -84px;
  }
}
.vl-grant-workflow__step-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: var(--vl-bg-card);
  border: 1px solid var(--vl-teal-dark);
  clip-path: polygon(24px 0%, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0% 24px);
}
@media (max-width: 575px) {
  .vl-grant-workflow__step-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    clip-path: polygon(14px 0%, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0% 14px);
  }
}

.vl-grant-workflow__step h3 {
  color: var(--vl-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Application Form */
.vl-grant-form {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  border-top: 1px solid var(--vl-border);
  background: url("/assets/background_stripes-7c769194.svg") no-repeat bottom center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .vl-grant-form { padding: 100px 0; }
}

.vl-grant-form__form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vl-grant-form__row {
  display: flex;
  gap: 8px;
  width: 100%;
}
@media (max-width: 575px) {
  .vl-grant-form__row { flex-direction: column; }
}

.vl-grant-form__field {
  flex: 1;
}
.vl-grant-form__row--full .vl-grant-form__field {
  flex: none;
  width: 100%;
}

.vl-grant-form__input,
.vl-grant-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--vl-teal-dark);
  background-color: var(--vl-back-blue);
  color: var(--vl-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 0;
  transition: border-color .3s ease;
}
.vl-grant-form__input::placeholder,
.vl-grant-form__textarea::placeholder {
  color: rgba(255, 255, 255, .6);
}
.vl-grant-form__input:focus,
.vl-grant-form__textarea:focus {
  outline: none;
  border-color: var(--vl-accent);
}

.vl-grant-form__textarea {
  resize: none;
  height: 86px;
}

.vl-grant-form__submit {
  margin-top: 16px;
}
.vl-grant-form__submit--full {
  width: 100%;
}

/* Grant form – success message (shown after client-side submit) */
.vl-grant-form__success {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}
.vl-grant-form__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--vl-accent);
  color: var(--vl-bg);
  font-size: 32px;
  line-height: 64px;
  font-weight: 700;
}
.vl-grant-form__success-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}
.vl-grant-form__success-text {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

/* Utility – landing pages */
.vl--grant .is-hidden {
  display: none !important;
}
