@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(
      --default-font-family,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      "Helvetica Neue",
      "Noto Sans",
      Arial,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    -webkit-text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer utilities {
  .container {
    width: 100%;
  }
}
@media (min-width: 40rem) {
  @layer utilities {
    .container {
      max-width: 40rem;
    }
  }
}
@media (min-width: 48rem) {
  @layer utilities {
    .container {
      max-width: 48rem;
    }
  }
}
@media (min-width: 64rem) {
  @layer utilities {
    .container {
      max-width: 64rem;
    }
  }
}
@media (min-width: 80rem) {
  @layer utilities {
    .container {
      max-width: 80rem;
    }
  }
}
@media (min-width: 96rem) {
  @layer utilities {
    .container {
      max-width: 96rem;
    }
  }
}
@layer base {
  button:not(:disabled),
  [role="button"]:not(:disabled) {
    cursor: pointer;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    line-height: 1.5;
    scroll-behavior: smooth;
    scrollbar-color: #031524 #263d52;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

  html,
  body,
  #app {
    min-height: 100%;
  }

  body {
    margin: 0;
    font-family:
      system-ui,
      -apple-system,
      "Segoe UI",
      Roboto,
      Arial,
      sans-serif;
    font-size: 1rem;
    color: var(--text);
    background-color: #04111b;
    background-image: linear-gradient(180deg, var(--bg1), var(--bg0));
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
  }

  body::before {
    background:
      radial-gradient(
        900px 600px at 18% 14%,
        rgba(84, 209, 63, 0.16),
        transparent 60%
      ),
      radial-gradient(
        900px 600px at 78% 50%,
        rgba(47, 191, 59, 0.1),
        transparent 60%
      );
  }

  body::after {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.08;
  }

  img,
  svg {
    display: block;
    max-width: 100%;
  }

  img {
    height: auto;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }

  button {
    background: none;
    border: none;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
  }

  :focus-visible {
    outline: 2px solid rgba(84, 209, 63, 0.85);
    outline-offset: 3px;
  }

  .skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 80;
    padding: 10px 14px;
    border-radius: 10px;
    background: #62e64b;
    color: #06180c;
    font-weight: 750;
  }

  .skip-link:focus {
    top: 12px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

:root {
  --bg0: #011522;
  --bg1: #032031;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(84, 209, 63, 0.28);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.52);
  --accent: #54d13f;
  --accent-action: #62e64b;
  --accent-action-hover: #62f492;
  --accent-action-border: #8bf178;
  --accent-action-border-hover: #b3ffa5;
  --accent-action-text: #06180c;
  --accent-text: #8af69e;
  --section-eyebrow: #54d13f;
  --accent-soft: rgba(84, 209, 63, 0.1);
  --accent-glow: rgba(84, 209, 63, 0.45);
  --heading: #f4f8fb;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --section-space: clamp(44px, 6vw, 76px);
  --section-title-size: clamp(1.7rem, 3.4vw, 2.55rem);
  --card-title-size: 1.05rem;
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 26px rgba(0, 0, 0, 0.22);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --desk-wrap: 1200px;
  --desk-accent: #62e64b;
  --desk-accent-bright: #62f492;
  --desk-text: #f4f8fb;
  --desk-muted: rgba(226, 237, 240, 0.68);
  --desk-border: rgba(255, 255, 255, 0.14);
  --desk-radius: 14px;
  --desk-action-bg: rgba(255, 255, 255, 0.06);
  --desk-action-border: rgba(255, 255, 255, 0.18);
  --desk-action-hover-bg: rgba(113, 167, 185, 0.16);
  --desk-action-hover-border: rgba(173, 224, 232, 0.55);
  --header-h: 58px;
  --sticky-cta-h: 0px;
  --type-label: 0.75rem;
  --type-body-sm: 0.875rem;
  --type-body: 1rem;
  --type-card-title: 1.125rem;
  --type-feature-title: 1.5rem;
  --type-section-title: clamp(1.75rem, 3.4vw, 2.55rem);
  --type-display: clamp(2.5rem, 5vw, 3.25rem);
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 750;
  --surface-card: rgba(255, 255, 255, 0.055);
  --surface-raised: rgba(3, 20, 33, 0.72);
  --surface-accent: rgba(84, 209, 63, 0.1);
  --line-subtle: rgba(255, 255, 255, 0.14);
  --radius-control: 12px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --space-card: 24px;
  --space-card-sm: 20px;
  --icon-inline: 16px;
  --icon-control: 20px;
  --icon-feature: 24px;
  --shadow-elevated: 0 12px 30px rgba(0, 0, 0, 0.26);
  --motion-fast: 180ms ease;
  --section-copy-width: 60%;
  --main-cta-width: 260px;
  --feature-border: rgba(173, 224, 232, 0.23);
  --feature-surface-start: rgba(22, 59, 71, 0.96);
  --feature-surface-end: rgba(9, 37, 51, 0.97);
  --feature-marker-border: rgba(98, 244, 146, 0.62);
  --feature-marker-bg: #071d2a;
  --feature-marker-color: #79f39b;
}

.container {
  width: min(var(--desk-wrap), calc(100% - 36px));
  margin: 0 auto;
}

.site-main {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 72px;
}

.hub-eyebrow {
  color: var(--section-eyebrow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: clamp(40px, 7vw, 88px) 0;
}

.section-tight {
  padding: clamp(28px, 5vw, 56px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 62ch;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  background: var(--desk-action-bg);
  border: 1px solid var(--desk-action-border);
  border-radius: 12px;
  box-shadow: none;
  transition:
    background-color var(--motion-fast),
    border-color var(--motion-fast),
    color var(--motion-fast),
    box-shadow var(--motion-fast),
    transform var(--motion-fast);
}

.button:hover,
.button:focus-visible {
  background: var(--desk-action-hover-bg);
  border-color: var(--desk-action-hover-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 8px 22px rgba(84, 209, 63, 0.18);
}

.button-lg {
  padding: 12px 20px;
}

.main-cta {
  width: min(100%, var(--main-cta-width));
}

.button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0;
  margin: 0;
  color: var(--text);
  background: rgba(1, 15, 25, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-h);
  gap: 18px;
}

.dialog-head .button svg {
  width: 18px;
  height: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  flex: 0 0 auto;
}

.logo img {
  height: 26px;
  width: auto;
  min-width: 130px;
}

.site-header-nav {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2px 0;
}

.primary-nav-link {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 10px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  white-space: nowrap;
}

.primary-nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}

.primary-nav-link.is-active,
.primary-nav-link[aria-current="true"] {
  color: #f4f8fb;
  border-color: rgba(56, 184, 91, 0.34);
  background: rgba(56, 184, 91, 0.13);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  border-bottom: 1px solid var(--border);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(40px, 6.5vh, 72px) 0 clamp(44px, 7vh, 76px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: center;
}

.hero-sheet {
  margin-bottom: 0;
}

.sheet.hero-sheet {
  background-color: rgba(3, 20, 33, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-sheet .sheet-grid {
  min-width: 0;
}

.hero-sheet .sheet-row {
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
}

.hero-sheet .sheet-row > * {
  padding: 15px 11px;
  text-align: center;
}

.hero-sheet .sheet-bar p {
  color: var(--muted);
  font-size: 12px;
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: clamp(30px, 4.5vh, 46px);
}

.hero-proof-item {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(3, 20, 33, 0.5);
  backdrop-filter: blur(6px);
}

.hero-proof-item span {
  display: block;
}

.hero-proof-item strong {
  display: block;
}

.hero-content .hub-eyebrow {
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 21ch;
  line-height: 1.06;
  color: #fff;
}

.desktop-break::before {
  content: "\A";
  white-space: pre;
}

@media (max-width: 700px) {
  .desktop-break::before {
    content: " ";
  }
}

.hero-lead {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  font-weight: bolder;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.glass-card h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  color: #fff;
}

.glass-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

#megoldas .glass-card h3 {
  margin-top: 0;
  color: #8af69e;
  font-weight: 850;
}

.icon-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(84, 209, 63, 0.38);
  background: rgba(84, 209, 63, 0.1);
  color: #8bf178;
}

.icon-mark svg {
  width: 20px;
  height: 20px;
}

.pain-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      620px 270px at 10% 0,
      rgba(84, 209, 63, 0.1),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.04);
}

.pain-panel h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.problem-pairs {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.problem-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.032) 22%,
    rgba(84, 209, 63, 0.035) 46%,
    rgba(84, 209, 63, 0.07) 74%,
    rgba(84, 209, 63, 0.1) 100%
  );
}

.problem-side,
.answer-side {
  padding: 20px 22px;
}

.problem-side,
.answer-side {
  background: transparent;
}

.problem-arrow {
  position: relative;
  display: grid;
  place-items: center;
  background: transparent;
}

.problem-arrow-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(84, 209, 63, 0) 0%,
    rgba(84, 209, 63, 0.55) 50%,
    rgba(84, 209, 63, 0) 100%
  );
  transform: translateX(-50%);
}

.problem-arrow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(98, 244, 146, 0.6);
  background:
    radial-gradient(circle at 34% 28%, rgba(84, 209, 63, 0.4), transparent 62%),
    #071d2a;
  box-shadow:
    0 0 0 6px rgba(84, 209, 63, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.35);
  color: #8bf178;
}

.problem-arrow-icon svg {
  width: 18px;
  height: 18px;
}

.problem-side .p-num,
.answer-side .p-num {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-side .p-num {
  color: var(--accent-text);
}

.problem-pair h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: #fff;
}

.problem-pair p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 12px;
  counter-reset: step;
}

.step {
  position: relative;
  z-index: 1;
  padding: 34px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(3, 20, 31, 0.34);
  box-shadow: none;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -21px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(98, 244, 146, 0.62);
  border-radius: 50%;
  background: #071d2a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  color: #79f39b;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.step h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.keyline {
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(20px, 3.4vw, 30px);
  text-align: center;
  border: 1px solid rgba(84, 209, 63, 0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      520px 220px at 50% 0,
      rgba(84, 209, 63, 0.13),
      transparent 76%
    ),
    rgba(255, 255, 255, 0.035);
}

.keyline p {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #f4f8fb;
}

.selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.selector-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #071827;
  text-align: left;
  color: inherit;
  box-shadow: var(--shadow-md);
}

.selector-card:hover {
  transform: translateY(-2px);
  border-color: rgba(84, 209, 63, 0.45);
}

.selector-visual {
  position: relative;
  height: 168px;
  overflow: hidden;
}

.selector-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selector-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(1, 12, 20, 0.92) 100%
  );
}

.selector-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.selector-body h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.selector-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: justify;
}

.selector-body > p:last-of-type {
  margin-bottom: 15px;
}

.selector-body .button {
  margin-top: auto;
  width: max-content;
}

.selector-card:nth-child(2) .selector-body {
  align-items: flex-end;
  text-align: right;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.use-item {
  padding: 16px 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(2, 17, 29, 0.42);
}

.use-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.98rem;
}

.use-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.split-media {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 18px;
  align-items: stretch;
}

.split-media .media-frame {
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.split-media .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 961px) {
  #ci .split-media,
  #utility .split-media {
    min-height: 630px;
  }

  #ci .split-media .media-frame,
  #utility .split-media .media-frame {
    height: 100%;
    min-height: 0;
    align-self: stretch;
  }

  #ci .split-media > :not(.media-frame),
  #utility .split-media > :not(.media-frame) {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  #ci .split-media .hero-actions,
  #utility .split-media .hero-actions {
    margin-top: auto;
    padding-top: 26px;
  }
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.04)
  );
}

.decision-card .q {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.decision-card h3 {
  font-size: 1.02rem;
  color: #fff;
  margin-bottom: 7px;
}

.decision-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pullquote {
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid rgba(84, 209, 63, 0.4);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      560px 240px at 50% 0,
      rgba(84, 209, 63, 0.13),
      transparent 78%
    ),
    rgba(255, 255, 255, 0.035);
  text-align: center;
}

.pullquote p {
  font-size: clamp(1.02rem, 2.1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.012em;
  line-height: 1.32;
  color: #f4f8fb;
  text-transform: uppercase;
  text-wrap: balance;
}

.pullquote mark {
  padding: 0.1em 0.34em;
  border-radius: 5px;
  background: rgba(84, 209, 63, 0.16);
  color: #b9ffcb;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.cta-band {
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      560px 300px at 0% 0%,
      rgba(84, 209, 63, 0.16),
      transparent 66%
    ),
    radial-gradient(
      520px 300px at 100% 100%,
      rgba(84, 209, 63, 0.15),
      transparent 68%
    ),
    linear-gradient(145deg, rgba(35, 65, 78, 0.58), rgba(18, 43, 56, 0.58));
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  max-width: 18ch;
}

.cta-band p {
  max-width: 58ch;
  color: var(--desk-muted);
}

.cta-band .ticklist {
  margin-top: 24px;
}

.cta-band .hero-actions {
  margin-top: 26px;
}

.cta-band-closing {
  text-align: center;
}

.cta-band-closing .hub-eyebrow {
  margin-bottom: 12px;
}

.cta-band-closing h2 {
  max-width: 900px;
  margin: 0 auto;
}

.cta-band-closing .cta-line {
  display: block;
}

.cta-band-closing .cta-line:first-child {
  white-space: nowrap;
}

.cta-band-closing p {
  margin: 12px auto 0;
  max-width: 62ch;
}

.cta-band-closing .hero-actions {
  justify-content: center;
}

.cta-band-precheck {
  text-align: center;
}

.cta-band-precheck h2 {
  max-width: 900px;
  margin: 15px auto;
}

.cta-band-precheck > p {
  margin-right: auto;
  margin-left: auto;
  max-width: 62ch;
}

.cta-band-precheck .ticklist {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
}

.cta-band-precheck .hero-actions {
  justify-content: center;
}

@media (max-width: 680px) {
  .cta-band-closing .cta-line:first-child {
    white-space: normal;
  }
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.project-preview-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: var(--shadow-md);
}

.project-preview-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 178px;
  overflow: hidden;
  background: #071827 center / cover no-repeat;
}

.project-preview-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 36%,
    rgba(0, 0, 0, 0.86) 100%
  );
  content: "";
}

.project-preview-visual h3 {
  position: relative;
  z-index: 1;
  max-width: 95%;
  margin: 0;
  padding: 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.16;
}

.project-status-row {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(84, 209, 63, 0.42);
  border-radius: 999px;
  color: #eaffea;
  background: rgba(12, 122, 55, 0.55);
  font-size: 10px;
  font-weight: 700;
}

.project-status-hot {
  border-color: #d13a3c;
  background: rgba(152, 27, 28, 0.72);
  color: #fff1f1;
}

.project-preview-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-preview-body p,
.project-preview-body dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.project-preview-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.project-preview-body dd {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 750;
  color: #fff;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.topic-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.topic-card:hover {
  border-color: rgba(84, 209, 63, 0.45);
  transform: translateY(-1px);
}

.topic-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 24px;
  cursor: pointer;
  list-style: none;
}

.topic-card summary::-webkit-details-marker {
  display: none;
}

.topic-card summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #8bf178;
  border-bottom: 2px solid #8bf178;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  flex: 0 0 auto;
}

.topic-card[open] summary::after {
  transform: rotate(225deg);
}

.topic-card h3 {
  font-size: 1.02rem;
  color: #fff;
}

.topic-card p,
.topic-card > span {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.topic-card > span {
  color: #79f39b;
  font-size: 0.8rem;
  font-weight: 700;
}

.topic-card[open] p,
.topic-card[open] > span {
  display: block;
}

#gyik {
  padding: clamp(34px, 5vw, 58px) 0;
}

#gyik .section-heading {
  margin-bottom: 18px;
}
.epc-cta {
  display: grid;
  align-items: center;
  width: min(82%, 960px);
  margin-inline: auto;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
  background:
    linear-gradient(105deg, rgba(1, 12, 20, 0.78), rgba(1, 14, 24, 0.58)),
    radial-gradient(
      460px 180px at 0% 100%,
      rgba(84, 209, 63, 0.07),
      transparent 72%
    );
}

.epc-cta h2 {
  margin-top: 4px;
  color: #f4f8fb;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.epc-cta > div:first-child > p:last-child {
  margin-top: 10px;
  color: var(--muted);
  max-width: none;
  font-size: 0.94rem;
  line-height: 1.58;
}

.epc-button {
  min-width: 206px;
}

@media (min-width: 860px) {
  .epc-cta {
    grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
  }

  .epc-cta > div:last-child {
    justify-self: end;
  }
}

@media (max-width: 859px) {
  .epc-cta {
    width: min(100%, 680px);
  }
}

.site-main > #epc.section-tight {
  padding-block: clamp(20px, 3vw, 32px);
}

.site-footer {
  margin-top: auto;
  background: linear-gradient(
    180deg,
    rgba(2, 16, 28, 0.86),
    rgba(1, 13, 22, 0.98)
  );
  color: rgba(255, 255, 255, 0.68);
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(190px, 0.7fr) minmax(
      190px,
      0.7fr
    );
  gap: 38px;
  align-items: start;
}

.site-footer-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.site-footer-text {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer-heading {
  margin: 0 0 9px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.site-footer-list {
  display: grid;
  gap: 4px;
  list-style: none;
}

.site-footer-list li {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer-bottom {
  padding: 14px 0 17px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.site-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

.site-footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(198, 220, 224, 0.22);
  border-radius: 12px;
  color: #dcecec;
  background: rgba(17, 43, 57, 0.48);
}

.site-footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-footer-social .social-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer-social .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer-social .social-icon {
  display: block;
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.site-footer-social a:hover {
  border-color: rgba(104, 239, 107, 0.72);
  background: rgba(34, 106, 75, 0.42);
  text-decoration: none;
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(1, 8, 14, 0.72);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: end center;
  padding: 12px;
}

.dialog {
  width: min(640px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(150, 205, 216, 0.28);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(35, 65, 78, 0.97),
    rgba(18, 43, 56, 0.97)
  );
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  padding: 22px;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.dialog-head h2 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 8px 0 18px;
}

.progress i {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.progress i.is-on {
  background: #62e64b;
}

.form-row {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.form-help {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted-2);
}

.form-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(190, 222, 228, 0.22);
  border-radius: 11px;
  background: rgba(3, 24, 35, 0.34);
  color: var(--text);
}

.form-input:focus {
  outline: none;
  border-color: rgba(84, 209, 63, 0.45);
  box-shadow: 0 0 0 3px rgba(84, 209, 63, 0.12);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice {
  min-height: 52px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  font-weight: 650;
  color: var(--text);
}

.choice.is-on,
.choice[aria-pressed="true"] {
  background: rgba(84, 209, 63, 0.18);
  border-color: rgba(84, 209, 63, 0.55);
  color: rgba(225, 255, 225, 0.98);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #54d13f;
}

.form-error {
  color: #ff8076;
  font-size: 0.85rem;
  margin-top: 8px;
}

.screening {
  display: grid;
  gap: 12px;
}

.screening h3 {
  font-size: 1.05rem;
  color: #fff;
}

.screening ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.screening li + li {
  margin-top: 4px;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(1, 15, 25, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.mobile-cta .button {
  width: 100%;
}

body.dialog-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .card-grid-3,
  .steps,
  .decision-grid,
  .project-preview-grid,
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-media,
  .selector-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: calc(var(--sticky-cta-h) + 16px);
  }

  .site-header-inner {
    flex-wrap: wrap;
    min-height: 52px;
    gap: 10px 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-actions .header-cta {
    display: none;
  }

  .site-header-nav {
    display: none;
    flex-basis: 100%;
    padding-bottom: 10px;
  }

  .site-header.is-open .site-header-nav {
    display: block;
  }

  .primary-nav {
    flex-wrap: wrap;
    overflow: visible;
  }

  .site-main {
    padding-bottom: 92px;
  }

  body {
    --sticky-cta-h: 64px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--desk-wrap), calc(100% - 32px));
  }

  .logo img {
    height: 24px;
    min-width: 120px;
  }

  .card-grid-3,
  .steps,
  .decision-grid,
  .project-preview-grid,
  .topic-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-3 {
    gap: 45px;
  }

  .problem-pair {
    grid-template-columns: 1fr;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.032) 22%,
      rgba(84, 209, 63, 0.035) 46%,
      rgba(84, 209, 63, 0.07) 74%,
      rgba(84, 209, 63, 0.1) 100%
    );
  }

  .problem-arrow {
    min-height: 56px;
  }

  .problem-arrow-line {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(84, 209, 63, 0) 0%,
      rgba(84, 209, 63, 0.55) 50%,
      rgba(84, 209, 63, 0) 100%
    );
    transform: translateY(-50%);
  }

  .problem-arrow-icon svg {
    transform: rotate(90deg);
  }

  .answer-side {
    border-top: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    min-height: 0;
    padding-top: 36px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-actions,
  .section-heading-row {
    display: block;
  }

  .hero-actions .button,
  .cta-band .button,
  .epc-cta .button {
    width: 100%;
    margin-top: 8px;
  }

  .hero-grid {
    gap: 22px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-sheet .sheet-row {
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(0, 0.86fr));
  }

  .hero-sheet .sheet-row > * {
    padding: 8px 8px;
  }

  .dialog {
    padding: 16px;
    border-radius: 16px 16px 0 0;
  }

  .dialog-backdrop {
    place-items: end center;
    padding: 0;
  }
}

.sheet {
  overflow: hidden;
  margin-bottom: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      520px 260px at 0% 0%,
      rgba(84, 209, 63, 0.12),
      transparent 66%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.045)
    );
  box-shadow: var(--shadow-lg);
}

.sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 17, 29, 0.42);
}

.sheet-scroll {
  overflow-x: auto;
}

.sheet-grid {
  min-width: 580px;
}

.sheet-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    opacity 300ms ease,
    filter 300ms ease;
}

.sheet-row:last-child {
  border-bottom: 0;
}

.sheet-row > * {
  min-width: 0;
  padding: 11px 14px;
}

.sheet-row > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.sheet-head {
  background: rgba(2, 17, 29, 0.34);
  border-bottom-color: var(--border);
}

.sheet-head span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sheet-head span + span {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.sheet-key {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.sheet-val {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.sheet-val-thin {
  color: var(--muted-2);
  font-weight: 400;
}

.sheet-row-price {
  background: rgba(84, 209, 63, 0.06);
}

.sheet-row-price .sheet-key {
  color: rgba(225, 255, 225, 0.86);
  font-weight: 650;
}

.sheet-row-price .sheet-val {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}

.is-price-only .sheet-row-detail {
  opacity: 0.32;
  filter: blur(1.5px);
  pointer-events: none;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .sheet-row {
    transition: none;
  }
}

.hero-lead {
  max-width: 35rem;
}

@keyframes selector-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(84, 209, 63, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(84, 209, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(84, 209, 63, 0);
  }
}

.selector-choice {
  position: relative;
}

.selector-grid {
  gap: 96px;
}

.selector-or {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(84, 209, 63, 0.5);
  background: #04141f;
  box-shadow:
    0 0 0 6px rgba(1, 18, 29, 0.9),
    0 8px 22px rgba(0, 0, 0, 0.45);
  color: #8af69e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: none;
}

.selector-card {
  position: relative;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.22, 0.8, 0.3, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.selector-card.is-armed {
  border-color: rgba(84, 209, 63, 0.85);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(84, 209, 63, 0.45),
    0 0 30px rgba(84, 209, 63, 0.16);
}

.selector-choice:hover .selector-card,
.selector-choice:focus-within .selector-card {
  opacity: 0.42;
  filter: saturate(0.65);
  transform: scale(0.985);
}

.selector-choice:hover .selector-card:hover,
.selector-choice:focus-within .selector-card:focus-visible,
.selector-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-4px) scale(1);
  border-color: rgba(84, 209, 63, 0.9);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(84, 209, 63, 0.5),
    0 0 34px rgba(84, 209, 63, 0.2);
}

@media (max-width: 960px) {
  .selector-grid {
    gap: 46px;
  }

  .selector-choice:hover .selector-card,
  .selector-choice:focus-within .selector-card {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .selector-card,
  .selector-or {
    transition: none;
  }

  .selector-choice:hover .selector-card,
  .selector-choice:focus-within .selector-card,
  .selector-choice:hover .selector-card:hover,
  .selector-choice:focus-within .selector-card:focus-visible,
  .selector-card.is-active {
    transform: none;
  }
}

.sheet-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
}

.is-price-only .sheet-tag {
  border-color: rgba(84, 209, 63, 0.45);
  background: rgba(84, 209, 63, 0.14);
  color: #b9ffcb;
}

@media (max-width: 620px) {
  .sheet-tag {
    display: none;
  }
}

.reg-layout {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.reg-intro {
  margin-right: 35px;
}

.reg-intro h2 {
  margin-top: 10px;
  color: #f4f8fb;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  text-wrap: balance;
}

.reg-lead {
  margin-top: 14px;
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.62;
  text-wrap: pretty;
}
.ticklist {
  margin-top: 24px;
  display: grid;
  gap: 11px;
  list-style: none;
}

.ticklist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(84, 209, 63, 0.1);
  border: 1px solid rgba(84, 209, 63, 0.34);
}

.ticklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.72em;
  width: 5px;
  height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg) translateY(-3px);
}

.ticklist strong {
  color: #f4f8fb;
  font-weight: 700;
}

.reg-intro .ticklist strong {
  display: table-cell;
}

.reg-keyline {
  margin-top: 26px;
  text-align: left;
}

#reg-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reg-keyline p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.formwrap {
  padding: clamp(20px, 3.4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.req-hint {
  margin: 6px 0 0;
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.5;
}

.fstep {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.fstep > legend:not(.sr-only) {
  margin-bottom: 16px;
  padding: 0;
  color: #f4f8fb;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.field {
  margin-bottom: 14px;
}

.field label,
.field-legend {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
}

.req {
  margin-left: 2px;
  color: var(--accent);
}

.opt-tag {
  margin-left: 5px;
  color: var(--muted-2);
  font-size: 0.76rem;
  font-weight: 500;
}

.input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(2, 18, 29, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

textarea.input {
  min-height: 0;
  resize: vertical;
  line-height: 1.5;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.input:focus {
  outline: 0;
  border-color: rgba(150, 205, 216, 0.72);
  box-shadow: 0 0 0 3px rgba(150, 205, 216, 0.16);
}

.input[aria-invalid="true"] {
  border-color: rgba(232, 96, 63, 0.7);
}

.field-error {
  margin-top: 6px;
  color: #ffb4a0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}

.optgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.optgrid-1 {
  grid-template-columns: minmax(0, 1fr);
}

.opt {
  position: relative;
  display: block;
  margin: 0;
}

.opt input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.opt span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.opt span:hover {
  border-color: rgba(84, 209, 63, 0.42);
}

.opt input:checked + span {
  border-color: rgba(84, 209, 63, 0.7);
  background: rgba(84, 209, 63, 0.13);
  color: #eaffea;
}

.opt input:focus-visible + span {
  outline: 2px solid rgba(150, 205, 216, 0.9);
  outline-offset: 3px;
}

.check {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.check input {
  flex: 0 0 auto;
  margin: 0;
  width: 19px;
  height: 19px;
  accent-color: var(--accent);
}

.check span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.textlink {
  color: var(--desk-accent-bright);
  font-weight: 700;
  border-bottom: 1px solid rgba(121, 243, 155, 0.35);
}

.textlink:hover {
  color: #dfffe7;
  border-color: rgba(223, 255, 231, 0.7);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: end;
}

.formwrap .button-lg {
  min-height: 56px;
  padding: 16px 30px;
  font-size: 1.03rem;
}

.form-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-offer:focus,
.form-success:focus,
.fstep:focus {
  outline: none;
}

.form-offer {
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(84, 209, 63, 0.45);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      420px 200px at 0% 0%,
      rgba(84, 209, 63, 0.16),
      transparent 70%
    ),
    rgba(255, 255, 255, 0.04);
}

.form-offer-kicker {
  color: #8af69e;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-offer h3 {
  margin-top: 10px;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #fff;
}

.form-offer > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-success {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(84, 209, 63, 0.4);
  border-radius: var(--radius-lg);
  background: rgba(84, 209, 63, 0.08);
  text-align: center;
}

.form-success h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.form-success p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.success-check {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
}

.form-success .success-check {
  margin-inline: auto;
}

.success-check svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.success-check-ring,
.success-check-mark {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-check-ring {
  stroke-opacity: 0.55;
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  animation: success-ring 620ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.success-check-mark {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  filter: drop-shadow(0 0 6px rgba(84, 209, 63, 0.55));
  animation: success-mark 380ms cubic-bezier(0.65, 0, 0.35, 1) 420ms forwards;
}

.form-offer:not([hidden]),
.form-success:not([hidden]) {
  animation: success-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes success-ring {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-mark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes success-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .success-check-ring,
  .success-check-mark {
    animation: none;
    stroke-dashoffset: 0;
  }

  .form-offer:not([hidden]),
  .form-success:not([hidden]) {
    animation: none;
  }
}

@media (min-width: 960px) {
  .reg-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .reg-layout .formwrap {
    height: 100%;
  }
}

@media (max-width: 560px) {
  .field-row,
  .optgrid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.is-slot {
  color: var(--muted-2);
  font-style: italic;
}

.slot {
  position: relative;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.slot-tag {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(1, 14, 24, 0.78);
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.person {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.04)
  );
}

.person-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(
      120% 100% at 50% 0,
      rgba(84, 209, 63, 0.16),
      transparent 70%
    ),
    rgba(2, 18, 29, 0.7);
  display: grid;
  place-items: center;
}

.person-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-monogram {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(138, 246, 158, 0.5);
}

.person-body h3 {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.person-role {
  margin-top: 4px;
  color: #8af69e;
  font-size: 0.84rem;
  font-weight: 700;
}

.person-facts {
  margin-top: 12px;
  display: grid;
  gap: 5px;
  list-style: none;
}

.person-facts li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.person-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.person-link {
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 9px;
  font-size: 0.79rem;
  gap: 7px;
}

.person-link .person-link-icon {
  flex: 0 0 auto;
  width: var(--icon-inline);
  height: var(--icon-inline);
  object-fit: contain;
  filter: invert(1);
}

.person-link[data-slot="url"] {
  border-style: dashed;
}

.proof-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.endorsement,
.memberships {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(2, 17, 29, 0.45);
}

.endorsement-logo {
  height: 62px;
  border-radius: 10px;
}

.endorsement blockquote {
  margin-top: 16px;
}

.endorsement blockquote p {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
}

.endorsement figcaption {
  margin-top: 14px;
  display: grid;
  gap: 2px;
  font-size: 0.84rem;
}

.endorsement figcaption b {
  color: #fff;
  font-weight: 700;
}

.memberships h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.membership-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.membership-list li {
  height: 58px;
  border-radius: 10px;
}

.proof-note {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.5;
}

.logo-wall {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-wall-head {
  padding: 0 2px 16px;
}

.logo-wall-head h3 {
  margin-top: 6px;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  letter-spacing: -0.025em;
  color: #fff;
}

.logo-wall-head b {
  font-weight: 800;
  font-style: normal;
  color: #8af69e;
}

.logo-row {
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}

.logo-row + .logo-row {
  margin-top: 10px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  list-style: none;
  animation: logo-scroll 64s linear infinite;
}

.logo-row[data-dir="rtl"] .logo-track {
  animation-name: logo-scroll-rtl;
  animation-duration: 76s;
}

.logo-row:last-of-type .logo-track {
  animation-duration: 88s;
}

@keyframes logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logo-scroll-rtl {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.logo-wall:hover .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  height: 62px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--logo-hue, #9fb2bd);

  filter: grayscale(1) sepia(0.5) hue-rotate(66deg) saturate(1.3)
    brightness(1.12) opacity(0.78);
  transition:
    filter 320ms ease,
    border-color 320ms ease,
    transform 320ms ease;
}

.logo-tile:hover {
  filter: none;
  border-color: rgba(84, 209, 63, 0.4);
  transform: translateY(-2px);
}

.logo-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.logo-word {
  width: var(--logo-w, 84px);
  height: 9px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.72;
}

@media (max-width: 960px) {
  .proof-duo {
    grid-template-columns: 1fr;
  }

  .person-grid {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .logo-tile {
    transition: none;
  }

  .logo-row {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-track {
    flex-wrap: wrap;
    width: 100%;
  }
}

.section-heading-row h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
}

.project-preview-grid {
  align-items: stretch;
}

.project-preview-card {
  height: 100%;
}

.project-preview-body {
  flex: 1 1 auto;
}

.project-preview-body dl {
  min-height: 66px;
  margin: 8px 0 14px;
}

.project-status-qualified {
  border-color: #4381c7;
  background: rgba(28, 84, 150, 0.56);
  color: #e4f0ff;
}

.project-financing {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(84, 209, 63, 0.42);
  border-radius: 999px;
  color: #eaffea;
  background: rgba(12, 122, 55, 0.55);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.project-financing::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #6ef261;
  box-shadow: 0 0 8px rgba(110, 242, 97, 0.55);
}

.project-preview-body .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 650;
  color: #06180c;
  background: var(--desk-accent);
  border-color: #8bf178;
}

@media (max-width: 960px) {
  .project-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .project-preview-grid {
    grid-template-columns: 1fr;
  }
}

.tier-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.tier-intro h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 2.9vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #fff;
}

.tier-lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.tier-figure {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(84, 209, 63, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      420px 180px at 0% 0%,
      rgba(84, 209, 63, 0.14),
      transparent 72%
    ),
    rgba(255, 255, 255, 0.04);
}

.tier-figure b {
  flex: 0 0 auto;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #8af69e;
  font-variant-numeric: tabular-nums;
}

.tier-figure span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tier-figure .tier-figure-copy {
  display: grid;
  justify-items: start;
  gap: 6px;
}

.tier-figure mark {
  display: inline-block;
  margin-top: 0;
  padding: 0.08em 0.3em;
  border-radius: 5px;
  background: rgba(84, 209, 63, 0.18);
  color: #b9ffcb;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media (max-width: 600px) {
  .tier-figure {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .tier-figure .tier-figure-copy {
    justify-items: center;
  }
}

.tier-stack {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.tier-card {
  width: var(--tier-w, 100%);
  padding: var(--tier-pad, 20px);
  border: 1px solid var(--feature-border);
  border-radius: var(--radius-lg);
  background: var(--tier-tint);
  box-shadow: var(--tier-shadow, none);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.tier-card[data-tier="bronz"] {
  --tier-color: #c88243;
  --tier-line: rgba(200, 130, 67, 0.42);
  --tier-tint: rgba(200, 130, 67, 0.2);
  --tier-w: 82%;
  --tier-pad: 15px 17px;
}

.tier-card[data-tier="ezust"] {
  --tier-color: #c6d2dd;
  --tier-line: rgba(198, 210, 221, 0.42);
  --tier-tint: rgba(198, 210, 221, 0.2);
  --tier-w: 91%;
  --tier-pad: 18px 19px;
}

.tier-card[data-tier="arany"] {
  --tier-color: #ecc451;
  --tier-line: rgba(236, 196, 81, 0.62);
  --tier-tint: rgba(236, 196, 81, 0.2);
  --tier-w: 100%;
  --tier-pad: 24px;
  --tier-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32), 0 0 34px rgba(236, 196, 81, 0.12);
}

.tier-card:hover {
  transform: translateY(-2px);
}

.tier-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tier-medal {
  flex: 0 0 auto;
  width: var(--tier-medal, 26px);
  height: var(--tier-medal, 26px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff6, transparent 46%),
    var(--tier-color);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3) inset,
    0 3px 10px rgba(0, 0, 0, 0.35);
}

.tier-card[data-tier="ezust"] .tier-medal {
  --tier-medal: 30px;
}

.tier-card[data-tier="arany"] .tier-medal {
  --tier-medal: 36px;
}

.tier-card-head h3 {
  font-size: var(--tier-title, 1.02rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--tier-color);
}

.tier-card[data-tier="ezust"] .tier-card-head h3 {
  --tier-title: 1.14rem;
}

.tier-card[data-tier="arany"] .tier-card-head h3 {
  --tier-title: 1.34rem;
}

.tier-card p {
  margin: 10px auto;
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.35;
}

.tier-count {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--tier-line);
  color: var(--tier-color);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  list-style: none;
}

.tier-pills li {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: var(--tier-pill, 11.5px);
  font-weight: 650;
  line-height: 1.25;
}

.tier-card[data-tier="bronz"] .tier-pills li {
  --tier-pill: 12px;
  color: rgba(238, 200, 151, 0.8);
}

.tier-card[data-tier="ezust"] .tier-pills li {
  --tier-pill: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.tier-card[data-tier="arany"] .tier-pills li {
  --tier-pill: 12.5px;
  border-color: rgba(236, 196, 81, 0.3);
  background: rgba(236, 196, 81, 0.1);
  color: #f6e6b4;
}

@media (max-width: 960px) {
  .tier-stack {
    justify-items: stretch;
  }

  .tier-card[data-tier="bronz"],
  .tier-card[data-tier="ezust"],
  .tier-card[data-tier="arany"] {
    --tier-w: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tier-card {
    transition: none;
  }
}

html {
  scroll-padding-top: calc(var(--header-h) - 35px);
  scroll-padding-bottom: calc(var(--sticky-cta-h) - 35px);
}

.site-main > .section,
.site-main > .section-tight,
#gyik {
  padding-block: var(--section-space);
}

.section-heading,
.section-heading-row {
  margin-bottom: 28px !important;
}

.section-heading h2,
.section-heading-row h2,
.pain-panel h2,
.tier-intro h2,
.reg-intro h2,
.cta-band h2 {
  color: var(--heading);
  font-size: var(--type-section-title);
  font-weight: var(--weight-bold);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  font-size: var(--type-display);
  font-weight: var(--weight-extrabold);
  text-wrap: balance;
}

.hub-eyebrow,
.hero-content .hub-eyebrow,
.section-heading .hub-eyebrow,
.section-heading-row .hub-eyebrow,
.pain-panel .hub-eyebrow,
.tier-intro .hub-eyebrow,
.reg-intro .hub-eyebrow,
.epc-cta .hub-eyebrow,
.selector-body .hub-eyebrow {
  color: var(--section-eyebrow);
  font-size: var(--type-label);
  font-weight: var(--weight-extrabold);
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.hero-content .hub-eyebrow {
  color: var(--hero-eyebrow);
  font-size: 0.85rem;
}

.glass-card h3,
#megoldas .glass-card h3,
.step h3,
.decision-card h3,
.problem-pair h3,
.use-item strong,
.topic-card h3,
.person-body h3,
.memberships h3,
.project-preview-body h3 {
  color: var(--heading);
  font-size: var(--type-card-title);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

#megoldas .glass-card h3,
.selector-card h3 {
  font-size: var(--type-feature-title);
  font-weight: var(--weight-bold);
  line-height: 1.15;
}

#megoldas .glass-card h3,
.decision-card .q,
.topic-card span,
.person-role,
.person-links svg,
.selector-or {
  color: var(--accent-text);
}

.glass-card,
.step,
.decision-card,
.topic-card,
.person,
.project-preview-card,
.formwrap,
.pain-panel,
.sheet {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  background-color: var(--surface-card);
}

.glass-card,
.step,
.decision-card,
.topic-card,
.person,
.formwrap {
  padding: var(--space-card);
}

.sheet,
.formwrap {
  box-shadow: var(--shadow-elevated);
}

.button,
.person-link {
  min-height: 44px;
  border-radius: var(--radius-control);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-semibold);
  transition:
    background-color var(--motion-fast),
    border-color var(--motion-fast),
    color var(--motion-fast),
    box-shadow var(--motion-fast);
}

.button:hover,
.button:focus-visible,
.button:active {
  transform: none;
}

.button-primary {
  font-weight: var(--weight-bold);
}

.button-lg {
  min-height: 48px;
  font-size: var(--type-body);
  font-weight: var(--weight-bold);
}

.button-autowidth {
  width: auto;
}

.problem-arrow-icon,
.icon-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-control);
}

.problem-arrow-icon svg,
.icon-mark svg {
  width: var(--icon-control);
  height: var(--icon-control);
}

.problem-arrow-icon svg *,
.icon-mark svg * {
  stroke-width: 2;
}

.selector-card,
.project-preview-card,
.split-media .media-frame {
  border-radius: var(--radius-card);
  border-color: var(--line-subtle);
}

.selector-card img,
.split-media .media-frame img,
.project-preview-visual {
  filter: saturate(0.9) contrast(1.05);
}

.project-status,
.project-status-hot,
.project-status-qualified {
  border-color: rgba(84, 209, 63, 0.42);
  border-radius: var(--radius-pill);
  background: rgba(84, 209, 63, 0.16);
  color: var(--accent-text);
}

.person-photo {
  max-height: 360px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-control);
}

.person-photo .slot-tag,
.proof-duo,
.logo-wall .logo-row {
  display: none;
}

.logo-wall {
  padding: var(--space-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  background: var(--surface-card);
}

.partner-logo-slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
  list-style: none;
}

.partner-logo-slot {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 14px;
  border-radius: var(--radius-control);
}

.partner-logo-slot span {
  color: var(--muted-2);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .partner-logo-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .partner-logo-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.logo-wall .proof-note {
  max-width: 72ch;
  color: var(--muted);
  font-size: var(--type-body-sm);
}

.sheet-scroll {
  position: relative;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.08);
}

.sheet-scroll-hint {
  display: none;
}

.topic-card summary,
.site-footer-social a,
.logo {
  min-height: 44px;
}

.site-footer-list a {
  min-height: 24px;
}

@media (max-width: 760px) {
  .site-footer-list a {
    min-height: 44px;
  }
}

.project-preview-body .button {
  min-height: 44px;
}

.check .textlink {
  display: inline;
  min-height: 0;
  border-bottom: 0;
  text-decoration: none;
}

.check .textlink:hover {
  border-bottom: 0;
  text-decoration: none;
}

.topic-card summary,
.site-footer-list a {
  display: flex;
  align-items: center;
}

.mobile-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
  transition:
    opacity var(--motion-fast),
    transform var(--motion-fast),
    visibility var(--motion-fast);
}

.mobile-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 760px) {
  :root {
    --section-space: 48px;
    --sticky-cta-h: 72px;
  }

  .section-heading,
  .section-heading-row {
    margin-bottom: 24px !important;
  }

  .hero-content {
    min-height: auto;
    padding-block: 40px 48px;
  }

  .hero-sheet {
    display: none;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: var(--type-body);
    line-height: 1.55;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 32px;
  }

  .glass-card,
  .step,
  .decision-card,
  .topic-card,
  .person,
  .formwrap {
    padding: var(--space-card-sm);
  }

  .sheet-scroll-hint {
    position: sticky;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 343px);
    padding: 9px 12px;
    color: var(--accent-text);
    background: rgba(1, 15, 25, 0.94);
    border-bottom: 1px solid var(--line-subtle);
    font-size: 0.75rem;
    font-weight: var(--weight-bold);
  }

  .sheet-row > :first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #082333;
    box-shadow: 1px 0 0 var(--line-subtle);
  }

  .mobile-cta {
    display: block;
  }
}

:root {
  --hero-eyebrow: #c2ff78;
}

.hero-media img {
  filter: saturate(1.2) contrast(1.04) brightness(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(1, 12, 20, 0.02) 0%,
      rgba(1, 12, 20, 0.03) 48%,
      rgba(1, 12, 20, 0.18) 66%,
      rgba(1, 12, 20, 0.58) 84%,
      rgba(1, 14, 24, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(1, 12, 20, 0.68) 0%,
      rgba(1, 12, 20, 0.48) 24%,
      rgba(1, 12, 20, 0.22) 52%,
      rgba(1, 12, 20, 0.08) 75%,
      rgba(1, 12, 20, 0) 100%
    );
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-copy .hub-eyebrow,
.hero h1,
.hero-lead {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
}

.hero-copy .hero-actions {
  margin-top: 28px;
}

.hero-copy .hero-actions .button {
  min-width: 206px;
}

.hero-sheet .sheet-row > * {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
}

.hero-sheet .sheet-head,
.hero-sheet .sheet-head > :first-child {
  border-top-left-radius: calc(var(--radius-card) - 1px);
}

.hero-sheet .sheet-head,
.hero-sheet .sheet-head > :last-child {
  border-top-right-radius: calc(var(--radius-card) - 1px);
}

.hero-sheet .sheet-row-price,
.hero-sheet .sheet-row-price > :first-child {
  border-bottom-left-radius: calc(var(--radius-card) - 1px);
}

.hero-sheet .sheet-row-price,
.hero-sheet .sheet-row-price > :last-child {
  border-bottom-right-radius: calc(var(--radius-card) - 1px);
}

@media (min-width: 961px) {
  .hero-grid {
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (max-width: 760px) {
  .hero-copy .hero-actions .button {
    min-width: 0;
  }
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof-item {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 88px;
  text-align: center;
}

.hero-proof-item strong {
  margin-top: 0;
  color: var(--heading);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: var(--weight-extrabold);
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-proof-item span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-semibold);
  line-height: 1.25;
}

@media (max-width: 760px) {
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-proof-item {
    min-height: 82px;
    padding: 10px 6px;
  }

  .hero-proof-item strong {
    font-size: 1.25rem;
  }

  .hero-proof-item span {
    margin-top: 7px;
    font-size: 0.68rem;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.45rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta {
    transition: none;
  }
}

.site-actions {
  padding-block: 8px;
  padding-left: 10px;
}

.header-cta {
  min-height: 34px;
  padding: 7px 14px;
  font-size: 13px;
}

.section-heading {
  width: var(--section-copy-width);
  max-width: none;
}

#pelda-projektek .section-heading-row > div {
  width: var(--section-copy-width);
}

.section-heading h2,
.section-heading-row h2 {
  width: 100%;
  max-width: none;
}

.section-heading > p:not(.hub-eyebrow) {
  width: 100%;
  max-width: none;
}

#ci .section-heading,
#utility .section-heading,
#ci .section-heading h2,
#utility .section-heading h2 {
  width: 100%;
}

#megoldas .icon-mark {
  border-color: rgba(226, 237, 240, 0.22);
}

@media (max-width: 760px) {
  .section-heading h2,
  .section-heading-row h2,
  .section-heading > p:not(.hub-eyebrow) {
    width: 100%;
  }

  .section-heading,
  #pelda-projektek .section-heading-row > div {
    width: 100%;
  }
}

@media (min-width: 761px) {
  .pain-panel h2 {
    width: 60%;
    max-width: none;
  }

  #megoldas .card-grid-3,
  #mukodes .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 50px;
  }
}

#megoldas .glass-card {
  position: relative;
  padding-top: 42px;
  border-color: var(--feature-border);
  background: linear-gradient(
    180deg,
    var(--feature-surface-start),
    var(--feature-surface-end)
  );
}

#megoldas .icon-mark {
  position: absolute;
  top: -21px;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid var(--feature-marker-border);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(84, 209, 63, 0.34),
      transparent 62%
    ),
    var(--feature-marker-bg);
  box-shadow:
    0 0 0 6px rgba(84, 209, 63, 0.07),
    0 8px 18px rgba(0, 0, 0, 0.28);
  color: var(--feature-marker-color);
  transform: translateX(-50%);
}

#megoldas .icon-mark svg {
  width: 22px;
  height: 22px;
}

#mukodes {
  background: none;
}

#mukodes .step {
  padding: 42px 24px 24px;
  border-color: var(--feature-border);
  background: linear-gradient(
    180deg,
    var(--feature-surface-start),
    var(--feature-surface-end)
  );
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  text-align: center;
}

#mukodes .step::before {
  border-color: var(--feature-marker-border);
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(84, 209, 63, 0.34),
      transparent 62%
    ),
    var(--feature-marker-bg);
  box-shadow:
    0 0 0 6px rgba(84, 209, 63, 0.07),
    0 8px 18px rgba(0, 0, 0, 0.28);
  color: var(--feature-marker-color);
}

#mukodes .step h3 {
  margin-bottom: 10px;
  color: var(--heading);
}

#mukodes .step p {
  color: var(--muted);
}

@media (max-width: 760px) {
  .pain-panel h2 {
    width: 100%;
    max-width: none;
  }

  #mukodes .steps {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 45px;
  }
}
.compare-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 24px;
}

#osszehasonlitas .compare-intro .section-heading {
  margin-bottom: 0 !important;
}

#osszehasonlitas .compare-intro .section-heading h2,
#osszehasonlitas .compare-intro .section-heading > p:not(.hub-eyebrow) {
  width: 100%;
  max-width: none;
}

.button-primary {
  border-color: var(--accent-action-border);
  background: var(--accent-action);
  color: var(--accent-action-text);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--accent-action-border-hover);
  background: var(--accent-action-hover);
  color: var(--accent-action-text);
}

.selector-body .main-cta {
  width: min(100%, var(--main-cta-width));
}

.site-main > #ci,
.site-main > #pelda-projektek {
  padding-block: clamp(64px, 8vw, 104px);
}

#pelda-projektek .section-heading-row {
  margin-bottom: 36px !important;
}

@media (min-width: 961px) {
  #utility .split-media {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}

#osszehasonlitas .compare-intro .section-heading {
  width: 100%;
}

@media (max-width: 960px) {
  .tier-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --section-copy-width: 100%;
  }

  .main-cta,
  .selector-body .main-cta {
    width: 100%;
  }

  .site-main > #ci,
  .site-main > #pelda-projektek {
    padding-block: 56px;
  }

  #pelda-projektek .section-heading-row {
    margin-bottom: 28px !important;
  }
}

.compare-view-control {
  justify-self: end;
}

.compare-view-control .sheet-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid rgba(6, 24, 12, 0.28);
  border-radius: 12px;
  background: #62e63f;
  box-shadow: 0 8px 22px rgba(84, 209, 63, 0.22);
}

.compare-view-control .switch-side-label {
  color: #06180c;
  font-size: 0.875rem;
  font-weight: 800;
  white-space: nowrap;
}

.compare-view-control .switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.compare-view-control .switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.compare-view-control .switch-track {
  position: relative;
  width: 38px;
  height: 22px;
  border: 1px solid rgba(6, 24, 12, 0.65);
  border-radius: 999px;
  background: #12351d;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.compare-view-control .switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.compare-view-control .switch input:checked + .switch-track {
  border-color: rgba(6, 24, 12, 0.5);
  background: #eafff0;
}

.compare-view-control .switch input:checked + .switch-track .switch-thumb {
  transform: translateX(16px);
  background: #168135;
}

.compare-view-control .switch input:focus-visible + .switch-track {
  outline: 2px solid #06180c;
  outline-offset: 2px;
}

#sheet-full .sheet-bar {
  justify-content: flex-start;
}

.sheet-status {
  width: 100%;
  color: var(--muted);
}

.sheet-status-full,
.sheet-status-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sheet-status strong {
  color: var(--heading);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-bold);
}

.sheet-status span span {
  font-size: 0.78rem;
}

.sheet-status-price {
  display: none;
}

.is-price-only .sheet-status-full {
  display: none;
}

.is-price-only .sheet-status-price {
  display: flex;
}

#sheet-full .sheet-row-price {
  position: relative;
  border-top: 2px solid rgba(84, 209, 63, 0.72);
  background: linear-gradient(
    90deg,
    rgba(84, 209, 63, 0.18),
    rgba(84, 209, 63, 0.08)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 -8px 24px rgba(84, 209, 63, 0.06);
}

#sheet-full .sheet-row-price > * {
  display: flex;
  align-items: center;
  min-height: 64px;
}

#sheet-full .sheet-row-price .sheet-key {
  color: var(--accent-text);
  font-size: 0.88rem;
  font-weight: var(--weight-extrabold);
}

#sheet-full .sheet-row-price .sheet-val {
  color: #fff;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.025em;
}

#sheet-full.is-price-only .sheet-row-price {
  border-top-color: var(--accent-action-hover);
  background: rgba(84, 209, 63, 0.2);
  box-shadow: 0 0 28px rgba(84, 209, 63, 0.16);
}

@media (max-width: 760px) {
  .compare-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sheet-status-full,
  .sheet-status-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

#epc .epc-cta {
  border-color: rgba(203, 213, 225, 0.34);
  background:
    radial-gradient(
      520px 220px at 0% 100%,
      rgba(84, 209, 63, 0.11),
      transparent 72%
    ),
    linear-gradient(105deg, rgba(51, 65, 85, 0.1), rgba(71, 85, 105, 0.2));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

#epc .epc-button {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(15, 23, 42, 0.3);
}

#epc .epc-button:hover,
#epc .epc-button:focus-visible {
  border-color: rgba(194, 255, 120, 0.72);
  background: rgba(15, 23, 42, 0.46);
}
