:root {
  /* Paleta oficial Alma Vertical */
  --alma-gold: #C9A24E;
  --alma-gold-light: #E3C97A;
  --alma-rose: #D66D8C;
  --alma-rose-old: #C86A89;
  --alma-rose-dust: #EFC9D3;
  --alma-rose-pale: #F8EEF1;
  --alma-ivory: #FFF9F7;
  --alma-coffee: #6E3E46;

  /* Aplicación */
  --alma-bg: #FFF9F7;
  --alma-bg-soft: #F8EEF1;
  --alma-bg-alt: #FDF4F2;
  --alma-card: rgba(255, 249, 247, 0.96);
  --alma-card-2: rgba(248, 238, 241, 0.92);
  --alma-text: #6E3E46;
  --alma-muted: #9C7078;
  --alma-white: #ffffff;
  --alma-border: rgba(201, 162, 78, 0.28);
  --alma-danger: #B94A5D;
  --alma-success: #557C55;
  --radius: 22px;
  --shadow: 0 18px 45px rgba(110, 62, 70, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--alma-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 201, 122, .35), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(239, 201, 211, .72), transparent 30rem),
    linear-gradient(160deg, var(--alma-ivory), var(--alma-rose-pale));
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,162,78,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,78,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.40), transparent 70%);
}

a { color: var(--alma-rose-old); text-decoration: none; }
a:hover { color: var(--alma-gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(255, 249, 247, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--alma-border);
  box-shadow: 0 10px 32px rgba(110, 62, 70, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--alma-coffee);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 78, .45);
  box-shadow: 0 0 24px rgba(201, 162, 78, .24);
  background: #3f3f3d;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.btn-mini {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--alma-coffee);
  border: 1px solid transparent;
  font-weight: 700;
}

.site-nav a:hover,
.btn-mini {
  border-color: rgba(201, 162, 78, .42);
  background: rgba(227, 201, 122, .22);
}

.nav-user {
  background: rgba(239, 201, 211, .45);
  border-color: rgba(200, 106, 137, .20) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(201, 162, 78, .45);
  background: var(--alma-ivory);
  color: var(--alma-coffee);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.1rem;
}

.main {
  position: relative;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.hero-card,
.card,
.form-card {
  background: linear-gradient(180deg, rgba(255, 249, 247, .96), rgba(248, 238, 241, .88));
  border: 1px solid var(--alma-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: clamp(28px, 5vw, 54px); }

.hero-logo {
  display: flex;
  justify-content: center;
  padding: 24px;
}

.hero-logo img {
  width: min(420px, 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 78, .24);
}

.kicker {
  color: var(--alma-gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 5rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--alma-rose), var(--alma-gold), var(--alma-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--alma-coffee);
}

h3 { font-size: 1.25rem; color: var(--alma-coffee); }

p { color: var(--alma-muted); line-height: 1.65; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.btn,
button.btn,
input.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  font-size: .96rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--alma-gold), var(--alma-gold-light));
  color: var(--alma-coffee);
  box-shadow: 0 10px 28px rgba(201, 162, 78, .28);
}

.btn-secondary {
  background: rgba(255, 249, 247, .62);
  color: var(--alma-coffee);
  border: 1px solid rgba(201, 162, 78, .52);
}

.btn-secondary:hover { background: rgba(227, 201, 122, .20); }

.btn-rose {
  background: linear-gradient(135deg, var(--alma-rose), var(--alma-rose-old));
  color: var(--alma-ivory);
}

.btn-danger {
  background: rgba(185, 74, 93, .10);
  color: var(--alma-danger);
  border: 1px solid rgba(185, 74, 93, .30);
}

.btn:disabled,
.disabled {
  opacity: .55;
  pointer-events: none;
}

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

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

.card { padding: 22px; }
.card strong { color: var(--alma-coffee); }

.stat {
  font-size: 2rem;
  font-weight: 900;
  color: var(--alma-gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  border: 1px solid rgba(201, 162, 78, .28);
  background: rgba(227, 201, 122, .24);
  color: var(--alma-coffee);
}

.badge.closed { color: #7d7472; border-color: rgba(110,62,70,.16); background: rgba(110,62,70,.06); }
.badge.danger { color: var(--alma-danger); border-color: rgba(185,74,93,.30); background: rgba(185,74,93,.10); }
.badge.success { color: #3f6a45; border-color: rgba(85,124,85,.30); background: rgba(85,124,85,.10); }

.form-card {
  width: min(560px, 100%);
  margin: 24px auto;
  padding: clamp(22px, 5vw, 36px);
}

.form-card.logo-form { text-align: center; }
.form-card.logo-form img {
  width: 150px;
  border-radius: 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,78,.24);
}

label {
  display: block;
  margin: 14px 0 7px;
  font-weight: 800;
  color: var(--alma-coffee);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 78, .30);
  background: rgba(255, 255, 255, .78);
  color: var(--alma-coffee);
  padding: 13px 14px;
  font-size: 1rem;
  outline: none;
}

select option { color: #2c2c2c; }
textarea { min-height: 100px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--alma-rose-old);
  box-shadow: 0 0 0 3px rgba(214, 109, 140, .12);
}

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

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 78, .24);
  background: rgba(255,249,247,.82);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th, td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 162, 78, .16);
  vertical-align: top;
}

th {
  color: var(--alma-coffee);
  background: rgba(227, 201, 122, .20);
}

tr:last-child td { border-bottom: none; }

.alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 78, .28);
  background: rgba(227, 201, 122, .20);
  color: var(--alma-coffee);
}
.alert.success { border-color: rgba(85,124,85,.30); background: rgba(85,124,85,.10); color: #345B39; }
.alert.error { border-color: rgba(185,74,93,.30); background: rgba(185,74,93,.10); color: var(--alma-danger); }

.notice {
  padding: 16px;
  border-radius: 18px;
  background: rgba(239, 201, 211, .38);
  border: 1px dashed rgba(200, 106, 137, .38);
}

.site-footer {
  color: var(--alma-muted);
  text-align: center;
  padding: 24px 16px 34px;
  border-top: 1px solid rgba(201, 162, 78, .18);
}

.inline-form { display: inline; }
.inline-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-main { width: min(1240px, calc(100% - 32px)); }

.small { font-size: .9rem; color: var(--alma-muted); }
.separator { height: 1px; background: rgba(201,162,78,.22); margin: 22px 0; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,249,247,.98);
    border: 1px solid rgba(201,162,78,.28);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; }
  .brand span { font-size: .9rem; }
}

html, body {
  background-color: var(--alma-ivory) !important;
  color-scheme: light;
}
.logo-center { text-align:center; margin-bottom: 12px; }
.logo-center img { width: 160px; max-width: 65%; border-radius: 24px; border:1px solid rgba(201,162,78,.28); box-shadow: var(--shadow); }
.full { width: 100%; }
.btn-ghost { background: transparent; color: var(--alma-coffee); border: 1px dashed rgba(201,162,78,.45); }
.filter-card { background: rgba(255,249,247,.86); border: 1px solid var(--alma-border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: end; }
.filters.compact { grid-template-columns: 1fr auto; }
.filter-actions { display:flex; gap: 8px; flex-wrap: wrap; align-items: end; }
.card-row { display:flex; gap: 12px; align-items:center; }
.card-row.between { justify-content:space-between; }
.top-align { align-items:flex-start; }
.class-card h3 { margin-right: 10px; }
.badge.spots { white-space: nowrap; margin-top: 2px; font-weight: 950; }
.responsive-cards { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mini-card { padding: 18px; }
.mini-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.mini-grid span { background: rgba(239,201,211,.28); border: 1px solid rgba(200,106,137,.16); border-radius: 16px; padding: 10px; color: var(--alma-muted); }
.responsive-table { overflow-x: auto; border-radius: 18px; border: 1px solid rgba(201, 162, 78, .24); background: rgba(255,249,247,.82); box-shadow: var(--shadow); }
.responsive-table table { min-width: 820px; }

@media (max-width: 760px) {
  .main, .admin-main { width: min(100% - 20px, 1240px); padding-top: 22px; }
  .responsive-cards, .plan-cards { grid-template-columns: 1fr; }
  .filters, .filters.compact { grid-template-columns: 1fr; }
  .filter-actions .btn { width: 100%; }
  .full-mobile .btn { width: 100%; }
  .card-row.between { gap: 10px; }
  .card-row.between h3 { flex: 1; }
  .badge.spots { align-self: flex-start; }
  .responsive-table { overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .responsive-table table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr { display: block; width: 100%; min-width: 0; }
  .responsive-table thead { display: none; }
  .responsive-table tr { margin-bottom: 14px; background: linear-gradient(180deg, rgba(255,249,247,.96), rgba(248,238,241,.88)); border: 1px solid var(--alma-border); border-radius: 18px; box-shadow: var(--shadow); padding: 12px; }
  .responsive-table td { border-bottom: 1px solid rgba(201,162,78,.12); padding: 10px 4px; }
  .responsive-table td:last-child { border-bottom: 0; }
  .responsive-table td::before { content: attr(data-label); display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; color: var(--alma-gold); font-weight: 900; margin-bottom: 4px; }
  .inline-actions { display:grid; grid-template-columns:1fr; }
  .inline-actions .btn, .inline-actions select { width:100%; }
  .brand img { width: 46px; height: 46px; }
}

/* ===== V4.2: Home renovado y favicon/logo rosa ===== */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  min-height: calc(100vh - 154px);
}

.home-hero-copy {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 78, .28);
  background:
    radial-gradient(circle at 10% 10%, rgba(227, 201, 122, .22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 249, 247, .98), rgba(248, 238, 241, .92));
  box-shadow: 0 24px 58px rgba(110, 62, 70, .15);
  overflow: hidden;
}

.home-hero-copy::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 78, .28);
  background: rgba(239, 201, 211, .28);
}

.home-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--alma-coffee);
  font-weight: 650;
}

.home-hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero-logo img {
  width: min(520px, 100%);
  border-radius: 30px;
  border: 1px solid rgba(201, 162, 78, .32);
  box-shadow: 0 28px 70px rgba(110, 62, 70, .22);
  background: var(--alma-rose-pale);
}

.home-section {
  margin-top: clamp(28px, 5vw, 62px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.home-features .card {
  min-height: 220px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(239, 201, 211, .30);
  border: 1px solid rgba(201, 162, 78, .18);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--alma-gold), var(--alma-gold-light));
  color: var(--alma-coffee);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(201, 162, 78, .22);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.soft-card {
  min-height: 250px;
  background: linear-gradient(160deg, rgba(255, 249, 247, .97), rgba(248, 238, 241, .88));
}

.accent-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(227, 201, 122, .24), transparent 15rem),
    linear-gradient(160deg, rgba(248, 238, 241, .96), rgba(255, 249, 247, .94));
}

.brand img {
  background: var(--alma-rose-pale);
}

@media (max-width: 860px) {
  .home-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-logo {
    order: -1;
  }

  .home-hero-logo img {
    width: min(420px, 100%);
  }
}

@media (max-width: 640px) {
  .home-hero-copy {
    padding: 24px;
    border-radius: 26px;
  }

  .home-features {
    grid-template-columns: 1fr !important;
  }
}

/* ===== V4.3: logo desde favicon, home más moderno y primer pantallazo con continuidad ===== */
.brand img,
.logo-center img {
  background: var(--alma-rose-pale);
  object-fit: cover;
}

.logo-center img {
  width: 132px;
  height: 132px;
  border-radius: 34px;
  border: 2px solid rgba(201, 162, 78, .42);
  box-shadow: 0 20px 48px rgba(110, 62, 70, .18);
}

.home-hero.home-v43 {
  min-height: auto;
  padding: clamp(20px, 3vw, 36px) 0 clamp(10px, 2vw, 18px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
  align-items: stretch;
}

.home-v43 .home-modern-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(430px, 56vh, 560px);
  padding: clamp(28px, 4.6vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 249, 247, .98), rgba(248, 238, 241, .95)),
    radial-gradient(circle at 6% 10%, rgba(227, 201, 122, .20), transparent 16rem);
}

.home-v43 .home-modern-card::after {
  width: 240px;
  height: 240px;
  right: -94px;
  bottom: -112px;
  background: radial-gradient(circle, rgba(214, 109, 140, .16), rgba(227, 201, 122, .10));
}

.home-v43 h1 {
  font-size: clamp(2.5rem, 6.2vw, 5.6rem);
  letter-spacing: .055em;
  margin-bottom: 18px;
}

.home-v43 .home-lead {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
}

.home-actions { margin-top: 20px; }

.home-mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.home-mini-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 249, 247, .76);
  border: 1px solid rgba(201, 162, 78, .30);
  color: var(--alma-coffee);
  font-weight: 850;
  font-size: .9rem;
}

.home-visual-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: clamp(430px, 56vh, 560px);
  padding: clamp(22px, 3.5vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 78, .26);
  background:
    radial-gradient(circle at 75% 8%, rgba(227, 201, 122, .30), transparent 14rem),
    linear-gradient(160deg, rgba(248, 238, 241, .96), rgba(255, 249, 247, .90));
  box-shadow: 0 24px 58px rgba(110, 62, 70, .14);
  overflow: hidden;
}

.home-visual-panel::before,
.home-visual-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 78, .22);
  pointer-events: none;
}

.home-visual-panel::before {
  inset: 22px;
}

.home-visual-panel::after {
  width: 160px;
  height: 160px;
  right: -56px;
  top: -46px;
  background: rgba(227, 201, 122, .13);
}

.home-logo-orbit {
  position: relative;
  z-index: 1;
  width: min(360px, 82%);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 44px;
  background: rgba(255, 249, 247, .66);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 78, .18), 0 30px 70px rgba(110, 62, 70, .16);
}

.home-logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
  border: 2px solid rgba(201, 162, 78, .34);
}

.home-panel-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 249, 247, .76);
  border: 1px solid rgba(201, 162, 78, .28);
}

.home-panel-note strong {
  color: var(--alma-coffee);
  font-size: 1.05rem;
}

.home-panel-note span {
  color: var(--alma-muted);
  line-height: 1.5;
}

.home-below-hint {
  display: flex;
  justify-content: center;
  margin: 6px 0 18px;
}

.home-below-hint a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 249, 247, .72);
  border: 1px solid rgba(201, 162, 78, .28);
  color: var(--alma-coffee);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(110, 62, 70, .08);
}

.home-section-modern {
  margin-top: clamp(22px, 4vw, 42px);
}

.center-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.modern-feature {
  min-height: 0 !important;
  padding: 24px;
}

.discipline-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(201, 162, 78, .26);
  background:
    radial-gradient(circle at 4% 10%, rgba(227, 201, 122, .18), transparent 18rem),
    linear-gradient(145deg, rgba(255, 249, 247, .94), rgba(248, 238, 241, .88));
  box-shadow: var(--shadow);
}

.discipline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.discipline-tags span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 247, .78);
  border: 1px solid rgba(200, 106, 137, .20);
  color: var(--alma-coffee);
  font-weight: 850;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(201, 162, 78, .26);
  background: rgba(255, 249, 247, .82);
  box-shadow: 0 14px 36px rgba(110, 62, 70, .10);
}

.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--alma-rose), var(--alma-rose-old));
  color: var(--alma-ivory);
  font-weight: 950;
}

@media (min-width: 1100px) {
  .main:has(.home-v43) {
    width: min(1240px, calc(100% - 64px));
    padding-top: 24px;
  }
}

@media (max-width: 920px) {
  .home-hero.home-v43,
  .discipline-band,
  .home-steps,
  .home-feature-strip {
    grid-template-columns: 1fr;
  }

  .home-v43 .home-modern-card,
  .home-visual-panel {
    min-height: auto;
  }

  .home-visual-panel {
    order: -1;
  }

  .home-logo-orbit {
    width: min(330px, 100%);
  }
}

@media (max-width: 640px) {
  .home-hero.home-v43 {
    padding-top: 10px;
  }

  .home-v43 h1 {
    font-size: clamp(2.15rem, 14vw, 3.4rem);
  }

  .home-visual-panel,
  .home-v43 .home-modern-card,
  .discipline-band {
    border-radius: 26px;
  }

  .home-logo-orbit,
  .home-logo-orbit img {
    border-radius: 34px;
  }
}
