/* ==========================================================================
   Landing Bundle — shell + every landing block
   Auto-generated by bin/bundle-css — do not edit manually.
   ========================================================================== */

/* --- Source: base/reset.css --- */

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;

  overscroll-behavior: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
  margin-block-start: 0;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  list-style: none;
}

/* Set core body defaults */
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;

  overscroll-behavior: none;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}


/* --- Source: base/tokens.css --- */

/* ==========================================================================
   Design Tokens — Rabata.io
   Single source of truth for colors, typography, spacing, and radii.
   Extracted from Figma UI Kit: https://figma.com/design/dN3AyfRTutZnijMD40HBcf
   ========================================================================== */

:root {
  /* --- Colors (primary palette) --- */
  --color-white: #ffffff;
  --color-text: #ccced0;
  --color-text-secondary: #676d72;
  --color-bg: #111a22;
  --color-bg-light: #242c33;
  --color-stroke: #1c363f;
  --color-stroke-light: rgba(255, 255, 255, 0.3);
  --color-dark: #020c14;
  --color-active: #28cdd9;
  --color-red: #ff5858;
  --color-success: #5de966;
  --color-warning: #eab41d;

  /* --- Colors (derived / alpha variants) --- */
  --color-active-10: rgba(40, 205, 217, 0.1);
  --color-active-20: rgba(40, 205, 217, 0.2);
  --color-active-30: rgba(40, 205, 217, 0.3);
  --color-active-40: rgba(40, 205, 217, 0.4);
  --color-active-60: rgba(40, 205, 217, 0.6);
  --color-active-70: rgba(40, 205, 217, 0.7);
  --color-active-80: rgba(40, 205, 217, 0.8);
  --color-inactive-bg: rgba(103, 109, 114, 0.12);
  --color-success-bg: rgba(93, 233, 102, 0.1);
  --color-warning-bg: rgba(234, 180, 29, 0.1);
  --color-red-bg: rgba(255, 88, 88, 0.1);
  --color-red-bg-hover: rgba(255, 88, 88, 0.25);
  --color-success-border: rgba(93, 233, 102, 0.3);
  --color-red-border: rgba(255, 88, 88, 0.3);
  --color-overlay: rgba(0, 0, 0, 0.7);
  --color-backdrop: rgba(0, 0, 0, 0.5);
  --color-scrim: rgba(0, 0, 0, 0.3);
  --color-row-hover: rgba(255, 255, 255, 0.06);
  --color-row-alt: rgba(255, 255, 255, 0.02);

  /* --- Fonts --- */
  --font-heading: "Tektur", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* --- Typography scale --- */
  --text-h1: 40px;
  --text-h2: 28px;
  --text-h3: 18px;
  --text-lg: 16px;
  --text-md: 14px;
  --text-sm: 12px;
  --text-xs: 10px;
  --line-height-xl: 28px;
  --line-height-lg: 24px;
  --line-height-md: 20px;
  --line-height-sm: 16px;

  /* --- Spacing (4px base) --- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-12: 48px;
  --space-15: 60px;
  --space-18: 72px;
  --space-20: 80px;
  --space-25: 100px;

  /* --- Border radius --- */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* --- Border width --- */
  --border-width: 1px;

  /* --- Shadows --- */
  --shadow: 0 4px 24px var(--color-scrim);
  --shadow-glow: 0 0 8px var(--color-active-40);

  /* --- Gradients --- */
  --gradient-highlight: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );

  /* Buttons */
  --btn-height: 38px;

  /* --- Z-index scale --- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-header: 200;
  --z-sidebar-backdrop: 300;
  --z-sidebar: 310;
  --z-sidebar-mobile: 400;
  --z-modal: 1000;
  --z-toast: 1100;

  /* --- Transitions --- */
  --transition: 150ms ease;
  --duration-modal: 300ms;
  --transition-modal: var(--duration-modal) ease;
}


/* --- Source: base/global.css --- */

body {
  background: var(--color-dark);
  color: var(--color-text);

  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--color-active);
  text-decoration: none;
  transition: color 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: normal;
}

h1 {
  font-size: var(--text-h1);
}
h2 {
  font-size: var(--text-h2);
}
h3 {
  font-size: var(--text-h3);
}
h4 {
  font-size: var(--text-lg);
  line-height: var(--line-height-xl);
}
h5,
h6 {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

p {
  font-size: var(--text-md);
  line-height: var(--line-height-lg);
}

/* Firefox only: setting scrollbar-width/color makes Chrome ignore ::-webkit-scrollbar */
@supports (not selector(::-webkit-scrollbar)) {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-stroke) var(--color-dark);
  }
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--color-dark);
}

*::-webkit-scrollbar-thumb {
  background: var(--color-stroke);
  border-radius: 1px;
}

.turbo-progress-bar {
  background-color: var(--color-active) !important;
}

@media (hover: hover) {
  a:hover {
    color: var(--color-white);
  }

  *::-webkit-scrollbar-thumb:hover {
    background: var(--color-stroke-light);
  }
}


/* --- Source: components/button.css --- */

/* ==========================================================================
   Button — BEM block
   Sizes: default, --sm
   Variants: primary (default), --secondary
   States: default, :hover, :disabled
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);

  height: var(--btn-height);
  padding: 0 var(--space-2);

  border: 1px solid var(--color-active-80);
  border-radius: var(--radius-md);
  background: var(--color-active-10);
  color: var(--color-active);

  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-md);
  line-height: 12px;
  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  overflow: hidden;

  transition:
    background var(--transition),
    border-color var(--transition);
}

.btn__icon {
  flex-shrink: 0;
}

.btn:disabled {
  background: var(--color-inactive-bg);
  border-color: var(--color-text-secondary);
  color: var(--color-text-secondary);
  pointer-events: none;
}

/* --- Size: Small --- */
.btn--sm {
  height: 24px;
  padding: 0 6px 0 var(--space-1);
  gap: 2px;
  font-size: var(--text-sm);

  .btn__icon {
    width: 16px;
    height: 16px;
  }
}

/* --- Variant: Secondary --- */
.btn--secondary {
  background: transparent;
  border-color: var(--color-stroke);
  color: var(--color-white);
}

.btn--secondary:disabled {
  background: transparent;
  border-color: var(--color-text-secondary);
  color: var(--color-text-secondary);
}

/* --- Variant: Danger --- */
.btn--danger {
  background: var(--color-red-bg);
  border-color: var(--color-red);
  color: var(--color-red);
}

/* --- Full-width --- */
.btn--full {
  width: 100%;
  justify-content: center;
}

@media (hover: hover) {
  .btn:hover {
    background: var(--color-active-30);
    border-color: var(--color-active);
    color: var(--color-active);
  }

  .btn--danger:hover {
    background: var(--color-red-bg-hover);
  }

  .btn--secondary:hover {
    background: var(--color-bg);
    border-color: var(--color-stroke);
    color: var(--color-white);
  }
}


/* --- Source: components/input.css --- */

.input {
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
  background: var(--color-dark);
  color: var(--color-text);

  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

input.input,
textarea.input {
  width: 100%;
  height: 38px;
  padding: var(--space-2) var(--space-3);
  caret-color: var(--color-text);

  &::placeholder {
    color: var(--color-text-secondary);
  }

  &:-webkit-autofill,
  &:-webkit-autofill:hover,
  &:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-text);
    transition: background-color 9999s ease-out 0s;
  }

  &:focus {
    border-color: var(--color-active);
    outline: none;
  }

  &.is-error {
    border-color: var(--color-red);
  }
}

/* --- Size: Small (24px) --- */
.input--sm {
  height: 24px;
  padding: 0 6px;
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  width: auto;
}

input[type="search"] {
  &::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
  }
}

/* --- Variant: Search --- */
.input--search {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: auto;
  height: 38px;
  padding: 0 var(--space-3);
  background: transparent;

  &:focus-within {
    border-color: var(--color-active);
    outline: none;
  }

  .input__icon {
    width: 14px;
    height: 14px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
  }

  .input__field {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-weight: 500;
    outline: none;

    &::placeholder {
      color: var(--color-text-secondary);
    }
  }
}

.input--search.input--sm {
  height: 24px;
  padding: 0 6px;
}

/* flex/inline-flex on .input--search outweighs the UA [hidden] rule */
.input--search[hidden] {
  display: none;
}

/* --- Variant: Underline (inline search in a table header) --- */
.input--underline {
  display: flex;
  width: 100%;
  height: 30px;
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--color-stroke);
  border-radius: 0;

  &:focus-within {
    border-color: var(--color-stroke);
  }

  .input__clear {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-text);
    cursor: pointer;
  }

  .input__clear-icon {
    width: 16px;
    height: 16px;
  }
}

@media (hover: hover) {
  .input--underline {
    .input__clear:hover {
      color: var(--color-active);
    }
  }
}


/* --- Source: components/form-field.css --- */

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field__label {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: var(--line-height-md);
}

.form-field__required {
  color: var(--color-red);
  margin-left: var(--space-1);
}

.form-field__input-wrap {
  position: relative;

  .form-field__input {
    padding-right: var(--space-10);
  }
}

.form-field__input-action {
  position: absolute;
  top: 50%;
  right: var(--space-3);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.form-field__input-action-icon {
  display: block;
}

.form-field--floating {
  .form-field__label {
    position: absolute;
    /* Anchored to the input's vertical center (input.css height: 38px), not
       the container's — so an in-flow error hint growing the container below
       never shifts the resting label off the input. */
    top: 19px;
    left: var(--space-3);
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    font-weight: 400;
    pointer-events: none;
    transform-origin: left center;
    transition:
      top 300ms ease,
      transform 300ms ease,
      font-size var(--transition),
      line-height var(--transition),
      background var(--transition),
      padding var(--transition);
  }

  .form-field__input::placeholder {
    color: transparent;
  }

  &:focus-within .form-field__label,
  &:has(.form-field__input:not(:placeholder-shown)) .form-field__label {
    top: var(--space-1);
    transform: translateY(-12px);
    font-size: var(--text-sm);
    line-height: var(--line-height-sm);
    background: var(--form-field-notch-bg, var(--color-dark));
    padding: 0 var(--space-1);
  }
}

.form-field--textarea {
  min-height: 86px;

  .form-field__input {
    height: 86px;
    min-height: 86px;
    padding: 14px var(--space-3);
    resize: none;
    line-height: var(--line-height-md);
  }

  &.form-field--floating {
    .form-field__label {
      top: 14px;
      transform: none;
    }

    &:focus-within .form-field__label,
    &:has(.form-field__input:not(:placeholder-shown)) .form-field__label {
      top: var(--space-1);
      transform: translateY(-12px);
    }
  }
}

/* Stripe Elements mount point + errors */
.form-field__stripe-element {
  background-color: var(--color-bg);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-lg);
  padding: 15px var(--space-3);
}

.form-field__stripe-errors {
  color: var(--color-red);
  font-size: var(--text-sm);
}

.form-field__stripe-errors:empty {
  display: none;
}

.form-field__hint {
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.form-field__hint:empty {
  display: none;
}

.form-field__hint--error {
  color: var(--color-red);
}

.form-field__hint--success {
  color: var(--color-success);
}

@media (hover: hover) {
  .form-field__input-action:hover {
    color: var(--color-text);
  }
}


/* --- Source: components/burger.css --- */

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-stroke);

  &.is-active {
    .burger__line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .burger__line:nth-child(2) {
      opacity: 0;
    }

    .burger__line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-xs);
  transition: all 0.3s ease;
}


/* --- Source: components/logo.css --- */

.logo {
  display: block;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}


/* --- Source: components/emphasis.css --- */

.emphasis {
  display: inline-block;
  font-style: normal;
  font-size: inherit;
}

.emphasis--tag__angle {
  text-shadow: 0 0 10px var(--color-active-60);
  background: linear-gradient(158deg, #3cdfea 50%, #0f9099 83.46%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emphasis--highlight {
  position: relative;
  z-index: 0;
  padding: 0 var(--space-1);
  margin: 0 2px;
  font-family: var(--font-body);
  color: var(--color-white);

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    z-index: -1;

    border-radius: var(--radius-md);
    border: 1px solid var(--color-stroke-light);

    background: var(--gradient-highlight);
  }
}

.emphasis--simple {
  color: var(--color-active);
}

.emphasis--selected {
  position: relative;
  z-index: 0;
  padding: 0 2px;
  margin: 0 -2px;
  color: var(--color-active);

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    bottom: 0;
    z-index: -1;

    border-radius: var(--radius-md);

    background: linear-gradient(
      90deg,
      rgba(45, 205, 217, 0.3) 0%,
      rgba(45, 205, 217, 0) 100%
    );
  }
}


/* --- Source: components/bullet-list.css --- */

.bullet-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);

  padding: 0;
  margin: 0;

  list-style: none;

  line-height: var(--line-height-md);
}

.bullet-list__item {
  --bullet-list-bullet-size: 9px;

  position: relative;
  padding-left: calc(var(--bullet-list-bullet-size) + var(--space-2));

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(0.5lh - var(--bullet-list-bullet-size) / 2);
    width: var(--bullet-list-bullet-size);
    height: var(--bullet-list-bullet-size);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='8 8 9 9' fill='none'%3E%3Cpath fill='%2328CDD9' d='M11 11h3v3h-3zM8 8h3v3H8zM14 14h3v3h-3zM14 8h3v3h-3zM8 14h3v3H8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }
}

@media (min-width: 1024px) {
  .bullet-list--inline {
    flex-flow: row wrap;
    gap: var(--space-6);
  }

  .bullet-list--two-col {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    column-gap: var(--space-12);
    row-gap: var(--space-2);
  }
}


/* --- Source: components/square-icon.css --- */

.square-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;

  align-items: center;
  justify-content: center;

  border-radius: var(--radius-sm);
  border: 1px solid var(--color-active-30, rgba(40, 205, 217, 0.3));
  background: var(--color-active-10, rgba(40, 205, 217, 0.12));

  color: var(--color-active, #28cdd9);
}

.square-icon__img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


/* --- Source: components/bracket-badge.css --- */

.bracket-badge {
  display: inline-flex;

  color: var(--color-active);

  padding: 0 1px;
}

.bracket-badge__bracket {
  &:first-child {
    transform: rotate(180deg);
  }
}

.bracket-badge__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);

  background: linear-gradient(
    270deg,
    rgba(40, 205, 217, 0) 0.2%,
    rgba(40, 205, 217, 0.24) 50.01%,
    rgba(40, 205, 217, 0) 99.82%
  );

  min-height: 20px;
  padding: 2px 6px;

  font-size: var(--text-md);
  line-height: 16px;
}

.bracket-badge__icon {
  width: 16px;
  height: 16px;
}


/* --- Source: components/icon-badge.css --- */

.icon-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);

  padding: 3px var(--space-1);

  color: var(--color-white);
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  white-space: nowrap;

  border-radius: var(--radius-md);

  border: 1px solid var(--color-stroke-light);
  background: var(--gradient-highlight);
}

.icon-badge__icon {
  flex-shrink: 0;
}


/* --- Source: components/landings/section-heading.css --- */

.section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.section-heading__title {
  --text-h2: 22px;

  margin: 0 0 var(--space-1);
  color: var(--color-white);
}

.section-heading__description {
  margin: 0;
  color: var(--color-text);

  font-size: var(--text-md);
  line-height: 27px;
}

@media (min-width: 768px) {
  .section-heading {
    gap: var(--space-2);
  }

  .section-heading__title {
    --text-h2: 24px;
  }

  .section-heading__description {
    font-size: var(--text-lg);
  }
}


/* --- Source: components/landings/faq.css --- */

.faq__heading {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .faq__heading {
    padding: 0 var(--space-8);
    margin-bottom: var(--space-4);

    .section-heading__title {
      --text-h2: 28px;
    }
  }
}


/* --- Source: components/landings/hero.css --- */

.hero {
  padding: 0 var(--space-4);
}

.hero__title {
  --text-h1: 28px;

  line-height: 40px;
  font-size: var(--text-h1);

  .emphasis--selected {
    line-height: 44px;
  }
}

.hero__column {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: var(--space-8) 0;

  &:last-child {
    padding-bottom: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero__features {
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: var(--space-3);

  list-style: none;

  line-height: var(--line-height-md);
}

.hero__features-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);

  line-height: var(--line-height-lg);
}

.hero__features-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--color-active);

  .square-icon__img {
    width: 24px;
    height: 24px;
  }
}

.hero__description {
  font-size: var(--text-lg);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  margin-top: var(--space-1);
}

.hero__actions-btn {
  font-size: var(--text-lg);
}

.hero__actions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-white);
  height: 38px;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: var(--text-lg);
  white-space: nowrap;
  cursor: pointer;
}

.hero__note {
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.hero__visual {
  overflow: hidden;
}

/* width/height attrs on the img (CLS) + reset max-width:100% → keep aspect ratio */
.hero__illustration {
  height: auto;
}

.hero--equal {
  .hero__column:first-child {
    border-bottom: 1px solid var(--color-stroke);
  }
}

.hero--mobile-visual {
  .hero__column:last-child {
    display: none;
  }

  .hero__column:first-child {
    border-bottom: 0;
  }
}

@media (min-width: 768px) {
  .hero__column {
    &:first-child {
      max-width: 72%;
      padding: var(--space-8);
    }

    &:last-child {
      padding: var(--space-8) 0;
    }
  }

  .hero__title {
    --text-h1: 40px;
    line-height: 52px;
  }

  .hero__content {
    gap: var(--space-6);
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-4);
  }

  .hero__actions-btn {
    min-width: 220px;
    font-size: var(--text-md);
  }

  .hero__actions-link {
    border: 0;
    height: auto;
    color: var(--color-active);
    font-size: var(--text-md);
    line-height: var(--line-height-sm);
  }

  .hero__features {
    gap: var(--space-4);

    br {
      display: none;
    }
  }

  .hero__features-item {
    align-items: start;
  }

  .hero__features-icon {
    width: 28px;
    height: 28px;
    margin-top: calc((1lh - 28px) / 2);

    .square-icon__img {
      width: 16px;
      height: 16px;
    }
  }

  .hero--equal {
    display: flex;
    padding: 0;

    .hero__column {
      flex: 0 0 50%;
      max-width: none;
      min-width: 0;
      justify-content: center;
    }

    .hero__column:first-child {
      border: 1px solid var(--color-stroke);
      border-width: 0 1px 0 0;
    }
  }

  .hero--mobile-visual {
    .hero__column:last-child {
      display: flex;
    }

    .hero__visual--mobile {
      display: none;
    }
  }
}

@media (hover: hover) {
  .hero__actions-link:hover {
    color: var(--color-white);
  }
}


/* --- Source: components/square-badge.css --- */

.square-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: var(--space-1);

  color: var(--color-active);

  font-size: var(--text-sm);
  line-height: var(--line-height-lg);
}

.square-badge__label {
  color: var(--color-text-secondary);
  white-space: nowrap;
}


/* --- Source: components/landings/banner.css --- */

.banner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 8px);

  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;

  padding: var(--space-4) var(--space-4) 0;

  border-radius: var(--radius-lg);
  border: 1px solid var(--color-active-30);
}

.banner__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.banner__title {
  --text-h2: 24px;

  font-size: var(--text-h2);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 29px;

  color: var(--color-white);
}

.banner__text {
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
}

.banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  margin: var(--space-2) 0;

  .btn {
    --btn-height: 32px;
  }
}

.banner__visual {
  position: relative;

  text-align: center;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 153px;
    height: 153px;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    background: rgba(40, 205, 217, 0.08);
    filter: blur(100px);
  }

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 87px;
    height: 87px;
    border-radius: 100px;

    background: var(--color-active-40);
    filter: blur(50px);
  }
}

.banner__illustration {
  position: relative;
  z-index: 1;
  width: 101px;
  height: 151px;
  margin: auto;
  object-fit: contain;

  box-sizing: content-box;
}

@media (min-width: 768px) {
  .banner {
    position: relative;
    display: block;

    max-width: 800px;

    height: auto;
    margin: 0 auto;
    padding: calc(var(--space-6) - 1px) var(--space-8);
  }

  .banner__title {
    line-height: normal;
  }

  .banner__content {
    position: relative;
    z-index: var(--z-base, 1);
    width: 77%;
  }

  .banner__text {
    line-height: var(--line-height-xl);
  }

  .banner__visual {
    position: absolute;
    bottom: 0;
    right: 0;

    width: 400px;

    &::before,
    &::after {
      transform: none;
      left: auto;
      top: auto;
      right: auto;
      bottom: auto;
    }

    &::before {
      top: -17px;
      right: 35px;
      background: var(--color-active-80);
    }

    &::after {
      top: 16px;
      right: 68px;
      background: var(--color-active-80);
    }
  }

  .banner__illustration {
    width: 98px;
    height: 146px;
    margin: 0 0 0 auto;
    padding: 0 57px 0 0;
  }

  .banner__actions {
    flex-direction: row;
  }
}


/* --- Source: components/auth-menu.css --- */

.auth-menu {
  display: flex;
  gap: var(--space-3);

  .btn {
    height: 32px;
    font-size: var(--text-md);
  }
}


/* --- Source: components/snippet.css --- */

.snippet {
  --snippet-copy-size: 24px;
  --snippet-copy-icon-size: 16px;

  position: relative;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  overflow: hidden;
  padding: var(--space-4) calc(var(--space-4) + var(--snippet-copy-size))
    var(--space-4) var(--space-4);
}

.snippet__copy {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--snippet-copy-size);
  height: var(--snippet-copy-size);
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-dark);
  color: var(--color-active);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.snippet__copy-icon {
  display: block;
  width: var(--snippet-copy-icon-size);
  height: var(--snippet-copy-icon-size);
}

.snippet__pre {
  margin: 0;
  overflow-x: auto;
  white-space: pre;

  code {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--line-height-sm);
    color: var(--color-text);
    white-space: pre-wrap;
    word-break: break-word;
    background: none;
  }
}

.snippet--no-copy {
  padding-right: var(--space-4);
}

@media (min-width: 1024px) {
  .snippet {
    --snippet-copy-size: 32px;
    --snippet-copy-icon-size: 24px;

    padding: var(--space-5) calc(var(--space-8) + var(--snippet-copy-size))
      var(--space-5) var(--space-6);
  }

  .snippet__copy {
    top: var(--space-4);
    right: var(--space-4);
    width: var(--snippet-copy-size);
    height: var(--snippet-copy-size);
  }

  .snippet__copy-icon {
    width: var(--snippet-copy-icon-size);
    height: var(--snippet-copy-icon-size);
  }

  .snippet--no-copy {
    padding-right: var(--space-6);
  }

  .snippet__pre {
    code {
      font-size: var(--text-md);
      line-height: var(--line-height-md);
    }
  }
}

@media (hover: hover) {
  .snippet__copy:hover {
    background: var(--color-bg-light);
  }
}


/* --- Source: components/utilities.css --- */

.trim-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hidden {
  display: none;
}

/* set on <body> by modal controllers while a modal is open */
.modal-open {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}


/* --- Source: layout/landing/container.css --- */

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .landing-container {
    border: 1px solid var(--color-stroke);
    border-width: 0 1px;
  }
}


/* --- Source: layout/landing/layout.css --- */

.landing {
  --landing-block-gap: var(--space-20);

  .landing__content {
    display: flex;
    flex-direction: column;

    > * {
      margin-top: var(--block-gap, var(--landing-block-gap));
    }

    > :first-child {
      margin-top: 0;
    }
  }
}

.landing--s3-comparison {
  --landing-block-gap: var(--space-15);

  .s3-comparison-methodology,
  .s3-methodology-scenarios,
  .s3-methodology-configurations,
  .s3-methodology-matrix,
  .s3-methodology-analysis {
    --block-gap: 0;
  }
}

@media (min-width: 768px) {
  .landing {
    --landing-block-gap: var(--space-25);
  }

  .landing--s3-comparison,
  .landing--video-comparison {
    --landing-block-gap: var(--space-15);
  }
}


/* --- Source: layout/landing/header.css --- */

.landing-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: 60px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-stroke);

  .landing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    width: 100%;
  }
}

.landing-header__logo {
  .logo__img {
    width: 126px;
    height: 28px;
  }
}

.landing-header__nav {
  display: none;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: var(--line-height-md);
}

.landing-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  color: var(--color-text);
  transition: color 0.2s;
}

.landing-header__menu {
  position: relative;
}

.landing-header__menu-trigger {
  list-style: none;
  cursor: pointer;
  user-select: none;

  &::-webkit-details-marker {
    display: none;
  }

  &:focus-visible {
    outline: 2px solid var(--color-active-40);
    outline-offset: 2px;
  }
}

.landing-header__menu-chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.landing-header__menu[open] {
  .landing-header__menu-trigger {
    color: var(--color-active);
  }

  .landing-header__menu-chevron {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  > .landing-header__dropdown {
    display: grid;
  }
}

.landing-header__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  z-index: var(--z-dropdown);

  min-width: 220px;
  margin: 0;
  padding: var(--space-2);

  list-style: none;
  background: var(--color-bg);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.landing-header__dropdown--solutions {
  min-width: 240px;
}

.landing-header__dropdown--resources {
  min-width: 280px;
}

.landing-header__dropdown-heading {
  margin: var(--space-2) var(--space-3) var(--space-1);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: var(--line-height-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-header__dropdown-heading:not(:first-child) {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-stroke);
}

.landing-header__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 38px;
  padding: var(--space-2) var(--space-3);

  color: var(--color-text);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition);

  &:focus-visible {
    outline: 2px solid var(--color-active-40);
    outline-offset: -2px;
  }
}

.landing-header__dropdown-item--disabled {
  color: var(--color-text-secondary);
  cursor: default;
}

.landing-header__soon {
  padding: 1px var(--space-2);
  color: var(--color-active);
  background: var(--color-active-10);
  border: 1px solid var(--color-active-30);
  border-radius: 999px;
  font-size: var(--text-xs);
  line-height: var(--line-height-sm);
  letter-spacing: 0.06em;
}

.landing-header__auth-menu {
  display: none;
}

@media (min-width: 768px) {
  .landing-header__nav-link {
    padding: var(--space-2) var(--space-1);
  }
}

@media (min-width: 1024px) {
  .landing-header {
    height: auto;
    padding: 0;

    .landing-container {
      position: relative;

      .landing-header__nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
    }
  }

  .landing-header__logo {
    padding: 14px var(--space-8);
    border-right: 1px solid var(--color-stroke);

    .logo__img {
      width: 144px;
      height: 32px;
    }
  }

  .landing-header__nav {
    display: flex;
  }

  .landing-header__nav-link {
    padding: var(--space-2);
  }

  .landing-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: 14px var(--space-8);
    border-left: 1px solid var(--color-stroke);
  }

  .landing-header__auth-menu {
    display: flex;
    gap: var(--space-3);
  }

  .landing-header__burger {
    display: none;
  }
}

@media (hover: hover) {
  .landing-header__nav-link:hover,
  .landing-header__dropdown-item:hover {
    color: var(--color-active);
  }

  .landing-header__dropdown-item:hover {
    background: var(--color-active-10);
    border-color: var(--color-active-20);
  }

  .landing-header__dropdown-item--disabled:hover {
    color: var(--color-text-secondary);
    background: transparent;
    border-color: transparent;
  }
}


/* --- Source: layout/landing/mobile-nav.css --- */

.landing-mobile-nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-dropdown);

  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-4);

  background: rgba(6, 8, 13, 0.95);
  backdrop-filter: blur(16px);
  overflow-y: auto;

  opacity: 0;

  pointer-events: none;
  transition: opacity 0.3s ease;

  .landing-mobile-nav__auth-menu {
    display: flex;
    flex-direction: column;
    flex-flow: column-reverse;
    gap: var(--space-4);
  }

  .landing-mobile-nav__nav {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-1);
    width: 100%;

    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: normal;

    .landing-mobile-nav__nav-link {
      padding: var(--space-2) 0;
      width: 100%;
    }
  }

  .landing-mobile-nav__menu {
    width: 100%;
    border-bottom: 1px solid var(--color-stroke);
  }

  .landing-mobile-nav__menu-trigger {
    justify-content: space-between;
  }

  .landing-mobile-nav__dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 var(--space-2);
    padding: var(--space-1) 0 var(--space-2) var(--space-3);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--color-stroke);
    border-radius: 0;
    box-shadow: none;
  }

  .landing-mobile-nav__dropdown-item {
    min-height: 40px;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: 500;
  }
}

.landing-mobile-nav[hidden] {
  display: none;
}

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

  .landing-mobile-nav__nav {
    display: flex;
  }
}

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


/* --- Source: layout/landing/footer.css --- */

.landing-footer {
  border-top: 1px solid var(--color-stroke);

  .landing-container {
    padding: calc(var(--space-20) - 1px) 0 var(--space-20);
  }
}

.landing-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);

  padding: 0 var(--space-4);
  margin-bottom: var(--space-8);
}

.landing-footer__logo {
  margin-bottom: var(--space-6);

  .logo__img {
    width: 144px;
    height: 32px;
  }
}

.landing-footer__brand {
  .landing-footer__list {
    gap: 6px;

    font-size: var(--text-sm);
    line-height: var(--line-height-md);
  }
}

.landing-footer__description {
  max-width: 263px;
  margin-bottom: var(--space-2);

  font-size: var(--text-sm);
  line-height: var(--line-height-md);
}

.landing-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;

  color: var(--color-text-secondary);

  a {
    color: var(--color-text-secondary);
    text-decoration: underline;
  }
}

.landing-footer__list-item {
  position: relative;
}

.landing-footer__list-item:not(:first-child) {
  padding-left: 10px;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-active);
    box-shadow: 0 0 8px 0 var(--color-active-80);
  }
}

.landing-footer__menu-title {
  margin-bottom: var(--space-3);

  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
  line-height: 21px;
}

.landing-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  font-size: var(--text-md);
  line-height: var(--line-height-md);
  color: var(--color-text);

  a {
    color: var(--color-text);
  }
}

.landing-footer__auth-menu {
  flex-flow: row-reverse;
  justify-content: flex-end;

  .btn {
    height: 32px;
    font-size: var(--text-sm);
  }
}

.landing-footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);

  border-top: 1px solid var(--color-stroke);
  padding: var(--space-8) var(--space-4) 0;

  font-size: var(--text-md);
  line-height: var(--line-height-md);

  color: var(--color-text-secondary);

  & > p {
    font-size: var(--text-md);
    line-height: var(--line-height-md);
  }

  .landing-footer__list {
    gap: var(--space-3);
  }

  .landing-footer__list-item:not(:first-child) {
    padding-left: var(--space-4);
  }
}

@media (min-width: 768px) {
  .landing-footer {
    .landing-container {
      padding: calc(var(--space-25) - 1px) 0 var(--space-25);
    }
  }

  .landing-footer__grid {
    padding: 0 var(--space-8);
    grid-template-columns: 2fr 1fr 1fr auto;
    margin-bottom: var(--space-8);
  }

  .landing-footer__description {
    max-width: none;
    font-size: var(--text-md);
    font-weight: 500;
    line-height: var(--line-height-md);
  }

  .landing-footer__menu-title {
    margin-bottom: var(--space-5);
    font-size: var(--text-h3);
    line-height: 23px;
  }

  .landing-footer__menu-list {
    font-size: var(--text-md);
    font-weight: 500;
    line-height: var(--line-height-md);
  }

  .landing-footer__brand {
    .landing-footer__list {
      gap: var(--space-3);

      font-size: var(--text-md);
      font-weight: 500;
      line-height: var(--line-height-md);
    }
  }

  .landing-footer__legal {
    padding: var(--space-8) var(--space-8) 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
  }

  .landing-footer__list-item:not(:first-child) {
    padding-left: var(--space-4);
  }

  .landing-footer__auth-menu {
    flex-flow: row;

    .btn {
      height: var(--btn-height);
      font-size: var(--text-md);
    }
  }
}

@media (hover: hover) {
  .landing-footer__list,
  .landing-footer__menu-list {
    a:hover {
      color: var(--color-active);
    }
  }
}


/* --- Source: components/landings/section-striped.css --- */

.section-striped {
  --stripe-width: 1px;
  --stripe-height: 80px;
  --stripe-gap: 11px;
  --stripe-step: calc(var(--stripe-width) + var(--stripe-gap));

  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--stripe-height);
    pointer-events: none;

    background-image: linear-gradient(
      180deg,
      rgba(18, 32, 37, 0.4) 0%,
      rgba(18, 32, 37, 0) 100%
    );
    background-size: var(--stripe-width) var(--stripe-height);
    background-repeat: repeat-x;
    background-position: top left;

    mask-image: repeating-linear-gradient(
      90deg,
      #000 0,
      #000 var(--stripe-width),
      transparent var(--stripe-width),
      transparent var(--stripe-step)
    );
    mask-repeat: repeat-x;
    mask-position: top left;
  }

  &::after {
    display: none;

    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--stripe-height);
    pointer-events: none;

    background-image: linear-gradient(
      0deg,
      rgba(18, 32, 37, 0.4) 0%,
      rgba(18, 32, 37, 0) 100%
    );
    background-size: var(--stripe-width) var(--stripe-height);
    background-repeat: repeat-x;
    background-position: bottom left;

    mask-image: repeating-linear-gradient(
      90deg,
      #000 0,
      #000 var(--stripe-width),
      transparent var(--stripe-width),
      transparent var(--stripe-step)
    );
    mask-repeat: repeat-x;
    mask-position: bottom left;
  }
}

@media (min-width: 768px) {
  .section-striped {
    &::after {
      display: block;
    }
  }
}


/* --- Source: components/landings/announcement-bar.css --- */

.announcement-bar {
  --block-gap: 0;

  position: sticky;
  top: 60px;
  z-index: calc(var(--z-header) - 1);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);

  padding: var(--space-3) var(--space-4);

  border-bottom: 1px solid var(--color-stroke);
  background: linear-gradient(var(--color-active-10), var(--color-active-10)), var(--color-dark);

  font-size: var(--text-md);
  line-height: var(--line-height-md);
  text-align: center;

  + * {
    --block-gap: 0;
  }
}

.announcement-bar__text {
  margin: 0;
  color: var(--color-white);
}

.announcement-bar__link {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .announcement-bar {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-4);
  }
}


/* --- Source: pages/home/home-hero.css --- */

.home-hero {
  .hero__column:last-child {
    /* full-bleed illustration: cancel the .hero 16px side padding */
    margin-inline: calc(-1 * var(--space-4));
  }

  .hero__visual {
    position: relative;
    min-height: 396px;
  }

  .hero__illustration {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 598px;
    max-width: none;

    transform: translate(-50%, -50%);
  }
}

@media (min-width: 768px) {
  .home-hero {
    .hero {
      min-height: 496px;
    }

    .hero__column:first-child {
      justify-content: flex-start;
      padding-top: 90px;
    }

    .hero__column:last-child {
      margin-inline: 0;
      padding: 0;
    }

    .hero__actions {
      margin-top: var(--space-2);
    }

    .hero__actions-btn,
    .hero__actions-link {
      font-size: var(--text-lg);
    }

    .hero__visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero__illustration {
      position: static;
      width: 100%;
      transform: none;
    }
  }
}


/* --- Source: pages/home/products.css --- */

.products {
  position: relative;
  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  padding: var(--space-12) var(--space-4) var(--space-10);
}

.products__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-8) var(--space-4) var(--space-10);
  margin: 0 calc(var(--space-4) * -1);

  &:not(:last-child) {
    border-bottom: 1px solid var(--color-stroke);
    margin-bottom: var(--space-2);
  }
}

.products__card-title {
  --text-h2: 22px;

  margin-top: var(--space-1);
}

.products__card-conditions {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--space-3);

  margin: var(--space-1) 0 var(--space-3);
}

.products__card-description {
  font-size: var(--text-md);
  line-height: 27px;

  .emphasis {
    line-height: 26px;
  }

  br {
    display: none;
  }
}

.products__card-list.bullet-list {
  border: 1px solid var(--color-stroke);
  border-width: 1px 0;
  padding: var(--space-6) 0 var(--space-5);
  margin: 9px 0;
  font-size: var(--text-md);
}

@media (min-width: 768px) {
  .products {
    --block-gap: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .products.section-striped {
    &::after {
      display: block;
    }
  }

  .products__card {
    --products-card-corner-arm: 7px;

    position: relative;
    padding: var(--space-25) var(--space-8);
    margin: 0;

    /* L-shaped corners (same as 7×7 SVG) on all four corners */
    &::after {
      content: "";
      position: absolute;
      inset: -1px;
      pointer-events: none;
      background-image:
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white));
      background-size:
        var(--products-card-corner-arm) 1px,
        1px var(--products-card-corner-arm),
        var(--products-card-corner-arm) 1px,
        1px var(--products-card-corner-arm),
        var(--products-card-corner-arm) 1px,
        1px var(--products-card-corner-arm),
        var(--products-card-corner-arm) 1px,
        1px var(--products-card-corner-arm);
      background-position:
        left top,
        left top,
        right top,
        right top,
        left bottom,
        left bottom,
        right bottom,
        right bottom;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    &:not(:last-child) {
      border-bottom: none;
      border-right: 1px solid var(--color-stroke);
      margin-bottom: 0;
    }
  }

  .products__card-title {
    --text-h2: 24px;
  }

  .products__card-description {
    font-size: var(--text-lg);
    line-height: var(--line-height-xl);

    .emphasis {
      line-height: var(--line-height-xl);
    }

    br {
      display: block;
    }
  }

  .products__card-explore {
    align-self: flex-start;
    height: var(--space-8);
  }

  .products__card-list.bullet-list {
    gap: var(--space-2);
    padding: var(--space-5) 0;
    margin: 10px 0 var(--space-2);
    font-size: var(--text-lg);
    line-height: var(--line-height-lg);
  }
}

@media (hover: hover) {
  .products__card:hover::after {
    opacity: 1;
  }
}


/* --- Source: components/landings/feature-cards.css --- */

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature-cards__heading {
  padding: 0 var(--space-2) 0 var(--space-4);
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: var(--space-2) 0;

  border: 1px solid var(--color-stroke);
  border-width: 1px 0;
}

.feature-cards__card {
  --feature-cards-fade: linear-gradient(
    to bottom,
    rgb(from var(--color-dark) r g b / 0) 49.5%,
    var(--color-dark) 100%
  );

  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-dark);

  &:not(:last-child) {
    border-bottom: 1px solid var(--color-stroke);
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: var(--feature-cards-fade);
  }

  &:first-child::before {
    background-image: var(--feature-cards-fade), var(--feature-cards-fade);
  }

  &:nth-child(2)::before {
    background-image:
      linear-gradient(var(--color-dark), var(--color-dark)),
      linear-gradient(
        to bottom,
        var(--color-dark) 0%,
        rgb(from var(--color-dark) r g b / 0.2) 60%,
        var(--color-dark) 100%
      );
    background-size:
      100% 50%,
      100% 50.46%;
    background-position: top, bottom;
    background-repeat: no-repeat;
  }
}

.feature-cards__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-cards__card-content {
  position: relative;
  z-index: 2;

  padding: var(--space-8) var(--space-4) var(--space-5);
}

.feature-cards__card-title {
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.feature-cards__card-description {
  font-size: var(--text-md);
}

.feature-cards--plain {
  .feature-cards__card {
    height: auto;

    &::before {
      content: none;
    }
  }
}

.feature-cards__tagline {
  padding: 0 var(--space-4);
  line-height: 26px;

  .emphasis--simple {
    font-size: var(--text-sm);

    transform: translateY(-2px);
    margin: 0 var(--space-1);
  }
}

@media (min-width: 768px) {
  .feature-cards {
    --block-gap: calc(var(--landing-block-gap) - 1px);
    gap: 0;
  }

  .feature-cards__heading {
    padding: 0 var(--space-8) var(--space-5);

    .section-heading__title {
      margin-top: var(--space-1);
      margin-bottom: 0;
    }

    .section-heading__description {
      font-size: var(--text-lg);
      line-height: var(--line-height-xl);
    }
  }

  .feature-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: var(--space-3) 0 var(--space-7);
  }

  .feature-cards__card {
    --feature-cards-corner-arm: 7px;

    height: 218px;

    &::after {
      content: "";
      position: absolute;
      inset: -1px;
      pointer-events: none;
      z-index: 3;
      background-image:
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white)),
        linear-gradient(var(--color-white), var(--color-white));
      background-size:
        var(--feature-cards-corner-arm) 1px,
        1px var(--feature-cards-corner-arm),
        var(--feature-cards-corner-arm) 1px,
        1px var(--feature-cards-corner-arm),
        var(--feature-cards-corner-arm) 1px,
        1px var(--feature-cards-corner-arm),
        var(--feature-cards-corner-arm) 1px,
        1px var(--feature-cards-corner-arm);
      background-position:
        left top,
        left top,
        right top,
        right top,
        left bottom,
        left bottom,
        right bottom,
        right bottom;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    &:not(:last-child) {
      border-bottom: none;
      border-right: 1px solid var(--color-stroke);
    }
  }

  .feature-cards__card-glow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;

    &::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 100px;
      height: 100px;
      border-radius: 100px;
      background: var(--color-active-80);
      filter: blur(60px);
    }
  }

  .feature-cards__card-content {
    padding: calc(var(--space-8) - 1px) var(--space-8) var(--space-6);
  }

  .feature-cards__card-title {
    margin-bottom: 6px;
  }

  .feature-cards__card-description {
    font-size: var(--text-lg);
  }

  .feature-cards__tagline {
    padding: 0 var(--space-8);
    font-size: var(--text-lg);
    line-height: var(--line-height-xl);
  }

  .feature-cards--flush-bottom {
    .feature-cards__tagline {
      padding-bottom: var(--landing-block-gap);
    }
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .feature-cards__card {
    --feature-cards-fade: linear-gradient(
      to bottom,
      rgb(from var(--color-dark) r g b / 0.55) 0%,
      var(--color-dark) 100%
    );

    &:first-child::before {
      background-image: var(--feature-cards-fade);
    }

    &:nth-child(2)::before {
      background-image:
        linear-gradient(var(--color-dark), var(--color-dark)),
        linear-gradient(
          to bottom,
          var(--color-dark) 0%,
          rgb(from var(--color-dark) r g b / 0.55) 60%,
          var(--color-dark) 100%
        );
    }
  }
}

@media (hover: hover) {
  .feature-cards__card:hover::after {
    opacity: 1;
  }
}


/* --- Source: pages/home/performance.css --- */

.performance {
  display: flex;
  flex-direction: column;
}

.performance__cards {
  display: flex;
  flex-direction: column;

  border: 1px solid var(--color-stroke, #1c363f);
  border-width: 1px 0;
}

.performance__cards-card {
  display: flex;
  flex-direction: column;

  padding: var(--space-6, 24px) var(--space-6, 24px) var(--space-7, 28px);

  align-items: center;

  &:not(:last-child) {
    border-bottom: 1px solid var(--color-stroke, #1c363f);
  }
}

.performance__cards-value {
  margin-bottom: var(--space-1);

  font-size: var(--text-h1);
  line-height: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-active);

  background: linear-gradient(
    158deg,
    var(--color-active) 50%,
    var(--color-active) 83.46%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.performance__cards-label {
  font-size: var(--text-md);
  text-transform: lowercase;
}

.performance__link {
  --performance__link-stem: 33px;

  position: relative;
  text-align: center;

  padding-top: var(--performance__link-stem);

  .btn {
    font-size: var(--text-lg);
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 1px;
    height: var(--performance__link-stem);
    background: var(--color-stroke);
  }

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%);
    background:
      linear-gradient(var(--color-white), var(--color-white)) 50% / 1px 13px
        no-repeat,
      linear-gradient(var(--color-white), var(--color-white)) 50% / 13px 1px
        no-repeat;
  }
}

@media (min-width: 768px) {
  .performance__cards {
    flex-direction: row;
    border-width: 0;
    box-shadow:
      inset 0 1px var(--color-stroke),
      inset 0 -1px var(--color-stroke);
  }

  .performance__cards-card {
    flex: 1;

    &:not(:last-child) {
      border-bottom: none;
      border-right: 1px solid var(--color-stroke);
    }
  }

  .performance__cards-label {
    font-size: var(--text-lg);
  }

  .performance__link {
    --performance__link-stem: var(--space-8);

    .btn {
      height: var(--space-8);
      font-size: var(--text-md);
    }
  }
}


/* --- Source: components/landings/compliance-strip.css --- */

.compliance-strip {
  --block-gap: calc(var(--landing-block-gap) + var(--space-6));
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-4);

  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 132px;
    height: 132px;
    transform: translate(50%, -50%);
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(60px);
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -108px;
    left: -100px;
    width: 132px;
    height: 132px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(60px);
  }
}

.compliance-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  line-height: var(--line-height-md);
}

.compliance-strip__icon {
  width: 44px;
  height: 44px;
  color: var(--color-active);
  background: rgba(40, 205, 217, 0.06);

  .square-icon__img {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 768px) {
  .compliance-strip {
    --block-gap: var(--landing-block-gap);
    flex-direction: row;

    height: var(--space-15);
    padding: var(--space-4);

    justify-content: space-around;

    &::before {
      top: -124px;
      right: 220px;

      transform: none;
    }

    &::after {
      bottom: -124px;
      left: 180px;
    }
  }

  .compliance-strip__icon {
    width: 28px;
    height: 28px;

    .square-icon__img {
      width: 16px;
      height: 16px;
    }
  }
}


/* --- Source: components/landings/banner-section.css --- */

.banner-section {
  padding: 0 var(--space-4) var(--space-20);
}

@media (min-width: 768px) {
  .banner-section {
    --block-gap: 0;
    padding: var(--space-25) var(--space-8);
  }
}


/* --- Source: pages/video/video-hero.css --- */

.video-hero {
  .hero__visual {
    min-height: 100%;

    .video-embed {
      gap: var(--space-3);
      width: 100%;
    }
  }

  .hero__column:first-child {
    border-bottom: 1px solid var(--color-stroke);
  }

  .hero__title {
    --text-h1: 36px;
    line-height: 48px;
  }

  .hero__title-icon {
    display: inline-block;
    vertical-align: baseline;

    width: 29px;
    height: 29px;
  }

  .editor {
    --editor-lines: 7;
  }
}

.video-hero__stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .video-hero {
    .hero {
      display: flex;
      padding: 0;
    }

    .hero__column {
      &:first-child {
        flex: 0 0 35%;
        max-width: none;
        justify-content: center;
        border: 1px solid var(--color-stroke);
        border-width: 0 1px 0 0;
      }

      &:last-child {
        flex: 1;
        min-width: 0;
        justify-content: center;
      }
    }

    .hero__visual {
      display: flex;
      align-items: center;
      padding: 0 var(--space-8);

      .video-embed {
        gap: var(--space-2);
      }
    }
  }

  .video-hero__stack {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .video-hero {
    .hero {
      min-height: 497px;
    }

    .hero__column {
      &:first-child {
        flex-basis: 34.8%;
        min-width: 0;
        justify-content: flex-start;
        padding: 90px 30px var(--space-8);
      }

      &:last-child {
        padding: 0;
      }
    }

    .hero__title {
      --text-h1: 40px;

      line-height: 52px;
    }

    .hero__actions {
      margin-top: var(--space-2);
    }

    .hero__actions-btn {
      &::after {
        content: " trial";
      }
    }

    .hero__visual {
      width: 100%;
      align-items: flex-start;
      padding: 100px var(--space-8) 0 30px;
    }
  }

  .video-hero__stack {
    .video-hero__stack-badge {
      width: 292px;
    }
  }
}


/* --- Source: components/tabs.css --- */

.tabs {
  display: inline-flex;
}

.tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--color-stroke);
  background: transparent;
  color: var(--color-white);
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.tabs__item:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.tabs__item:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.tabs__item:not(:first-child) {
  margin-left: -1px;
}

.tabs__item--active {
  background: var(--color-active-10);
  border-color: var(--color-active-80);
  color: var(--color-active);
  z-index: var(--z-base);
}

.tabs__item--inactive {
  border-color: var(--color-text-secondary);
  color: var(--color-text-secondary);
  pointer-events: none;
}

/* --- Size: Small (24px) --- */
.tabs--sm {
  .tabs__item {
    height: 24px;
    padding: 0 var(--space-2);
    font-size: var(--text-sm);
  }

  .tabs__item:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }

  .tabs__item:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }
}

@media (hover: hover) {
  .tabs__item:not(.tabs__item--active):hover {
    background: var(--color-bg);
    border-color: var(--color-stroke);
  }
}


/* --- Source: components/tab-panels.css --- */

/* ==========================================================================
   Tab panels — Stimulus-driven panel switcher (pairs with tabs / utabs skins)
   ========================================================================== */

.tab-panels {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tab-panels__header {
  padding: var(--space-3) var(--space-3) 0;
}

.tab-panels__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.tab-panels__panel[hidden] {
  display: none !important;
}

.tab-panels--panel-flex {
  .tab-panels__panel:not([hidden]) {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }
}


/* --- Source: components/editor.css --- */

/* ==========================================================================
   Editor — read-only code viewer with tabs
   ========================================================================== */

.editor {
  --editor-tag: #d9931e;
  --editor-attr: #c15082;
  --editor-string: #a66033;
  --editor-keyword: var(--color-active);
  --editor-line-num: var(--color-text-secondary);

  --editor-lines: 5;
  --editor-height: calc(
    var(--editor-lines) * var(--line-height-md) + var(--space-3) +
      var(--space-2)
  );

  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-sm);
  background: var(--color-dark);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editor__tabs {
  flex: 1;
  min-height: 0;
}

.editor__header {
  padding: 10px 10px 0;

  overflow-x: auto;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.editor__body {
  flex: none;
  height: var(--editor-height);
}

.editor__viewport {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: min-content;
  align-content: safe center;
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: var(--space-3) 0 var(--space-2);
  margin: 0 var(--space-3) var(--space-3) var(--space-2);
}

.editor__gutter {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-3) 0 0;
  user-select: none;
  pointer-events: none;
}

.editor__line-num {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: var(--line-height-lg);
  color: var(--editor-line-num);
  text-align: right;
  min-width: 1.5ch;
}

.editor__pre {
  margin: 0;
  padding: 0 var(--space-4) 0 0;
  overflow: visible;
  background: transparent;
  tab-size: 2;

  code {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--line-height-lg);
    color: var(--color-text);
    white-space: pre;
    background: none;
  }
}

.editor__token--tag {
  color: var(--editor-tag);
}

.editor__token--attr {
  color: var(--editor-attr);
}

.editor__token--string {
  color: var(--editor-string);
}

.editor__token--keyword {
  color: var(--editor-keyword);
}


/* --- Source: components/select.css --- */

.select {
  position: relative;
  width: 100%;

  &.is-open {
    .select__chevron {
      transform: rotate(180deg);
    }

    .select__menu {
      display: block;
    }

    .select__trigger {
      border-color: var(--color-active);
    }
  }
}

.select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  width: 100%;
  height: 38px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
  background: var(--color-dark);
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition);

  &:focus-visible {
    outline: 2px solid var(--color-active-40);
    outline-offset: 1px;
  }
}

.select__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

.select__chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--color-text-secondary);
  transition: transform var(--transition);
}

.select__menu {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-1));
  right: 0;
  left: 0;
  z-index: var(--z-dropdown);
  background: var(--color-bg);
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.select__items {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
  max-height: 240px;
  padding: var(--space-3);
  overflow-y: auto;
}

.select__option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: calc(var(--space-1) - var(--border-width)) calc(var(--space-1) * 1.5);
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-white);
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition:
    background var(--transition),
    border-color var(--transition);

  &:focus-visible {
    outline: 2px solid var(--color-active-40);
    outline-offset: -2px;
  }
}

.select__option--selected {
  background: var(--color-bg-light);
  border-color: var(--color-stroke);
}

.select__option--active {
  background: var(--color-row-hover);
}

@media (hover: hover) {
  .select__option:hover {
    background: var(--color-row-hover);
  }

  .select__option--selected:hover {
    background: var(--color-bg-light);
  }

  .select__trigger:hover {
    border-color: var(--color-active-80);
  }
}


/* --- Source: components/landings/video-embed.css --- */

.video-embed {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.video-embed__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-sm);
  background: var(--color-dark);

  iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

.video-embed__switcher {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  width: auto;

  .select__trigger {
    gap: 2px;
    height: 24px;
    padding: 0 8px 0 6px;
    border-radius: var(--radius-sm);
  }

  .select__value {
    flex: 0 1 auto;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }

  .select__chevron {
    color: var(--color-white);
  }

  .select__menu {
    right: auto;
    min-width: 100%;
    width: max-content;
  }
}

@media (min-width: 1024px) {
  .video-embed {
    flex-direction: row;
    gap: var(--space-2);

    .editor__body {
      flex: 1;
      min-height: 0;
      height: auto;
    }
  }

  .video-embed__player {
    flex: 0 0 64.5%;
  }
}


/* --- Source: components/landings/features.css --- */

.features {
  padding: var(--space-20) 0 0;

  border-top: 1px solid var(--color-stroke, #1c363f);

  .section-heading {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-6);
  }
}

.features__content {
  padding-top: var(--space-5);
  border: 1px solid var(--color-stroke, #1c363f);
  border-width: 1px 0;
}

.features__card {
  position: relative;

  display: flex;
  padding: 0 var(--space-4) var(--space-5);

  &:not(:last-child) {
    margin-bottom: var(--space-5);
    border-bottom: 1px solid var(--color-stroke, #1c363f);
  }
}

.features__card-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.features__card-title {
  display: flex;
  align-items: start;
  gap: var(--space-2);

  color: var(--color-white);

  .features__card-icon {
    margin-top: calc((1lh - 28px) / 2);
  }
}

.features__card-visual {
  opacity: 0;

  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  pointer-events: none;
}

.features__card-illustration {
  /* width/height attrs set intrinsic ratio; let it scale so max-width doesn't skew it */
  height: auto;
}

.features__footer {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: var(--space-4);
  min-height: var(--space-15);

  border-bottom: 1px solid var(--color-stroke);

  text-align: center;

  &::before,
  &::after {
    content: "";
    position: absolute;
    border-radius: 100px;
    background: var(--color-active-70);
    filter: blur(50px);
    pointer-events: none;
    width: 132px;
    height: 132px;
  }

  &::before {
    left: 179px;
    bottom: -124px;
  }

  &::after {
    top: -125px;
    right: 219px;
  }
}

@media (min-width: 768px) {
  .features {
    --block-gap: -1px;

    padding-top: var(--space-25);

    &::after {
      display: none;
    }

    .section-heading {
      padding: 0 var(--space-8);
    }

    .section-heading__title {
      --text-h2: 28px;
    }
  }

  .features__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    padding: 0;

    border-bottom: 0;
  }

  .features__card {
    padding: var(--space-8);

    margin-bottom: 0 !important;
    border-right: 1px solid var(--color-stroke);

    &:nth-child(even) {
      border-right: none;
    }

    &:last-child {
      border-bottom: 1px solid var(--color-stroke);
    }
  }

  .features__card-description {
    font-size: var(--text-lg);
  }
}

@media (min-width: 1024px) {
  .features__footer {
    padding: var(--space-4) var(--space-8);
  }
}

@media (min-width: 1024px) and (hover: hover) {
  .features__card:hover {
    .features__card-visual {
      opacity: 1;

      transition: opacity var(--transition);
    }
  }
}


/* --- Source: components/landings/comparison-table.css --- */

.comparison-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: var(--text-xs);
  line-height: var(--line-height-md);

  th,
  td {
    width: 21%;
    padding: var(--space-3) 6px;

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid var(--color-stroke);
    overflow-wrap: break-word;

    &:first-child {
      width: 30%;
      padding-left: var(--space-3);
      padding-right: 6px;
    }
  }

  thead th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-white);

    background: var(--color-bg);
    border: 1px solid var(--color-stroke);
    border-width: 1px 0;
  }

  tbody td,
  tbody th.comparison-table__row-header {
    line-height: 16px;
    color: var(--color-text);
    font-weight: 400;
  }

  td.comparison-table__warn {
    color: var(--color-warning);
  }

  td.comparison-table__highlight-col,
  th.comparison-table__highlight-col {
    color: var(--color-active);
    font-weight: 500;
    background: var(--color-active-10);

    .comparison-table__icon {
      border-color: var(--color-active-30);
      color: var(--color-active);
    }
  }

  th.comparison-table__highlight-col {
    background: var(--color-bg);
  }

  tbody tr.comparison-table__row--highlighted {
    td,
    th.comparison-table__row-header {
      background: rgba(40, 205, 217, 0.06);
    }

    .comparison-table__row-header {
      font-weight: 700;
      color: var(--color-active);
    }
  }
}

.comparison-table__col-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.comparison-table__col-label {
  display: block;
}

.comparison-table__col-note {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-xs);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.comparison-table
  thead
  th:not(:first-child)
  .comparison-table__col-title:has(.comparison-table__col-note) {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);

  .comparison-table__col-label {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: normal;
    color: var(--color-white);
  }

  .comparison-table__col-note {
    margin-top: 0;
  }
}

.comparison-table thead th:not(:first-child):has(.comparison-table__col-note) {
  vertical-align: top;
}

.comparison-table__icon {
  flex-shrink: 0;
  color: var(--color-white);
  border: 1px solid var(--color-stroke-light);
  background: var(--color-bg);
}

.comparison-table__best {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warning);
}

.comparison-table__best-value {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warning);
}

.comparison-table__icon-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--space-1);
  color: var(--color-active);
}

/* Mobile only: headers that carry an icon shrink to the icon alone. */
.comparison-table__col-title:has(.comparison-table__icon) {
  justify-content: center;

  .comparison-table__col-label,
  .comparison-table__col-note {
    display: none;
  }
}

@media (min-width: 768px) {
  .comparison-table {
    font-size: var(--text-md);

    th,
    td {
      padding: var(--space-4) var(--space-5);
      overflow-wrap: normal;

      &:first-child {
        width: 16%;
        padding-left: var(--space-8);
        padding-right: var(--space-2);
      }
    }

    thead th {
      font-size: var(--text-h3);
    }

    tbody td,
    tbody th.comparison-table__row-header {
      font-size: var(--text-md);
    }
  }

  .comparison-table__col-note {
    font-size: var(--text-md);
  }

  /* Icon headers show their full label + note again. */
  .comparison-table__col-title:has(.comparison-table__icon) {
    align-items: start;
    justify-content: flex-start;

    .comparison-table__icon {
      margin-block: calc((1lh - 28px) / 2);
    }

    .comparison-table__col-label,
    .comparison-table__col-note {
      display: block;
    }
  }

  /* Icon-less header labels return to heading size. */
  .comparison-table
    thead
    th:not(:first-child)
    .comparison-table__col-title:has(.comparison-table__col-note)
    .comparison-table__col-label {
    font-size: var(--text-h3);
  }
}

@media (hover: hover) {
  .comparison-table {
    tbody tr:hover {
      td,
      th.comparison-table__row-header {
        background: var(--color-row-hover);
      }

      .comparison-table__highlight-col {
        background: var(--color-active-30);
      }
    }

    tbody tr.comparison-table__row--highlighted:hover {
      td,
      th.comparison-table__row-header {
        background: rgba(40, 205, 217, 0.15);
      }

      .comparison-table__highlight-col {
        background: var(--color-active-30);
      }
    }
  }
}


/* --- Source: pages/video/comparison.css --- */

.comparison {
  .section-heading__title {
    white-space: nowrap;
  }
}

.comparison__heading {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);

  .section-heading__description {
    display: none;
  }
}

.comparison__title-icon {
  display: inline-block;
  vertical-align: baseline;

  width: 44px;
  height: 24px;

  vertical-align: middle;
}

@media (min-width: 768px) {
  .comparison {
    --block-gap: -1px;

    padding-top: var(--space-25);
    border-top: 1px solid var(--color-stroke);

    .comparison-table {
      & th,
      & td {
        &:first-child {
          width: 19%;
        }
      }
    }
  }
  .comparison__heading {
    padding: 0 var(--space-8);
    margin-bottom: var(--space-6);

    .section-heading__description {
      display: block;
    }

    .section-heading__title {
      --text-h2: 28px;
    }
  }

  .comparison__title-icon {
    width: 71px;
    height: 36px;
  }
}


/* --- Source: components/landings/major-section.css --- */

.major-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.major-section__header {
  padding: var(--space-15) 0;

  .section-heading {
    position: relative;
    z-index: 1;
  }

  .section-heading__title {
    font-size: var(--text-h1);
  }
}

.major-section__heading {
  padding: 0 var(--space-4);
}

.major-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-15) var(--space-4) 0;
  border-top: 1px solid var(--color-stroke);

  h2 {
    color: var(--color-white);
  }

  h3 {
    color: var(--color-white);
  }

  ul:not([class]) {
    list-style: disc;
    padding-left: var(--space-4);
  }
}

.major-section__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.major-section__note {
  margin: 0;

  text-align: center;
  font-size: var(--text-md);
  line-height: var(--line-height-md);

  a {
    color: var(--color-active);
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  .major-section {
    --block-gap: 0;
  }

  .major-section__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-4);

    .btn {
      min-width: 320px;
      height: 38px;
    }
  }

  .major-section__note {
    line-height: var(--line-height-xl);
  }
}

@media (min-width: 1024px) {
  .major-section__heading,
  .major-section__content {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}


/* --- Source: components/landings/facts-strip.css --- */

.facts-strip {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.facts-strip__label {
  display: flex;
  align-items: center;

  padding-bottom: var(--space-2);

  font-family: var(--font-heading);
  font-size: var(--text-lg);
}

.facts-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);

  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

@media (min-width: 768px) {
  .facts-strip {
    position: relative;
    overflow: hidden;

    flex-direction: row;
    gap: 0;

    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-md);

    &::before {
      content: "";
      position: absolute;
      top: -110px;
      right: 231px;
      width: 112px;
      height: 112px;
      border-radius: 100px;
      background: var(--color-active-80);
      filter: blur(70px);
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -130px;
      left: 90px;
      width: 132px;
      height: 132px;
      border-radius: 100px;
      background: var(--color-active-80);
      filter: blur(50px);
    }
  }

  .facts-strip__label {
    flex: 0 0 fit-content;

    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-6);
  }

  .facts-strip__item {
    padding: var(--space-4) var(--space-4);

    border-left: 1px solid var(--color-stroke);
  }

  .facts-strip__icon {
    width: 24px;
    height: 24px;
  }
}


/* --- Source: pages/video/video-pricing.css --- */

.video-pricing__facts {
  margin-top: var(--space-16);
}


/* --- Source: components/video-rates.css --- */

.video-rates {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.video-rates__grid {
  display: flex;
  flex-direction: column;

  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-md);
}

.video-rates__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);

  padding: var(--space-3) var(--space-4);

  text-align: center;

  &:not(:last-child) {
    border-bottom: 1px solid var(--color-stroke);
  }
}

.video-rates__label,
.video-rates__unit {
  color: var(--color-text-secondary);
}

.video-rates__label {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

.video-rates__price {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: normal;
  color: var(--color-active);
}

.video-rates__unit {
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
}

.video-rates__included {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  padding: var(--space-4);
  border: 1px solid var(--color-active-30);
  border-radius: var(--radius-lg);

  &::before,
  &::after {
    content: "";
    position: absolute;
    border-radius: 100px;
    background: var(--color-active-80);
  }

  &::before {
    top: -80px;
    right: 180px;
    width: 112px;
    height: 112px;
    filter: blur(70px);
  }

  &::after {
    bottom: -100px;
    right: 40px;
    width: 132px;
    height: 132px;
    filter: blur(50px);
  }
}

.video-rates__content {
  position: relative;
  z-index: var(--z-base, 1);

  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.video-rates__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-height-md);
  color: var(--color-white);
}

.video-rates__text {
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .video-rates__grid {
    flex-direction: row;
  }

  .video-rates__card {
    flex: 1;

    padding: var(--space-4) var(--space-2);

    &:not(:last-child) {
      border-bottom: none;
      border-right: 1px solid var(--color-stroke);
    }
  }

  .video-rates__included {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: calc(var(--space-6) - 1px) var(--space-6);
  }
}

@media (min-width: 1024px) {
  .video-rates__card {
    padding: var(--space-4);
  }

  .video-rates__price {
    font-size: var(--text-h2);
  }
}


/* --- Source: pages/video/migration.css --- */

.migration__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-stroke);

  color: var(--color-bg-light);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 600;
}

.migration__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  padding: var(--space-4);
}

@media (min-width: 768px) {
  .migration {
    --block-gap: 0;
    display: flex;
    flex-direction: row;
    flex-flow: row-reverse;

    border-bottom: 1px solid var(--color-stroke);
  }

  .migration__heading {
    .section-heading__title {
      --text-h2: 28px;
    }
  }

  .migration__visual {
    flex: 0 0 50%;
    border-bottom: 0;
    border-left: 1px solid var(--color-stroke);
  }

  .migration__content {
    flex: 0 0 50%;

    justify-content: center;

    padding: var(--space-8);
  }
}


/* --- Source: components/landings/faq-list.css --- */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-stroke);
}

.faq-list__column {
  display: contents;
}

.faq-list__item {
  position: relative;
  overflow: hidden;
  order: var(--faq-order);
  border-bottom: 1px solid var(--color-stroke);
}

.faq-list__item {
  &.is-open {
    &::after {
      content: "";
      position: absolute;
      bottom: -153px;
      right: -50px;
      width: 200px;
      height: 200px;
      border-radius: 100px;
      background: var(--color-active-80);
      filter: blur(130px);
      pointer-events: none;
    }

    .faq-list__icon {
      transform: rotate(45deg);
    }

    .faq-list__answer {
      grid-template-rows: 1fr;
    }
  }
}

.faq-list__trigger {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-6) var(--space-4);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  z-index: var(--z-base);
}

.faq-list__question {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--line-height-lg);
}

.faq-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.faq-list__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  z-index: var(--z-base);
}

.faq-list__answer-inner {
  overflow: hidden;

  p {
    margin: 0;
    padding: 0 var(--space-4) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: var(--line-height-lg);
    color: var(--color-text);
  }

  a {
    color: var(--color-active);
    border-bottom: 1px solid var(--color-active-30);
    transition: border-color var(--transition);
  }
}

@media (min-width: 768px) {
  .faq-list {
    flex-direction: row;
  }

  .faq-list__column {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }

  .faq-list__column:first-child {
    border-right: 1px solid var(--color-stroke);
  }

  .faq-list__item {
    order: unset;
  }

  .faq-list__trigger {
    padding: var(--space-8);
  }

  .faq-list__answer-inner {
    p {
      padding: 0 var(--space-8) var(--space-8);
    }
  }
}

@media (hover: hover) {
  .faq-list__answer-inner {
    a:hover {
      border-color: var(--color-active);
    }
  }
}


/* --- Source: components/landings/animated-about.css --- */

.animated-about {
  --animated-about-sticky-top: 80px;
  --animated-about-visual-offset: var(--space-12);

  border-top: 1px solid var(--color-stroke);
}

.animated-about__layout {
  display: block;
}

.animated-about__col--visual {
  display: none;
}

.animated-about__content {
  list-style: none;
  padding: calc(var(--space-20) - var(--space-8)) 0 0;
  margin: 0;
}

.animated-about__intro {
  padding: var(--space-8) var(--space-4);
  border-bottom: 1px solid var(--color-stroke);

  & + .animated-about__content {
    padding-top: 0;
  }
}

.animated-about__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-8) var(--space-4);
  border-bottom: 1px solid var(--color-stroke);

  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.animated-about__title {
  margin: var(--space-2) 0 0;
  color: var(--color-white);
}

.animated-about__btn {
  margin-top: var(--space-2);
}

@media (min-width: 768px) {
  .animated-about {
    --block-gap: -1px;
    border-bottom: 1px solid var(--color-stroke);
  }

  .animated-about__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .animated-about__col--visual {
    display: flex;
    justify-content: center;
    position: relative;
    border-right: 1px solid var(--color-stroke);
  }

  .animated-about__visual {
    position: sticky;
    top: var(--animated-about-sticky-top);
    width: 316px;
    height: 280px;
    margin: var(--animated-about-visual-offset) auto;
  }

  .animated-about__visual-stage {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  .animated-about__visual-bg {
    position: absolute;
    inset: 0;
    background-image: url("/assets/animated-about-bg-b859f479.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .animated-about__visual-img {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 78px;
    margin: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }

  .animated-about__visual-img.is-active {
    opacity: 1;
  }

  .animated-about--reduced-motion {
    .animated-about__visual-img {
      transition: none;
    }
  }

  .animated-about__content {
    padding-top: 0;
  }

  .animated-about__intro {
    padding: var(--space-20) var(--space-8);
  }

  .animated-about__item {
    padding: var(--space-20) var(--space-8);

    &:last-child {
      padding-bottom: var(--space-20);
    }
  }

  .animated-about__title {
    max-width: 60%;
  }

  .animated-about__btn {
    align-self: flex-start;
    height: 38px;
    min-width: 240px;
  }
}


/* --- Source: pages/s3/s3-about.css --- */

.s3-about {
  .animated-about__item {
    .animated-about__title {
      --text-h2: 22px;

      line-height: 29px;
      margin-top: var(--space-1);
    }

    .animated-about__description {
      font-size: var(--text-md);
    }

    .animated-about__btn {
      font-size: var(--text-md);
    }

    &:last-child {
      padding-bottom: calc(var(--space-20) + 1px);
    }
  }
}

@media (min-width: 768px) {
  .s3-about {
    .animated-about__item {
      .animated-about__title {
        --text-h2: 24px;

        line-height: normal;
        margin-top: var(--space-2);
      }

      .animated-about__description {
        font-size: var(--text-lg);
        line-height: 28px;
      }

      &:last-child {
        padding-bottom: var(--space-20);
      }
    }
  }
}


/* --- Source: pages/s3/s3-hero.css --- */

.s3-hero {
  .hero__title {
    --text-h1: 22px;

    line-height: 29px;

    .emphasis--selected {
      line-height: 29px;
    }
  }

  .hero__visual {
    padding-block: var(--space-4);
  }

  .hero__illustration {
    width: 100%;
    height: 221px;
    transform: scale(1.25);
  }

  .hero__features {
    gap: var(--space-4);
    margin-top: calc(-1 * var(--space-1));
  }
}

@media (min-width: 768px) {
  .s3-hero {
    .hero__title {
      --text-h1: 40px;

      line-height: normal;
      margin-bottom: var(--space-1);

      .emphasis--selected {
        display: block;
        line-height: 48px;
        margin-top: 2px;
        top: 4px;
        margin-left: 0;
      }
    }

    .hero__description {
      max-width: 65%;
      font-size: var(--text-lg);
      line-height: 28px;
    }

    .hero__column:first-child {
      justify-content: flex-start;
      padding-top: calc(var(--space-1) * 22);
      padding-bottom: var(--space-8);
    }

    .hero__column:last-child {
      padding-bottom: var(--space-9);
    }

    .hero__visual {
      padding-block: 0;
    }

    .hero__illustration {
      height: auto;
      transform: none;
    }

    .hero__features {
      gap: var(--space-4);
      margin-top: calc(-1 * var(--space-3));
    }

    .hero__actions {
      margin-top: calc(-1 * var(--space-1));
    }
  }
}


/* --- Source: components/landings/pricing-intro.css --- */

.pricing-intro {
  --block-gap: 0;
  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  padding: calc(var(--space-20) - 1px) var(--space-4);

  text-align: center;

  &::after {
    display: block;
  }
}

.pricing-intro__title {
  --text-h2: 22px;

  line-height: 29px;
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.pricing-intro__description {
  font-size: var(--text-md);
}

@media (min-width: 768px) {
  .pricing-intro {
    --block-gap: -1px;

    padding: var(--space-20) var(--space-4) var(--space-25);
  }

  .pricing-intro__container {
    max-width: 488px;
    margin: 0 auto;
  }

  .pricing-intro__title {
    --text-h2: 28px;

    line-height: normal;
    margin-bottom: var(--space-4);
  }

  .pricing-intro__description {
    font-size: var(--text-lg);
    line-height: 28px;
  }
}


/* --- Source: components/range.css --- */

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: transparent;
  cursor: pointer;
  vertical-align: top;

  &:focus {
    outline: none;
  }

  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    margin-top: -8px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    background: var(--color-active);
  }

  &::-moz-range-thumb {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--color-active);
  }
}

.range--progress {
  --value: 0%;

  &::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--color-stroke);
    background: linear-gradient(
      to right,
      var(--color-active) 0%,
      var(--color-active) var(--value),
      var(--color-bg) var(--value),
      var(--color-bg) 100%
    );
  }

  &::-moz-range-track {
    height: 8px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--color-stroke);
    background: linear-gradient(
      to right,
      var(--color-active) 0%,
      var(--color-active) var(--value),
      var(--color-bg) var(--value),
      var(--color-bg) 100%
    );
  }
}


/* --- Source: components/landings/diagram-bar.css --- */

.diagram-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.diagram-bar__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.diagram-bar__label {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
}

.diagram-bar__value {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
}

.diagram-bar--highlighted {
  color: var(--color-active);

  .diagram-bar__value {
    color: var(--color-active);
  }

  .diagram-bar__scale-inner {
    background-color: var(--color-active);
    border-right-color: var(--color-active);
  }
}

.diagram-bar__scale {
  display: flex;
  height: 20px;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-xs);
}

.diagram-bar__scale-inner {
  width: 2%;
  height: 100%;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  border-right: 1px solid var(--color-stroke);
  background-color: var(--color-bg);
  transition: width 280ms ease;
}

@media (min-width: 768px) {
  .diagram-bar__scale {
    height: 24px;
  }
}


/* --- Source: components/landings/calculator.css --- */

.calculator__toggle {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  margin-bottom: var(--space-12);
}

.calculator__toggle-item {
  flex: 1;
  min-width: 0;
}

.calculator__toggle-input {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.calculator__toggle-label {
  position: relative;

  display: block;
  overflow: hidden;
  padding: var(--space-5);

  border: 1px solid rgba(40, 205, 217, 0.3);
  border-radius: var(--radius-lg);
  background: var(--color-dark);

  color: var(--color-text);
  cursor: pointer;

  transition:
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.calculator__toggle-label::before,
.calculator__toggle-label::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  background: var(--color-active-80);
  filter: blur(100px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
}

.calculator__toggle-label::before {
  top: -91px;
  right: -11px;
}

.calculator__toggle-label::after {
  bottom: -91px;
  left: -11px;
}

.calculator__toggle-input:checked + .calculator__toggle-label {
  border-color: rgba(40, 205, 217, 0.45);
  box-shadow: 0 0 24px rgba(40, 205, 217, 0.12);
}

.calculator__toggle-input:checked + .calculator__toggle-label::after {
  opacity: 1;
}

.calculator__toggle-input:checked + .calculator__toggle-label::before {
  opacity: 0;
}

.calculator__toggle-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.calculator__toggle-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(40, 205, 217, 0.3);
  border-radius: var(--radius-md);
  background: rgba(40, 205, 217, 0.06);
  color: var(--color-dark);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;

  svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: scale(0.75);
    transition:
      opacity 180ms ease,
      transform 220ms cubic-bezier(0.34, 1.4, 0.64, 1);
  }
}

.calculator__toggle-input:checked
  + .calculator__toggle-label
  .calculator__toggle-mark {
  border-color: var(--color-active);
  background: var(--color-active);
}

.calculator__toggle-input:checked
  + .calculator__toggle-label
  .calculator__toggle-mark
  svg {
  opacity: 1;
  transform: scale(1);
}

.calculator__toggle-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.calculator__toggle-description {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
  color: var(--color-text);
}

.calculator__ranges {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);

  margin-bottom: var(--space-12);
}

.calculator__range {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.calculator__range-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.calculator__range-label {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
}

.calculator__range-digit {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--line-height-md);

  color: var(--color-active);
}

.calculator__diagrams {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);

  margin-bottom: var(--space-12);
}

.calculator__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  margin-bottom: var(--space-5);
}

.calculator__comparison-link {
  p {
    text-align: center;

    font-size: var(--text-md);
    line-height: var(--line-height-md);

    a {
      color: var(--color-active);
      font-weight: 600;
    }
  }
}

@media (min-width: 768px) {
  .calculator__toggle {
    flex-direction: row;
    gap: var(--space-8);
  }

  .calculator__toggle-header {
    flex-direction: row;
    margin-bottom: var(--space-3);
  }

  .calculator__toggle-label {
    padding: var(--space-6) var(--space-8);
  }

  .calculator__toggle-input:checked + .calculator__toggle-label::before {
    opacity: 1;
  }

  .calculator__toggle-title {
    font-size: 24px;
  }

  .calculator__toggle-description {
    line-height: 28px;
  }

  .calculator__ranges {
    flex-direction: row;
    gap: var(--space-8);
  }

  .calculator__range {
    flex: 1;
  }

  .calculator__diagrams {
    gap: var(--space-8);
  }

  .calculator__comparison-link {
    p {
      line-height: 28px;
    }
  }

  .calculator__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-4);

    .btn {
      min-width: 320px;
      height: 38px;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .calculator__toggle-label,
  .calculator__toggle-label::before,
  .calculator__toggle-label::after,
  .calculator__toggle-mark {
    transition: none;
  }

  .calculator__toggle-mark {
    svg {
      transition: none;
    }
  }
}


/* --- Source: pages/s3/calculator-section.css --- */

.calculator-section {
  padding: 0 var(--space-4);

  .calculator__toggle-label {
    padding: 19px;
  }

  .calculator__toggle-title {
    line-height: 23px;
  }

  .calculator__toggle-description {
    font-size: var(--text-md);
  }

  .calculator__actions {
    .btn {
      font-size: var(--text-lg);
    }
  }
}

@media (min-width: 768px) {
  .calculator-section {
    padding: 0 var(--space-8);

    .calculator__toggle-label {
      height: 100%;
      padding: var(--space-6) var(--space-8);
    }

    .calculator__toggle-title {
      line-height: normal;
    }

    .calculator__toggle-description {
      font-size: var(--text-lg);
    }
  }
}


/* --- Source: pages/s3/s3-compliance.css --- */

.s3-compliance {
  .compliance-strip {
    gap: var(--space-4);
    padding: var(--space-10) var(--space-4);
  }
}

@media (min-width: 768px) {
  .s3-compliance {
    .compliance-strip {
      gap: var(--space-3);
      padding: var(--space-4);
    }
  }
}


/* --- Source: components/landings/card-list.css --- */

.card-list {
  .section-heading {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-4);

    .section-heading__title {
      line-height: 29px;
    }
  }
}

.card-list__content {
  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  padding: var(--space-4) 0 15px;
}

.card-list__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
}

.card-list__visual {
  display: flex;
  align-items: center;
}

.card-list__illustration {
  display: block;
  width: auto;
  max-width: 124px;
  height: auto;
}

.card-list__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.card-list__title {
  margin: 0;
  color: var(--color-white);
  line-height: 23px;
}

.card-list__description {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-md);
}

@media (min-width: 768px) {
  .card-list {
    .section-heading {
      padding: 0 var(--space-8);
      margin-bottom: var(--space-6);

      .section-heading__title {
        --text-h2: 28px;

        line-height: normal;
      }
    }
  }

  .card-list__content {
    padding: 0;

    border-bottom: 0;
  }

  .card-list__item {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--color-stroke);
  }

  .card-list__item:not(:has(.card-list__visual)) {
    grid-template-columns: 1fr;
  }

  .card-list__visual {
    justify-content: center;
    padding: var(--space-5);
    border-right: 1px solid var(--color-stroke);
  }

  .card-list__text {
    justify-content: center;
    padding: var(--space-5) var(--space-8);
  }

  .card-list__title {
    line-height: normal;
  }

  .card-list__description {
    font-size: var(--text-lg);
  }
}


/* --- Source: pages/comparison/comparison-hero.css --- */

.comparison-hero {
  padding: var(--space-15) 0;
  border-bottom: 1px solid var(--color-stroke);

  .hero {
    position: relative;
    z-index: 1;
  }

  .hero__column {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .comparison-hero {
    .hero {
      padding: 0 var(--space-8);
    }
  }
}


/* --- Source: components/landings/ordinary-section.css --- */

.ordinary-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.ordinary-section__heading {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);
}

.ordinary-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0 var(--space-4);

  a:not(.btn):not(.cards-links__card) {
    color: var(--color-active);
    font-weight: 500;
    text-decoration: underline;
  }

  h2 {
    color: var(--color-white);
  }

  h3 {
    color: var(--color-white);
  }

  h4 {
    font-weight: 600;
    font-size: var(--text-h3);
  }

  ul:not([class]) {
    list-style: disc;
    padding-left: var(--space-4);
    margin: 0;
  }

  .btn {
    width: 100%;
  }
}

.ordinary-section__note {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-active-30);
  border-radius: var(--radius-lg);
  color: var(--color-text);

  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(100px);
    pointer-events: none;
  }

  &::before {
    top: -91px;
    right: -61px;
  }

  &::after {
    top: 116px;
    left: -11px;
  }

  p {
    position: relative;
    z-index: 1;
    margin: 0;
  }

  strong {
    color: var(--color-white);
  }
}

.ordinary-section__actions {
  margin: var(--space-4) 0 0;
}

@media (min-width: 768px) {
  .ordinary-section {
    --block-gap: 0;
    padding: var(--space-15) 0;
  }

  .ordinary-section__heading,
  .ordinary-section__content {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }

  .ordinary-section__content {
    .btn {
      width: auto;
      min-width: 240px;
    }
  }
}


/* --- Source: pages/comparison/comparison-section.css --- */

.comparison-section {
  border-bottom: 0;
  padding-bottom: 0;

  .ordinary-section__heading {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-6);
  }

  .ordinary-section__content {
    padding: 0 !important;
  }

  .bullet-list {
    padding: 0 var(--space-4);
  }
}

.comparison-section__footnote {
  padding: 0 var(--space-4);
  margin: 0;

  font-size: var(--text-md);
  line-height: var(--line-height-lg);
  color: var(--color-text);
}

.comparison-section__table {
  /* Wider first column on phones so provider names wrap at spaces. */
  th:first-child,
  td:first-child {
    width: 30%;
  }
}

@media (min-width: 768px) {
  .comparison-section__table {
    th,
    td {
      width: 20%;
    }

    th:first-child,
    td:first-child {
      width: 20%;
    }
  }

  .comparison-section {
    padding: var(--space-15) 0 0;

    .ordinary-section__heading {
      padding: 0 var(--space-8);
    }

    .bullet-list {
      padding: 0 var(--space-8);
    }
  }

  .comparison-section__footnote {
    padding: var(--space-2) var(--space-8) var(--space-6);
  }
}

@media (min-width: 1024px) {
  .comparison-section:has(+ .workflow) {
    border-bottom: 1px solid var(--color-stroke);
  }
}


/* --- Source: pages/comparison/charts-section.css --- */

.charts-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.charts-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-15);
}

.charts-section__item {
  padding: 0 var(--space-4) var(--space-15);

  border-bottom: 1px solid var(--color-stroke);

  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.charts-section__title {
  margin: 0 0 var(--space-5);
  color: var(--color-white);

  font-size: var(--text-h2);
}

.charts-section__diagrams {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .charts-section__item {
    padding: 0 var(--space-8) var(--space-15);
  }
}


/* --- Source: pages/comparison/methodology-section.css --- */

.s3-methodology-section__table {
  th,
  td,
  th:first-child,
  td:first-child {
    width: 33.33%;
  }
}


/* --- Source: pages/comparison/feature-section.css --- */

.feature-section {
  padding: var(--space-15) 0 0;
  border-top: 1px solid var(--color-stroke);
}

.feature-section__content {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-4);
}

.feature-section__title {
  margin: var(--space-3) 0 0;

  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.feature-section__content > .bullet-list {
  margin: var(--space-4) 0 0;
  line-height: var(--line-height-md);
}

.feature-section__bar {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: var(--space-4);
  margin: var(--space-6) 0 0;
  min-height: var(--space-15);

  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  &::before,
  &::after {
    content: "";
    position: absolute;
    border-radius: 100px;
    background: var(--color-active-70);
    filter: blur(50px);
    pointer-events: none;
    width: 132px;
    height: 132px;
  }

  &::before {
    left: 179px;
    bottom: -124px;
  }

  &::after {
    top: -125px;
    right: 219px;
  }

  .bullet-list {
    gap: var(--space-3);
  }
}

@media (min-width: 768px) {
  .feature-section {
    --block-gap: var(--space-15);
  }
}

@media (min-width: 1024px) {
  .feature-section__content {
    padding: 0 var(--space-8);
  }

  .feature-section__bar {
    padding: var(--space-4) var(--space-8);

    .bullet-list {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-around;
      gap: var(--space-6);
    }
  }
}


/* --- Source: pages/comparison/switch-section.css --- */

.switch-section {
  border-top: 0;
  padding-top: 0;

  .feature-section__bar {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);

    padding: var(--space-6) var(--space-4);
  }

  .feature-section__bar-title {
    color: var(--color-white);
  }
}

@media (min-width: 1024px) {
  .switch-section {
    .feature-section__bar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      padding: var(--space-3) var(--space-8);
    }
  }
}


/* --- Source: components/landings/cards-links.css --- */

.cards-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.cards-links__card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  padding: var(--space-6);

  border: 1px solid var(--color-active-30);
  border-radius: var(--radius-lg);

  text-decoration: none;

  transition: border-color var(--transition);

  &::before {
    content: "";
    position: absolute;
    left: -21px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(100px);
    pointer-events: none;
  }
}

.cards-links__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h3);
}

.cards-links__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .cards-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cards-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (hover: hover) {
  .cards-links__card:hover {
    border-color: var(--color-active);
  }
}


/* --- Source: components/landings/workflow.css --- */

.workflow {
  --workflow-corner: 14px;

  padding: var(--space-20) var(--space-4);
  border: 1px solid var(--color-stroke, #1c363f);
  border-width: 1px 0;
}

.workflow.section-striped::after {
  display: block;
}

.workflow__heading {
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-6);

  .section-heading__title {
    font-size: var(--text-h2);
  }
}

.workflow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.workflow__step {
  position: relative;
  width: 100%;
}

.workflow__step-card {
  position: relative;
  padding: 1px;
  background-color: var(--color-stroke);
  clip-path: polygon(
    var(--workflow-corner) 0,
    100% 0,
    100% calc(100% - var(--workflow-corner)),
    calc(100% - var(--workflow-corner)) 100%,
    0 100%,
    0 var(--workflow-corner)
  );
}

.workflow__step-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 70px;
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-bg);
  clip-path: polygon(
    var(--workflow-corner) 0,
    100% 0,
    100% calc(100% - var(--workflow-corner)),
    calc(100% - var(--workflow-corner)) 100%,
    0 100%,
    0 var(--workflow-corner)
  );
}

.workflow__num {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  color: var(--color-active);
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  line-height: var(--line-height-lg);
  background: url("/assets/pages/grant/workflow-step-num-9e3575cc.svg") center / 100% 100%
    no-repeat;
}

.workflow__text {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
}

.workflow__desc {
  display: block;
  margin-top: var(--space-1);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--line-height-md);
}

@media (min-width: 768px) {
  .workflow {
    --block-gap: 0;
  }
}

@media (min-width: 1024px) {
  .workflow {
    --workflow-corner: 24px;

    padding: var(--space-20) var(--space-8);
    border-top: 0;
  }

  .workflow__heading {
    margin-bottom: var(--space-6);
  }

  .workflow__steps {
    max-width: 628px;
  }

  .workflow__step {
    max-width: 460px;
    margin-inline: auto;
  }

  .workflow__step-inner {
    min-height: 86px;
    padding: var(--space-4) var(--space-6);
  }

  .workflow__num {
    width: 56px;
    height: 40px;
    font-size: var(--text-h3);
    line-height: 32px;
  }

  .workflow__text {
    font-size: var(--text-h3);
  }

  .workflow__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 81px;
    height: 128px;
    background-image: url("/assets/pages/grant/workflow-connector-7fb56066.svg");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
  }

  .workflow__step:nth-child(odd)::before {
    left: -84px;
  }

  .workflow__step:nth-child(even)::before {
    right: -84px;
    left: auto;
    transform: scaleX(-1);
  }
}


/* --- Source: pages/grant/grant-hero.css --- */

.grant-hero {
  .hero__illustration {
    width: 100%;
    max-height: 311px;
    object-fit: contain;
  }
}

@media (min-width: 768px) {
  .grant-hero {
    .hero__illustration {
      width: 461px;
      height: 461px;
      margin: 0 auto;
      max-height: none;
    }

    .hero__description {
      max-width: 75%;
    }
  }
}


/* --- Source: pages/grant/conditions-section.css --- */

.grant-conditions {
  --grant-conditions-corner: 14px;

  padding: var(--space-20) var(--space-4) 0;
  border-top: 1px solid var(--color-stroke);
}

.grant-conditions__heading {
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-6);

  .section-heading__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
  }
}

.grant-conditions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.grant-conditions__card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 1px;
  background-color: var(--color-stroke);
  clip-path: polygon(
    var(--grant-conditions-corner) 0,
    calc(100% - var(--grant-conditions-corner)) 0,
    100% var(--grant-conditions-corner),
    100% calc(100% - var(--grant-conditions-corner)),
    calc(100% - var(--grant-conditions-corner)) 100%,
    var(--grant-conditions-corner) 100%,
    0 calc(100% - var(--grant-conditions-corner)),
    0 var(--grant-conditions-corner)
  );
}

.grant-conditions__card--highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  transform: translate(30%, -30%);
  border-radius: 100px;
  background: var(--color-active-80);
  filter: blur(60px);
  pointer-events: none;
}

.grant-conditions__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  min-height: 144px;
  padding: var(--space-6, 24px) var(--space-4, 16px);
  background-color: var(--color-bg);
  clip-path: polygon(
    var(--grant-conditions-corner) 0,
    calc(100% - var(--grant-conditions-corner)) 0,
    100% var(--grant-conditions-corner),
    100% calc(100% - var(--grant-conditions-corner)),
    calc(100% - var(--grant-conditions-corner)) 100%,
    var(--grant-conditions-corner) 100%,
    0 calc(100% - var(--grant-conditions-corner)),
    0 var(--grant-conditions-corner)
  );
}

.grant-conditions__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(40, 205, 217, 0.06);

  .square-icon__img {
    width: 24px;
    height: 24px;
  }
}

.grant-conditions__text {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-lg);
  text-align: center;
}

@media (min-width: 576px) {
  .grant-conditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grant-conditions {
    --block-gap: 0;
    --grant-conditions-corner: 24px;

    padding: var(--space-20, 80px) var(--space-8, 32px);
  }

  .grant-conditions__heading {
    margin-bottom: var(--space-8, 32px);
  }

  .grant-conditions__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --- Source: pages/grant/about-section.css --- */

.grant-about {
  .animated-about__content {
    padding-top: 0;
  }

  .animated-about__title {
    font-size: var(--text-h2);
  }
}

.grant-about__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-8) var(--space-4);
  border-bottom: 1px solid var(--color-stroke);
}

.grant-about__title {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .grant-about__intro {
    padding: var(--space-20) var(--space-8);
  }

  .grant-about {
    .animated-about__title {
      font-size: 24px;
      max-width: 100%;
    }
  }
}


/* --- Source: pages/grant/grant-form.css --- */

.grant-form {
  --block-gap: 0;
  position: relative;
  padding: var(--space-25) var(--space-4) var(--space-20);
  overflow: hidden;
}

.grant-form::before,
.grant-form::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--color-active-30);
  pointer-events: none;
}

.grant-form::before {
  top: -54px;
  right: 41px;
  width: 128px;
  height: 128px;
  filter: blur(75px);
}

.grant-form::after {
  bottom: -116px;
  left: 40px;
  width: 178px;
  height: 178px;
  filter: blur(100px);
}

.grant-form__heading {
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-8);

  .section-heading__title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    font-weight: 600;
    line-height: normal;
  }
}

.grant-form__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 720px;
  margin: 0 auto;

  &[hidden] {
    display: none;
  }
}

.grant-form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.grant-form__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.grant-form__success {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-15) var(--space-5);
  text-align: center;
}

.grant-form__success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--color-active);
}

.grant-form__success-icon-graphic {
  display: block;
}

.grant-form__success-title {
  margin: 0 0 var(--space-3);
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .grant-form {
    padding: var(--space-25) var(--space-8) var(--space-20);
  }

  .grant-form__row {
    flex-direction: row;

    .form-field {
      flex: 1;
      min-width: 0;
    }
  }
}


/* --- Source: components/switch.css --- */

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  cursor: pointer;
}

.switch__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.switch__track {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border-radius: 50%;
  transition:
    transform var(--transition),
    background var(--transition);
}

/* --- On state --- */

.switch__input:checked ~ .switch__track {
  border: 1px solid var(--color-active-80);
  background: var(--color-active-10);
}

.switch__input:checked ~ .switch__thumb {
  transform: translateX(16px);
  background: var(--color-active);
}


/* --- Source: components/checkbox.css --- */

/* ==========================================================================
   Checkbox — BEM block
   Label + custom 16x16 box; rows of them are laid out by .form-field__checkboxes.
   Styled to match switch.css (Figma UI Kit).
   ========================================================================== */

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--color-dark);
  border: 1px solid var(--color-stroke);
  border-radius: 4px;
  transition: background var(--transition), border-color var(--transition);
}

.checkbox__check {
  opacity: 0;
  color: var(--color-dark);
  transition: opacity var(--transition);
}

/* structural sibling selectors — allowed flat (see wiki/css-architecture) */
.checkbox__input:checked + .checkbox__box {
  background: var(--color-active);
  border-color: var(--color-active);

  .checkbox__check {
    opacity: 1;
  }
}

.checkbox__input:focus-visible + .checkbox__box {
  outline: 2px solid var(--color-active-40);
  outline-offset: 2px;
}

@media (hover: hover) {
  .checkbox:hover {
    .checkbox__box {
      border-color: var(--color-active);
    }
  }
}


/* --- Source: pages/pricing/rates.css --- */

.pricing-rates__table {
  .comparison-table__col-title:has(.comparison-table__icon) {
    justify-content: flex-start;

    .comparison-table__col-label {
      display: block;
    }
  }
}

@media (min-width: 768px) {
  .pricing-rates__table {
    th,
    td {
      width: 65%;
    }

    th:first-child,
    td:first-child {
      width: 35%;
    }
  }
}


/* --- Source: pages/pricing/calculator.css --- */

.pricing-calculator {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);

  border: 1px solid var(--color-stroke);
  border-width: 1px 0;
  padding: var(--space-15) var(--space-4);
}

.pricing-calculator__header {
  text-align: center;
}

.pricing-calculator__title {
  --text-h2: 22px;

  line-height: 29px;
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.pricing-calculator__subtitle {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

.pricing-calculator__card {
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
}

.pricing-calculator__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);

  padding: var(--space-4) var(--space-5);
}

.pricing-calculator__card-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--color-active);
}

.pricing-calculator__card-title {
  flex: 1;
  min-width: 0;

  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.pricing-calculator__card-subtotal {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
  color: var(--color-text-secondary);
  font-variant-numeric: tabular-nums;
}

.pricing-calculator__card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);

  padding: 0 var(--space-5) var(--space-5);

  transition: opacity var(--transition);
}

.pricing-calculator__card-body[inert] {
  opacity: 0.35;
}

.pricing-calculator__card-rate {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
  color: var(--color-text-secondary);
}

.pricing-calculator__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pricing-calculator__row-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.pricing-calculator__row-label {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

.pricing-calculator__row-rate {
  margin-right: auto;

  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.pricing-calculator__row-value {
  margin-left: auto;

  font-size: var(--text-md);
  font-weight: 600;
  line-height: var(--line-height-md);
  color: var(--color-active);
  font-variant-numeric: tabular-nums;
}

.pricing-calculator__row-note {
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.pricing-calculator__summary {
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-lg);
  background: var(--color-dark);
}

.pricing-calculator__credit {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  padding: var(--space-5);

  .checkbox {
    font-size: var(--text-md);
    line-height: var(--line-height-md);
    color: var(--color-white);
  }
}

.pricing-calculator__credit-note {
  padding-left: var(--space-6);

  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.pricing-calculator__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);

  border-top: 1px solid var(--color-stroke);
  padding: var(--space-5);
}

.pricing-calculator__total-label {
  font-size: var(--text-md);
  line-height: var(--line-height-md);
}

.pricing-calculator__total-value {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
}

.pricing-calculator__footnote {
  text-align: center;
  font-size: var(--text-sm);
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);

  a {
    color: var(--color-active);
  }
}

@media (min-width: 768px) {
  .pricing-calculator {
    gap: var(--space-5);

    padding: var(--space-20) var(--space-8);
  }

  .pricing-calculator__title {
    --text-h2: 28px;

    line-height: normal;
    margin-bottom: var(--space-4);
  }

  .pricing-calculator__subtitle {
    font-size: var(--text-lg);
    line-height: 28px;
  }

  .pricing-calculator__card-header {
    padding: var(--space-5) var(--space-6);
  }

  .pricing-calculator__card-title {
    font-size: 24px;
  }

  .pricing-calculator__card-body {
    gap: var(--space-6);

    padding: 0 var(--space-6) var(--space-6);
  }

  .pricing-calculator__row-label {
    font-size: var(--text-lg);
  }

  .pricing-calculator__row-value {
    font-size: var(--text-lg);
  }

  .pricing-calculator__credit {
    padding: var(--space-6);

    .checkbox {
      font-size: var(--text-lg);
    }
  }

  .pricing-calculator__total {
    padding: var(--space-6);
  }

  .pricing-calculator__total-label {
    font-size: var(--text-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-calculator__card-body {
    transition: none;
  }
}
