/*
  Base reusable extraida de Material BeTech.
  Pensada como punto de partida para otras webs:
  tokens, reset, tipografia, layout, superficies, formularios,
  botones, estados y utilidades.
*/

:root {
  --font-body: "Roboto", sans-serif;
  --font-display: "Roboto", sans-serif;

  --color-brand: #08dbf7;
  --color-accent: #f5920a;
  --color-success: #89e600;
  --color-support: #0a7abe;
  --color-dark: #0a0a0a;
  --color-deep: #091321;

  --brand-soft: rgba(8, 219, 247, 0.12);
  --accent-soft: rgba(245, 146, 10, 0.12);
  --success-soft: rgba(137, 230, 0, 0.15);
  --support-soft: rgba(10, 122, 190, 0.12);

  --surface-page: #f5f7fa;
  --surface-card: #ffffff;
  --surface-card-strong: rgba(255, 255, 255, 0.97);
  --surface-card-soft: rgba(255, 255, 255, 0.78);

  --ink-900: #10161f;
  --ink-800: #1c2836;
  --ink-700: #435160;
  --ink-600: #5f6c79;
  --ink-500: #7d8894;

  --line: rgba(16, 22, 31, 0.08);
  --line-strong: rgba(16, 22, 31, 0.14);

  --state-success: #4d7c0f;
  --state-warning: #9a5c05;
  --state-danger: #b42318;

  --shadow-sm: 0 12px 26px rgba(7, 14, 24, 0.08);
  --shadow-md: 0 18px 42px rgba(7, 14, 24, 0.12);
  --shadow-lg: 0 28px 70px rgba(7, 14, 24, 0.16);

  --radius-xs: 12px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --container-max: 1180px;
  --page-gutter: clamp(1.35rem, 4vw, 2.4rem);

  --transition-fast: 0.16s ease;
  --transition-base: 0.18s ease;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink-900);
  background: var(--surface-page);
  font-family: var(--font-body);
  overflow-x: clip;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

::selection {
  background: rgba(8, 219, 247, 0.24);
}

:focus-visible {
  outline: 3px solid rgba(8, 219, 247, 0.34);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.24;
}

h4 {
  font-size: 0.96rem;
  line-height: 1.3;
}

p {
  line-height: 1.65;
}

.container {
  width: min(var(--container-max), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.page-stack {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
}

.stack {
  display: grid;
  gap: var(--stack-space, var(--space-md));
}

.stack-sm {
  --stack-space: var(--space-sm);
}

.stack-lg {
  --stack-space: var(--space-lg);
}

.stack-xl {
  --stack-space: var(--space-xl);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-gap, var(--space-sm));
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}

.grid {
  display: grid;
  gap: var(--grid-gap, var(--space-md));
}

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

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

.auto-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-support);
}

.subtitle,
.section-note,
.muted-note {
  color: var(--ink-700);
}

.subtitle {
  font-size: 1rem;
  max-width: 38ch;
}

.section-note {
  font-size: 0.92rem;
}

.muted-note {
  font-size: 0.88rem;
  color: var(--ink-500);
}

.page-header,
.surface-card,
.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
}

.page-header,
.surface-card,
.hero-card {
  display: grid;
  gap: var(--space-md);
  padding: clamp(1.15rem, 2.3vw, 2rem);
}

.page-header::after,
.accent-top::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1rem 1.25rem;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--card-accent, var(--color-brand));
}

.accent-top {
  position: relative;
}

.hero-card {
  --card-accent: var(--color-brand);
  border-color: rgba(8, 219, 247, 0.18);
  background: #f3fbfe;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1.15rem auto auto 1.15rem;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(8, 219, 247, 0.08);
  pointer-events: none;
}

.page-header > *,
.surface-card > *,
.hero-card > * {
  position: relative;
  z-index: 1;
}

.page-header__copy,
.page-header__meta,
.page-header__actions {
  display: grid;
  gap: var(--space-xs);
}

.page-header {
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: start;
  padding-bottom: 4.5rem;
}

.page-header__meta {
  justify-items: end;
}

.page-header__actions {
  justify-items: end;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-card);
}

.metric-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-900);
}

.metric-card span {
  font-size: 0.88rem;
  color: var(--ink-600);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-card);
}

.feature-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 0 8px rgba(8, 219, 247, 0.12);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}

.lift-on-hover {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.lift-on-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 122, 190, 0.16);
  box-shadow: 0 26px 60px rgba(12, 18, 28, 0.14);
}

.accent-left {
  position: relative;
  padding-left: 1.1rem;
}

.accent-left::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  background: var(--card-accent, var(--color-brand));
}

.form-stack {
  display: grid;
  gap: 0.95rem;
}

.form-stack.compact {
  gap: 0.82rem;
}

.row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field > span,
.field-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-800);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 22, 31, 0.12);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  color: var(--ink-900);
  background: rgba(244, 247, 249, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-500);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%230A7ABE' d='M1.4 1.2 6 5.8l4.6-4.6L12 2.6 6 8 0 2.6z'/%3E%3C/svg%3E");
  background-position: calc(100% - 16px) 50%;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  padding-right: 2.8rem;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(10, 122, 190, 0.26);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(8, 219, 247, 0.68);
  box-shadow: 0 0 0 4px rgba(8, 219, 247, 0.18);
  background: var(--surface-card);
}

button {
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: fit-content;
  border-radius: var(--radius-md);
  padding: 0.82rem 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.btn.block {
  width: 100%;
}

.btn.small {
  padding: 0.62rem 0.94rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  color: var(--color-dark);
  background: var(--color-brand);
  border: 1px solid rgba(8, 219, 247, 0.24);
  box-shadow: 0 12px 24px rgba(8, 219, 247, 0.18);
}

.btn-primary:hover {
  background: #00cae6;
  box-shadow: 0 16px 28px rgba(8, 219, 247, 0.2);
}

.btn-secondary {
  color: var(--color-support);
  border: 1px solid rgba(10, 122, 190, 0.16);
  background: rgba(10, 122, 190, 0.08);
}

.btn-secondary:hover {
  background: rgba(10, 122, 190, 0.12);
}

.btn-ghost {
  color: var(--color-accent);
  background: transparent;
  border: none;
  padding-inline: 0;
  text-decoration: none;
}

.btn-ghost:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.btn-danger {
  color: var(--state-danger);
  border: 1px solid rgba(180, 35, 24, 0.16);
  background: rgba(180, 35, 24, 0.08);
}

.btn-danger:hover {
  background: rgba(180, 35, 24, 0.12);
}

.badge,
.summary-pill,
.pill-status,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.badge,
.summary-pill {
  padding: 0.46rem 0.8rem;
  font-size: 0.82rem;
  color: var(--color-support);
  background: var(--support-soft);
  border: 1px solid rgba(10, 122, 190, 0.14);
}

.badge--brand {
  color: var(--color-support);
  background: var(--support-soft);
  border-color: rgba(10, 122, 190, 0.18);
}

.badge--accent {
  color: var(--state-warning);
  background: rgba(245, 146, 10, 0.16);
  border-color: rgba(245, 146, 10, 0.18);
}

.badge--success {
  color: var(--state-success);
  background: var(--success-soft);
  border-color: rgba(137, 230, 0, 0.24);
}

.pill-status {
  padding: 0.34rem 0.62rem;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.pill-status.info {
  color: var(--color-support);
  background: var(--support-soft);
  border-color: rgba(10, 122, 190, 0.18);
}

.pill-status.success {
  color: var(--state-success);
  background: var(--success-soft);
  border-color: rgba(137, 230, 0, 0.24);
}

.pill-status.warning {
  color: var(--state-warning);
  background: var(--accent-soft);
  border-color: rgba(245, 146, 10, 0.24);
}

.pill-status.error {
  color: var(--state-danger);
  background: rgba(180, 35, 24, 0.1);
  border-color: rgba(180, 35, 24, 0.18);
}

.status {
  min-height: 1.6rem;
  padding: 0.55rem 0.82rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.status.info {
  color: var(--ink-700);
  background: var(--surface-card-soft);
  border-color: var(--line);
}

.status.success {
  color: var(--state-success);
  background: var(--success-soft);
  border-color: rgba(137, 230, 0, 0.24);
}

.status.warning {
  color: var(--state-warning);
  background: var(--accent-soft);
  border-color: rgba(245, 146, 10, 0.22);
}

.status.error {
  color: var(--state-danger);
  background: rgba(180, 35, 24, 0.1);
  border-color: rgba(180, 35, 24, 0.18);
}

.hidden {
  display: none !important;
}

.full-width {
  width: 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-up {
    opacity: 0;
    animation: reveal-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .reveal-sequence > * {
    opacity: 0;
    animation: reveal-up 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .reveal-sequence > *:nth-child(2) {
    animation-delay: 0.08s;
  }

  .reveal-sequence > *:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1040px) {
  .page-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 4rem;
  }

  .page-header__meta {
    justify-items: start;
    grid-column: 1 / -1;
    order: 3;
  }
}

@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .metric-grid,
  .row {
    grid-template-columns: 1fr;
  }

  .page-header {
    width: min(100%, calc(100% - 1.25rem));
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1.2rem 1.05rem 3.8rem;
  }

  .page-header__meta,
  .page-header__actions {
    justify-items: start;
  }

  .split,
  .section-head {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container-max), calc(100% - (var(--page-gutter) * 2)));
  }

  .page-stack {
    padding-block: var(--space-md);
  }

  .page-header,
  .surface-card,
  .hero-card {
    border-radius: var(--radius-lg);
    padding: 1.05rem;
  }

  .page-header {
    padding-bottom: 3.2rem;
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }
}

/* Betech site layer */
:root {
  --font-body: "Roboto", sans-serif;
  --font-display: "Roboto", sans-serif;

  --color-brand: #08dbf7;
  --color-accent: #f5920a;
  --color-success: #89e600;
  --color-support: #0a7abe;
  --color-dark: #0a0a0a;
  --color-deep: #0c1d33;

  --brand-soft: rgba(8, 219, 247, 0.12);
  --accent-soft: rgba(245, 146, 10, 0.12);
  --success-soft: rgba(137, 230, 0, 0.15);
  --support-soft: rgba(10, 122, 190, 0.12);

  --surface-page: #f5f7fa;
  --surface-card: #ffffff;
  --surface-card-strong: #ffffff;

  --ink-900: #10161f;
  --ink-800: #233244;
  --ink-700: #52657c;
  --ink-600: #6f8094;
  --ink-500: #94a1b1;

  --line: rgba(16, 22, 31, 0.08);
  --line-strong: rgba(16, 22, 31, 0.14);

  --shadow-sm: 0 10px 24px rgba(7, 14, 24, 0.05);
  --shadow-md: 0 20px 48px rgba(7, 14, 24, 0.08);
  --shadow-lg: 0 28px 64px rgba(7, 14, 24, 0.1);

  --container-max: 1200px;
  --page-gutter: clamp(1.35rem, 4vw, 2.4rem);
}

html {
  background: var(--surface-page);
}

body {
  background: var(--surface-page);
}

h1 {
  font-weight: 900;
  line-height: 0.95;
}

h2 {
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stack-sm,
.stack-lg,
.stack-xl {
  display: grid;
  gap: var(--stack-space);
}

.surface-card,
.hero-card {
  box-shadow: var(--shadow-md);
}

.site-shell {
  padding-bottom: var(--space-xl);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-card-strong);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus-visible {
  top: 1rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 1.25rem 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.topbar__nav a {
  color: var(--ink-800);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.topbar__nav a:hover {
  color: var(--color-support);
}

.topbar__cta {
  white-space: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: clamp(170px, 22vw, 250px);
  height: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.25rem);
  padding-block: 1rem 3.5rem;
}

.hero__copy {
  max-width: 36rem;
}

.hero__lead {
  max-width: 34rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-700);
}

.hero__actions {
  --cluster-gap: 0.75rem;
}

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

.hero-visual {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-stage {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%);
}

.hero-stage__banner {
  width: min(78%, 28rem);
  max-width: 100%;
  height: auto;
}

.hero-stage__photo {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  max-height: 27rem;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-stage__bot {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: clamp(120px, 24%, 180px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(12, 18, 28, 0.16));
}

.logo-band {
  display: grid;
  gap: 1rem;
  padding-block: 0 2.5rem;
}

.logo-band__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.logo-band__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.logo-band__logo {
  display: grid;
  place-items: center;
  min-height: 6.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.logo-band__logo img {
  width: 100%;
  max-width: 78px;
  aspect-ratio: 1;
  object-fit: contain;
}

.section {
  display: grid;
  gap: 1.85rem;
  padding-block: 1.75rem 3.1rem;
}

.section--statement {
  padding-top: 1.25rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 1.4rem;
  align-items: end;
}

.section-head h2 {
  max-width: 18ch;
}

.section-note {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.55;
  justify-self: end;
}

.hero-card::before {
  content: none;
}

.hero-card {
  background: #fff;
  border-color: rgba(8, 219, 247, 0.16);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
  align-items: start;
}

.statement-card {
  gap: 1.25rem;
}

.statement-card p {
  color: var(--ink-700);
}

.statement-media {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
}

.statement-media__image {
  width: 100%;
  min-height: 15rem;
  padding: 1rem;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: #f4f8fb;
}

.statement-media__copy p {
  color: var(--ink-700);
}

.program-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.program-summary,
.program-brand {
  padding: 1.5rem;
  gap: 1.2rem;
}

.program-brand__banner {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #f7fafc;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-left: 0.85rem;
  border-left: 4px solid var(--color-support);
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kicker--accent {
  border-left-color: var(--color-accent);
}

.card-kicker--brand {
  border-left-color: var(--color-brand);
}

.mini-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mini-card strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.mini-card p {
  color: var(--ink-700);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mini-card--hero {
  min-height: 100%;
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.skills-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.path-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 16rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--color-brand);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.path-card::before {
  content: none;
}

.path-card--initial {
  border-top-color: var(--color-brand);
}

.path-card--primary {
  border-top-color: var(--color-support);
}

.path-card--secondary {
  border-top-color: var(--color-accent);
  color: var(--ink-900);
}

.path-card__tag {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-support);
}

.path-card__list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-800);
}

.levels-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.3rem;
  align-items: center;
  padding: 1.2rem;
}

.levels-highlight__image {
  width: 100%;
  min-height: 16rem;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
}

.levels-highlight__copy p {
  color: var(--ink-700);
}

.section--contrast {
  padding-top: 1.5rem;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 1.6rem;
}

.method-summary,
.method-flow {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: 1.5rem;
}

.method-summary p,
.method-flow p {
  color: var(--ink-700);
}

.method-points li {
  background: #fff;
}

.process-list {
  display: grid;
}

.process-list--timeline {
  position: relative;
  gap: 0.8rem;
}

.process-list--timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: rgba(10, 122, 190, 0.12);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(10, 122, 190, 0.12);
  border-radius: 999px;
  color: var(--color-support);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(8, 219, 247, 0.14);
}

.skills-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: start;
}

.skills-intro {
  padding: 1.5rem;
  gap: 1.25rem;
}

.skills-intro p {
  color: var(--ink-700);
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.skill-card {
  display: grid;
  gap: 0.65rem;
  min-height: 10rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.skill-card p {
  color: var(--ink-700);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.cta-panel__copy {
  align-content: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  text-decoration: none;
  background: #fff;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 122, 190, 0.18);
  box-shadow: var(--shadow-sm);
}

.contact-card strong {
  font-size: 1rem;
}

.contact-card span:last-child {
  color: var(--ink-700);
}

.contact-card__label {
  color: var(--color-support);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-panel__aside {
  align-content: start;
  gap: 1rem;
  background: #f9fbfd;
}

.cta-panel__logo {
  width: min(210px, 100%);
  height: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem 2rem;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-support);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-stage__bot {
    animation: float-card 7s ease-in-out infinite;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .program-layout,
  .method-grid,
  .skills-layout,
  .cta-panel,
  .levels-highlight {
    grid-template-columns: 1fr;
  }

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

  .hero__highlights,
  .program-facts,
  .skills-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 27rem;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.95rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .topbar__nav {
    justify-content: center;
    width: 100%;
  }

  .topbar__cta {
    width: 100%;
    justify-content: center;
  }

  .logo-band__head,
  .site-footer {
    flex-direction: column;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-note {
    justify-self: start;
  }

  .hero__highlights,
  .program-facts,
  .skills-points,
  .skill-grid,
  .path-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .logo-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 23rem;
  }

  .hero-stage__banner {
    width: min(84%, 21rem);
  }

  .hero-stage__photo {
    min-height: 18rem;
  }

  .hero-stage__bot {
    width: 120px;
  }

  .path-card,
  .skill-card,
  .mini-card,
  .contact-card,
  .process-step {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 1rem;
  }

  .topbar {
    gap: 0.9rem;
    margin-bottom: 1.4rem;
    padding-block: 1rem 0.85rem;
  }

  .topbar__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
  }

  .topbar__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    text-align: center;
  }

  .topbar__cta {
    min-height: 3rem;
  }

  .hero {
    padding-block: 0.5rem 2.5rem;
    gap: 1.4rem;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__lead {
    max-width: none;
    font-size: 1rem;
  }

  .hero__highlights {
    gap: 0.8rem;
  }

  .logo-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .logo-band__logo {
    min-height: 5.5rem;
    padding: 0.8rem;
  }

  .section {
    gap: 1.35rem;
    padding-block: 1.35rem 2.35rem;
  }

  .section-head {
    gap: 0.85rem;
  }

  .section-note {
    max-width: none;
    font-size: 0.96rem;
  }

  .feature-list li {
    padding: 0.85rem 0.9rem;
    border-radius: 1rem;
  }

  .statement-media,
  .program-summary,
  .program-brand,
  .method-summary,
  .method-flow,
  .skills-intro,
  .levels-highlight,
  .cta-panel,
  .cta-panel__aside {
    padding: 1rem;
  }

  .hero-stage {
    padding: 1rem;
  }

  .hero-stage__banner {
    width: 100%;
  }

  .hero-stage__bot {
    position: static;
    width: 96px;
    justify-self: end;
  }

  .hero-stage__photo {
    min-height: 14rem;
    max-height: none;
    border-radius: 1.2rem;
  }

  .statement-media__image,
  .levels-highlight__image {
    min-height: 12rem;
    border-radius: 1.1rem;
  }

  .path-card,
  .skill-card,
  .mini-card,
  .contact-card {
    padding: 0.95rem;
    border-radius: 1.05rem;
  }

  .path-card {
    gap: 0.7rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.95rem;
  }

  .process-list--timeline::before {
    display: none;
  }

  .process-step__number {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-grid,
  .skill-grid,
  .hero__highlights,
  .program-facts,
  .skills-points {
    gap: 0.8rem;
  }

  .cta-panel {
    gap: 1rem;
  }

  .cta-panel__copy,
  .cta-panel__aside {
    gap: 0.9rem;
  }

  .site-footer {
    align-items: flex-start;
    padding-bottom: 1.4rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.28rem, 6.2vw, 1.65rem);
  }

  .brand__logo {
    width: min(180px, 72vw);
  }

  .logo-band__grid,
  .topbar__nav {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 0.35rem 2rem;
  }

  .hero-visual {
    min-height: 20.5rem;
  }

  .hero-stage {
    gap: 0.85rem;
  }

  .hero-stage__photo {
    min-height: 12.5rem;
  }
}

