:root {
  --brand: #ff5c00;
  --brand-dark: #df4d00;
  --brand-deep: #8f2d00;
  --sun: #ffc64d;
  --peach: #ffe2c7;
  --cream: #fff7ef;
  --cream-deep: #fff0df;
  --bg: #fff8f3;
  --surface: #ffffff;
  --surface-soft: #fff1e7;
  --line: #ead8ca;
  --text: #111111;
  --muted: #5d5d5d;
  --success: #168a45;
  --warning: #c76a00;
  --danger: #b42318;
  --shadow: 0 18px 36px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 24px 60px rgba(143, 45, 0, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --sidebar-width: 270px;
  --font-display: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
input, select, textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }
.hidden { display: none !important; }
.muted { color: var(--muted); }
.small-text { font-size: 0.86rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
.button--primary { background: var(--brand-dark); color: #fff; }
.button--secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(255, 92, 0, 0.28);
}
.button--soft {
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid rgba(255, 92, 0, 0.16);
}
.button:hover { opacity: 0.94; }

.button--ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.button--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.button--premium {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 0.98rem;
}

.marketing-body--premium-white,
.marketing-body--premium-white body {
  background: #fff;
}
.marketing-body--premium-white {
  overflow-x: hidden;
  background: #fff;
  color: #222;
}
.marketing-topbar {
  display: grid;
  grid-template-columns: minmax(260px, 640px) 1fr;
  align-items: stretch;
  width: min(1340px, 100%);
  margin: 0 auto;
  background: #fff;
}
.marketing-topbar__brand {
  display: flex;
  align-items: center;
  background: var(--brand);
  padding: 20px 26px;
}
.marketing-brand--premium {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marketing-brand__name {
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
}
.marketing-topbar__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  background: #2d2d2d;
  padding: 0 28px;
}
.marketing-topbar__nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.marketing-topbar__nav a.is-active {
  color: var(--brand);
}
.marketing-topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
}
.marketing-topbar__cta:hover {
  color: #fff;
}

.premium-hero {
  position: relative;
  width: min(1340px, calc(100% - 20px));
  min-height: 540px;
  margin: 0 auto;
}
.premium-hero__media,
.premium-hero__media img {
  width: 100%;
  height: 100%;
}
.premium-hero__media {
  position: absolute;
  inset: 0;
}
.premium-hero__media img {
  display: block;
  object-fit: cover;
}
.premium-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}
.premium-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}
.premium-hero__eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.premium-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}
.premium-hero__copy {
  max-width: 860px;
  margin: 28px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}
.premium-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.premium-message-strip {
  width: 100%;
  background: #fff;
}
.premium-message-strip__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 42px;
  text-align: center;
}
.premium-message-strip__inner h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.premium-message-strip__inner p {
  margin: 18px auto 0;
  padding: 18px 20px;
  max-width: 1160px;
  background: #9f9f9f;
  color: #fff;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
}

.section-kicker--premium {
  color: var(--brand);
}
.section-kicker--light {
  color: rgba(255, 255, 255, 0.82);
}

.premium-content,
.premium-highlight,
.premium-steps,
.premium-cta,
.premium-footer {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}
.premium-content {
  padding: 56px 0;
}
.premium-content__intro {
  max-width: 820px;
}
.premium-content__intro h2,
.premium-highlight__content h2,
.premium-steps__header h2,
.premium-cta__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}
.premium-content__intro p,
.premium-highlight__content p,
.premium-step p,
.premium-feature p,
.premium-cta__content p {
  color: #555;
  font-size: 1.08rem;
  line-height: 1.7;
}
.premium-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.premium-feature {
  padding: 28px 26px;
  border-top: 4px solid var(--brand);
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}
.premium-feature h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: #1f1f1f;
}

.premium-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 0;
  margin-top: 12px;
  background: #2f2f2f;
}
.premium-highlight__content {
  padding: 64px 56px;
}
.premium-highlight__content h2,
.premium-highlight__content p {
  color: #fff;
}
.premium-highlight__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-steps {
  padding: 62px 0;
}
.premium-steps__header {
  max-width: 820px;
}
.premium-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.premium-step {
  padding: 30px 26px;
  border: 1px solid #ececec;
  background: #fff;
}
.premium-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.premium-step h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
  color: #222;
}

.premium-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  padding: 40px 42px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
}
.premium-cta__content {
  max-width: 760px;
}
.premium-cta__content h2,
.premium-cta__content p {
  color: #fff;
}
.premium-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.premium-footer {
  display: grid;
  gap: 16px;
  padding: 0 0 34px;
}
.premium-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #222;
  font-size: 1.15rem;
  font-weight: 800;
}
.premium-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.premium-footer__links a,
.premium-footer__copy {
  color: #666;
}
.premium-footer__links a:hover {
  color: var(--brand);
}
.premium-footer__copy {
  margin: 0;
}

.marketing-body {
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 243, 0.96) 0%, rgba(255, 245, 232, 0.98) 100%);
}
.marketing-body--ads {
  background:
    radial-gradient(circle at top left, rgba(255, 198, 77, 0.16), transparent 28rem),
    linear-gradient(180deg, #fff8f1 0%, #fff4e8 58%, #fff9f4 100%);
}
.marketing-header,
.hero,
.brand-ribbon,
.premium-story,
.feature-band,
.journey-section,
.access-section,
.cta-panel,
.marketing-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.marketing-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(234, 216, 202, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(14px);
}
.marketing-header--ads {
  margin-top: 20px;
}
.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.marketing-brand--ads {
  min-height: 50px;
}
.marketing-brand__logo {
  width: 64px;
  height: auto;
  display: block;
}
.marketing-brand__logo--wordmark {
  width: min(250px, 48vw);
}
.marketing-brand__logo--round {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(255, 92, 0, 0.16);
}
.marketing-brand__text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
}
.marketing-header__cta {
  white-space: nowrap;
}
.marketing-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.marketing-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.marketing-nav a:hover {
  color: var(--brand-dark);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.98fr);
  gap: 38px;
  align-items: center;
  padding: 48px 0 32px;
}
.hero--ads {
  padding-top: 40px;
}
.hero__content--ads {
  max-width: 620px;
}
.hero__eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1,
.section-copy h2,
.journey-section h2,
.audience-panel h2,
.access-section h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  max-width: 10ch;
}
.hero__copy,
.section-copy p,
.journey-card p,
.access-card p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button--hero {
  min-width: 190px;
  min-height: 50px;
}
.hero__trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero__trustbar span,
.journey-card__step,
.access-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.1);
  color: var(--brand-deep);
  border: 1px solid rgba(255, 92, 0, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero__trustbar--ads span {
  background: rgba(255, 92, 0, 0.08);
}
.hero__media {
  position: relative;
}
.hero__media--ads {
  align-self: stretch;
}
.hero-video-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(234, 216, 202, 0.9);
  background: #f7ece2;
  box-shadow: var(--shadow-strong);
}
.hero-video-frame--ads {
  background:
    linear-gradient(180deg, rgba(255, 241, 231, 0.96), rgba(255, 255, 255, 0.92));
}
.hero-video-frame__media,
.premium-story__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-frame__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.34));
}
.hero-video-frame__overlay--ads {
  background:
    linear-gradient(180deg, rgba(255, 92, 0, 0.06), rgba(143, 45, 0, 0.18));
}
.hero-video-frame__card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  width: min(280px, calc(100% - 48px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.16);
}
.hero-video-frame__card--ads {
  background: rgba(255, 248, 243, 0.95);
}
.hero-video-frame__card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.hero-video-frame__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.12);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}
.hero-video-frame__card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.hero-video-frame__card span {
  color: var(--muted);
}
.brand-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 239, 0.92));
  border: 1px solid rgba(234, 216, 202, 0.9);
  box-shadow: var(--shadow);
}
.brand-ribbon--ads {
  margin-top: 6px;
}
.brand-ribbon div,
.feature-band__card,
.journey-card,
.access-card,
.cta-panel,
.premium-story__panel,
.premium-story__accent {
  border: 1px solid rgba(234, 216, 202, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.brand-ribbon div {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.96));
}
.brand-ribbon strong,
.feature-band__card h3,
.journey-card h3,
.access-card strong {
  display: block;
  margin-bottom: 8px;
}
.brand-ribbon span {
  color: var(--muted);
}
.premium-story,
.access-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  padding: 78px 0 26px;
}
.section-copy h2,
.journey-section h2,
.access-section h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.section-copy--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.premium-story__panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 0;
}
.premium-story--ads {
  align-items: center;
}
.premium-story__panel--ads {
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.98), rgba(255, 255, 255, 0.94));
}
.premium-story__accent {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 290px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
}
.premium-story__accent--ads {
  background: rgba(255, 248, 243, 0.96);
}
.premium-story__label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.08);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
}
.premium-story__accent h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.12;
}
.feature-band,
.journey-grid,
.access-grid {
  display: grid;
  gap: 16px;
}
.feature-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 10px 0 26px;
}
.feature-band--ads {
  padding-top: 0;
}
.feature-band__card,
.journey-card {
  padding: 24px;
}
.feature-band__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  font-weight: 800;
}
.journey-section {
  padding: 34px 0 26px;
}
.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}
.journey-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 239, 0.96));
}
.access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.access-card {
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.access-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 92, 0, 0.28);
}
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  margin-bottom: 28px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 92, 0, 0.96), rgba(143, 45, 0, 0.94));
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.cta-panel--ads {
  margin-top: 42px;
}
.cta-panel .section-kicker,
.cta-panel p,
.cta-panel h2 {
  color: #fff;
}
.marketing-footer {
  display: grid;
  gap: 16px;
  padding: 20px 0 34px;
}
.marketing-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.marketing-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.marketing-footer__brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.marketing-footer__brand--ads img {
  width: min(220px, 42vw);
  height: auto;
}
.marketing-footer__brand--ads img[src$=".jpg"] {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
}
.marketing-footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.marketing-footer__brand p,
.marketing-footer__copy {
  margin: 0;
}
.marketing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.marketing-footer__links a,
.marketing-footer__copy {
  color: var(--muted);
}
.marketing-footer__links a:hover {
  color: var(--brand-dark);
}

.landing-body,
.auth-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff7f0 0%, #fff 100%);
}
.landing-shell,
.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.landing-hero,
.auth-card {
  width: min(100%, 760px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.landing-hero { text-align: center; padding: 44px 40px; }
.auth-card { padding: 36px 28px 32px; text-align: center; }
.brand-logo {
  display: block;
  width: min(220px, 58%);
  height: auto;
  margin: 0 0 22px;
}
.brand-logo--hero {
  width: min(280px, 70%);
  margin-inline: auto;
}
.auth-card .brand-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
}
.vatoto-mark {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #ff5c00;
  border: 7px solid #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.vatoto-mark::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 7px;
  width: 18px;
  height: 31px;
  border-right: 6px solid #fff;
  border-bottom: 6px solid #fff;
  transform: rotate(38deg);
  border-radius: 2px;
}
.auth-card .vatoto-mark {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-width: 8px;
}
.auth-card .vatoto-mark::after {
  left: 20px;
  top: 10px;
  width: 22px;
  height: 38px;
  border-right-width: 7px;
  border-bottom-width: 7px;
}
.landing-kicker {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.landing-hero h1,
.auth-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.04;
}
.landing-copy,
.auth-copy,
.auth-note,
.auth-linkline {
  color: var(--muted);
  font-size: 1rem;
}
.auth-form {
  display: grid;
  gap: 14px;
  text-align: left;
}
.auth-form__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
}
.checkbox-row input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.auth-reset {
  border: none;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.input-with-action {
  position: relative;
}
.input-with-action input {
  padding-right: 86px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
}
.message {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(22, 138, 69, 0.12);
  color: var(--success);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.form-status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
}
.form-status--error {
  background: rgba(180, 35, 24, 0.12);
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.18);
}
.form-status--success {
  background: rgba(22, 138, 69, 0.12);
  color: var(--success);
  border-color: rgba(22, 138, 69, 0.18);
}

.site-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.16);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-brand__img,
.site-brand .vatoto-mark {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 999px;
  padding: 0;
}
.site-brand strong,
.site-brand span {
  display: block;
}
.site-brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}
.site-brand span {
  color: rgba(255,255,255,0.84);
  font-size: 0.84rem;
}
.portal-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-menu {
  position: relative;
}
.profile-menu summary {
  list-style: none;
}
.profile-menu summary::-webkit-details-marker {
  display: none;
}
.avatar-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}
.avatar-trigger__img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.avatar-trigger .vatoto-mark {
  width: 48px;
  height: 48px;
  border-width: 0;
  box-shadow: none;
}
.avatar-trigger .vatoto-mark::after {
  left: 15px;
  top: 7px;
  width: 15px;
  height: 27px;
  border-right-width: 5px;
  border-bottom-width: 5px;
}
.profile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(29, 24, 18, 0.18);
  display: grid;
  gap: 8px;
}
.profile-menu__item {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
}
.profile-menu__item:hover { background: var(--surface-soft); }
.profile-menu__item--danger { color: var(--danger); }

.portal-shell { padding: 20px; }
.portal-grid {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 20px;
  align-items: start;
}
.sidebar,
.panel,
.metric-card,
.class-card,
.course-card,
.session-card,
.request-card,
.notification-card,
.announcement-card,
.program-card,
.sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.sidebar {
  position: sticky;
  top: 86px;
  padding: 18px;
}
.sidebar-welcome {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 92, 0, 0.16);
  border-radius: 18px;
  padding: 16px;
}
.sidebar-section { margin-top: 18px; }
.sidebar-title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.nav-list,
.sidebar-list,
.notice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  text-align: left;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
}
.nav-item:hover { background: rgba(255, 92, 0, 0.08); }
.nav-item.is-active {
  background: rgba(255, 92, 0, 0.14);
  border-color: rgba(255, 92, 0, 0.22);
}
.portal-main { min-width: 0; }
.portal-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.portal-header h1 {
  margin: 0;
  font-size: 2rem;
}
.panel { padding: 20px; }
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.panel-header h3,
.card-title { margin: 0; }
.metrics-grid,
.inline-actions,
.detail-grid,
.form-grid,
.content-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.content-stack {
  display: grid;
  gap: 18px;
}
.metric-card,
.class-card,
.course-card,
.session-card,
.request-card,
.notification-card,
.announcement-card,
.program-card {
  flex: 1 1 280px;
  padding: 18px;
}
.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.95rem;
}
.class-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}
.class-card--schedule {
  display: grid;
  gap: 14px;
  padding: 18px;
  align-content: start;
}
.class-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}
.class-card__session {
  margin-top: 4px;
}
.class-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.class-card__meta strong,
.class-card__meta span {
  display: block;
}
.class-card__meta strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 4px;
}
.class-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
.status-badge--success {
  color: var(--success);
  background: rgba(22, 138, 69, 0.12);
  border-color: rgba(22, 138, 69, 0.2);
}
.status-badge--warning {
  color: var(--warning);
  background: rgba(199, 106, 0, 0.12);
  border-color: rgba(199, 106, 0, 0.2);
}
.status-badge--danger {
  color: var(--danger);
  background: rgba(180, 35, 24, 0.12);
  border-color: rgba(180, 35, 24, 0.2);
}
.form-grid > div,
.detail-grid > div {
  flex: 1 1 240px;
}
.form-grid .full {
  flex-basis: 100%;
}
.data-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  background: var(--surface-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table tbody tr:hover { background: rgba(255, 92, 0, 0.04); }
.role-chip,
.count-chip,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(255,92,0,0.14);
  font-size: 0.78rem;
  font-weight: 700;
}
.notice-strip {
  padding: 14px 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.notice-strip--success {
  background: rgba(22, 138, 69, 0.12);
  border-color: rgba(22, 138, 69, 0.18);
  color: var(--success);
  font-weight: 800;
}
.account-panels {
  display: grid;
  gap: 18px;
}
.scheduler-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.scheduler-column {
  min-width: 0;
}
.scheduler-column {
  display: grid;
  gap: 20px;
  min-width: 0;
}
.board-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.board-toolbar--split {
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(160px, 0.8fr));
  align-items: end;
}
.board-toolbar__search {
  min-width: 0;
}
.scroll-panel {
  max-height: 340px;
  overflow: auto;
  padding-right: 6px;
}
.scroll-panel--tall {
  max-height: 540px;
}
.scroll-panel--requests {
  max-height: 220px;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inline-actions .button {
  min-width: 88px;
}
.scheduler-column .form-grid > div {
  flex: 1 1 180px;
}
.scheduler-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.scheduler-form-grid > div {
  min-width: 0;
}
.scheduler-form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .marketing-topbar,
  .premium-content__grid,
  .premium-highlight,
  .premium-steps__grid,
  .premium-cta {
    grid-template-columns: 1fr;
  }
  .premium-cta {
    display: grid;
  }
  .portal-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero,
  .premium-story,
  .access-section,
  .journey-grid,
  .access-grid,
  .feature-band,
  .brand-ribbon {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  .scheduler-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .marketing-topbar {
    grid-template-columns: 1fr;
  }
  .marketing-topbar__brand,
  .marketing-topbar__nav {
    justify-content: center;
  }
  .marketing-topbar__nav {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px;
  }
  .marketing-brand__name {
    font-size: 1.6rem;
  }
  .premium-hero,
  .premium-hero__content {
    min-height: 480px;
  }
  .premium-highlight__content,
  .premium-cta {
    padding: 30px 22px;
  }
  .premium-message-strip__inner {
    padding-top: 44px;
  }
  .marketing-header {
    position: static;
    border-radius: 26px;
    padding: 16px;
  }
  .marketing-header--ads {
    gap: 14px;
  }
  .marketing-nav {
    justify-content: flex-start;
  }
  .hero {
    padding-top: 30px;
  }
  .hero__media,
  .premium-story__panel {
    min-height: auto;
  }
  .hero-video-frame {
    min-height: 420px;
  }
  .site-topbar,
  .portal-header,
  .panel-header,
  .auth-form__meta {
    flex-direction: column;
    align-items: stretch;
  }
  .portal-shell,
  .landing-shell,
  .auth-shell { padding: 14px; }
  .landing-hero,
  .auth-card,
  .panel,
  .sidebar { padding: 18px; }
  .auth-card .brand-logo {
    width: 76px;
    height: 76px;
  }
  .site-brand__img {
    width: 48px;
    height: 48px;
  }
  .portal-toolbar,
  .button { width: 100%; }
  .profile-menu__panel {
    right: auto;
    left: 0;
    min-width: 100%;
  }
  .marketing-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .marketing-header__cta,
  .marketing-brand__logo--wordmark {
    width: 100%;
  }
  .marketing-brand__logo--round {
    width: 68px;
    height: 68px;
  }
  .hero__actions,
  .cta-panel__actions {
    width: 100%;
  }
  .board-toolbar--split {
    grid-template-columns: 1fr;
  }
  .class-card__meta,
  .scheduler-form-grid {
    grid-template-columns: 1fr;
  }
}


.profile-image-block {
  margin-bottom: 6px;
}
.profile-image-editor {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}
.profile-image-preview {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}
.vatoto-mark--preview {
  width: 96px;
  height: 96px;
  border-width: 9px;
}
.vatoto-mark--preview::after {
  left: 29px;
  top: 14px;
  width: 27px;
  height: 51px;
  border-right-width: 9px;
  border-bottom-width: 9px;
}
.profile-image-fields {
  flex: 1;
}
.profile-image-fields input[type="file"] {
  padding: 10px;
  background: #fff;
}





.class-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
  justify-content: start;
}
.class-card--schedule {
  min-height: 340px;
  grid-template-rows: auto auto 1fr auto;
}
.class-card__actions {
  margin-top: auto;
}
.course-cards-grid,
.session-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 280px));
  gap: 16px;
  justify-content: start;
}
.course-card--select,
.session-tile {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
  padding: 18px;
  text-align: left;
}
.course-card__eyebrow,
.session-chip,
.session-moral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255,92,0,0.14);
  background: var(--surface-soft);
}
.course-card__meta,
.session-tile__top,
.session-tile__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.course-card__stats {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255,92,0,0.14);
  border-radius: 8px;
  background: var(--surface-soft);
  font-size: 0.88rem;
}
.course-card__stats span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.course-card__link {
  color: var(--brand);
  font-weight: 700;
}
.row-action-menu {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 250px;
}
.row-action-menu select {
  min-width: 0;
}
.row-action-menu .button {
  white-space: nowrap;
}
.course-card--promo {
  border-style: dashed;
  background: linear-gradient(180deg, #fff 0%, #fff4ec 100%);
}
.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 1000;
}
.dialog-card {
  width: min(720px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 24px;
  display: grid;
  gap: 18px;
}
.dialog-card--notice {
  width: min(520px, 100%);
}
.dialog-header,
.dialog-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.dialog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.dialog-grid .full {
  grid-column: 1 / -1;
}
.dialog-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .class-cards-grid,
  .course-cards-grid,
  .session-tiles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 760px) {
  .class-cards-grid,
  .course-cards-grid,
  .session-tiles-grid,
  .dialog-grid {
    grid-template-columns: 1fr;
  }
  .class-card--schedule,
  .course-card--select,
  .session-tile {
    min-height: auto;
  }
  .dialog-header,
  .dialog-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.vatoto-landing {
  background: #fff;
  color: #1f1f1f;
}
.vatoto-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
}
.vatoto-header__bar {
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  align-items: stretch;
  width: min(1360px, 100%);
  margin: 0 auto;
}
.vatoto-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: var(--brand);
}
.vatoto-logo img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
}
.vatoto-logo strong,
.vatoto-logo small {
  display: block;
  color: #fff;
}
.vatoto-logo strong {
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  line-height: 1;
}
.vatoto-logo small {
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
}
.vatoto-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 0 28px;
  background: #2d2d2d;
  width: 100%;
}
.vatoto-nav a {
  color: #fff;
  font-weight: 700;
}
.vatoto-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  margin-left: 0;
}
.vatoto-menu-toggle {
  display: none;
  align-self: center;
  justify-self: end;
  margin-right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.vatoto-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #1f1f1f;
}

.vatoto-hero {
  position: relative;
  width: min(1360px, 100%);
  margin: 0 auto;
  min-height: 640px;
  overflow: hidden;
  background: #1f1f1f;
}
.vatoto-hero__side {
  position: static;
  min-width: 0;
  order: 2;
  min-height: 640px;
  z-index: 2;
}
.vatoto-hero__media,
.vatoto-hero__media img {
  width: 100%;
  height: 100%;
}
.vatoto-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  min-height: 100%;
  border-radius: 0;
  background: #f3f3f3;
  box-shadow: none;
  z-index: 0;
}
.vatoto-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center center;
}
.vatoto-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 23, 20, 0.72) 0%, rgba(29, 23, 20, 0.48) 34%, rgba(29, 23, 20, 0.22) 64%, rgba(29, 23, 20, 0.08) 100%);
}
.vatoto-hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 22px 18px 0;
  min-height: 640px;
}
.vatoto-form-card {
  align-self: start;
}
.vatoto-hero__content {
  position: absolute;
  right: 34px;
  top: 168px;
  z-index: 2;
  width: min(430px, calc(100% - 520px));
  max-width: 430px;
  min-height: auto;
  margin: 0;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 24px;
  background: linear-gradient(270deg, rgba(28, 24, 21, 0.46) 0%, rgba(28, 24, 21, 0.18) 58%, rgba(28, 24, 21, 0.02) 100%);
  box-shadow: none;
  color: #fff;
  align-items: flex-end;
  text-align: right;
}
.vatoto-hero__content > * {
  max-width: 100%;
}
.vatoto-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vatoto-kicker--light {
  color: rgba(255, 255, 255, 0.76);
}
.vatoto-kicker--form {
  color: var(--brand);
}
.vatoto-hero__content h1 {
  margin: 0;
  max-width: 8.5ch;
  font-size: clamp(2.5rem, 3.7vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
}
.vatoto-hero__copy {
  max-width: 100%;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  line-height: 1.46;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.38);
}
.vatoto-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.vatoto-button {
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 0.98rem;
}
.vatoto-button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
}
.vatoto-button--full {
  width: 100%;
}
.vatoto-hero__trust,
.vatoto-hero__microcopy {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.36);
}
.vatoto-hero__trust {
  font-weight: 700;
  font-size: 0.92rem;
}
.vatoto-hero__microcopy {
  max-width: 100%;
  font-size: 0.84rem;
}

.vatoto-form-card {
  width: 100%;
  padding: 20px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
}
.vatoto-form-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.08;
}
.vatoto-form-card__top p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}
.vatoto-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.vatoto-hero__inner > .vatoto-form-card {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: min(452px, calc(40% - 16px));
  max-width: 452px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
}
.vatoto-hero__side .vatoto-hero__content {
  right: 34px;
  top: 168px;
  bottom: auto;
  width: min(430px, calc(100% - 520px));
  max-width: 430px;
  padding: 22px 22px 18px;
  align-items: flex-end;
  text-align: right;
}
.vatoto-hero__side .vatoto-kicker {
  margin-bottom: 10px;
}
.vatoto-hero__side .vatoto-hero__content h1 {
  max-width: 8.5ch;
  font-size: clamp(2.5rem, 3.7vw, 3.55rem);
}
.vatoto-hero__side .vatoto-hero__copy,
.vatoto-hero__side .vatoto-hero__trust,
.vatoto-hero__side .vatoto-hero__microcopy {
  max-width: 100%;
}
.vatoto-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}
.vatoto-form__split--contact {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.vatoto-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #1f1f1f;
}
.vatoto-field input,
.vatoto-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  background: #fff;
  padding: 10px 12px;
}
.vatoto-phone {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 10px;
}
.vatoto-field input[type="email"],
.vatoto-field input[type="tel"] {
  min-width: 0;
}
.vatoto-form__submit {
  width: 100%;
}
.vatoto-form__microcopy,
.vatoto-form__success {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.vatoto-form__success {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 138, 69, 0.08);
  border: 1px solid rgba(22, 138, 69, 0.18);
  color: var(--success);
}
.vatoto-form__success strong {
  font-size: 1rem;
}
.vatoto-form__success p {
  margin: 0;
  color: inherit;
  line-height: 1.5;
}
.vatoto-form__success a {
  color: inherit;
  font-weight: 800;
}

.vatoto-section,
.vatoto-trust-strip,
.vatoto-final-cta,
.vatoto-footer {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}
.vatoto-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 32px 0 18px;
}
.vatoto-trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid #ededed;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.04);
}
.vatoto-trust-item__icon {
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
}
.vatoto-trust-item strong {
  display: block;
  margin-bottom: 6px;
}
.vatoto-trust-item p,
.vatoto-benefit-card p,
.vatoto-course-card p,
.vatoto-step-card p,
.vatoto-age-card p,
.vatoto-pricing__copy p,
.vatoto-faq p,
.vatoto-final-cta__content p,
.vatoto-footer p {
  margin: 0;
  color: #5d5d5d;
  line-height: 1.65;
}

.vatoto-section {
  padding: 58px 0;
}
.vatoto-section--soft {
  padding: 58px 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}
.vatoto-section--dark {
  padding: 58px 34px;
  border-radius: 34px;
  background: #262626;
}
.vatoto-section__intro {
  max-width: 840px;
}
.vatoto-section__intro--light h2 {
  color: #fff;
}
.vatoto-section__intro h2,
.vatoto-pricing__copy h2,
.vatoto-final-cta__content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}
.vatoto-benefits,
.vatoto-courses,
.vatoto-steps,
.vatoto-age-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.vatoto-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vatoto-benefit-card,
.vatoto-course-card,
.vatoto-step-card,
.vatoto-age-card,
.vatoto-pricing,
.vatoto-faq {
  border: 1px solid #ededed;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
}
.vatoto-benefit-card,
.vatoto-course-card,
.vatoto-step-card,
.vatoto-age-card,
.vatoto-pricing {
  padding: 26px;
}
.vatoto-benefit-card h3,
.vatoto-course-card h3,
.vatoto-step-card h3,
.vatoto-age-card h3 {
  margin: 0 0 10px;
  color: #1f1f1f;
  font-size: 1.35rem;
}
.vatoto-courses {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.vatoto-course-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.1);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.vatoto-course-card__ages {
  margin-bottom: 14px;
  font-weight: 700;
  color: #1f1f1f;
}
.vatoto-list {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #575757;
  line-height: 1.7;
}
.vatoto-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.vatoto-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.vatoto-age-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vatoto-age-card {
  background: rgba(255, 255, 255, 0.98);
}

.vatoto-pricing {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.vatoto-pricing__copy {
  max-width: 760px;
}
.vatoto-pricing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vatoto-faqs {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.vatoto-faq {
  padding: 0;
  overflow: hidden;
}
.vatoto-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 800;
}
.vatoto-faq summary::-webkit-details-marker {
  display: none;
}
.vatoto-faq p {
  padding: 0 24px 22px;
}

.vatoto-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 40px 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
}
.vatoto-final-cta__content {
  max-width: 760px;
}
.vatoto-final-cta__content h2,
.vatoto-final-cta__content p {
  color: #fff;
}
.vatoto-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vatoto-footer {
  display: grid;
  gap: 18px;
  padding: 0 0 34px;
}
.vatoto-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 26px;
  padding: 28px 0 0;
  border-top: 1px solid #ececec;
}
.vatoto-footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.vatoto-footer__brand img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
}
.vatoto-footer__brand strong {
  display: block;
  margin-bottom: 4px;
  color: #1f1f1f;
  font-size: 1.2rem;
}
.vatoto-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.vatoto-footer__columns h4 {
  margin: 0 0 12px;
  color: #1f1f1f;
}
.vatoto-footer__columns a {
  display: block;
  margin-bottom: 8px;
  color: #666;
}
.vatoto-footer__columns a:hover,
.vatoto-socials a:hover {
  color: var(--brand);
}
.vatoto-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vatoto-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
}
.vatoto-footer__copy {
  margin: 0;
  color: #7a7a7a;
}

@media (max-width: 1180px) {
  .vatoto-trust-strip,
  .vatoto-benefits,
  .vatoto-steps,
  .vatoto-age-grid,
  .vatoto-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vatoto-pricing,
  .vatoto-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 960px) {
  .vatoto-header__bar {
    grid-template-columns: 1fr auto;
    background: #fff;
  }
  .vatoto-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: #2d2d2d;
  }
  .vatoto-nav.is-open {
    display: flex;
  }
  .vatoto-menu-toggle {
    display: block;
  }
  .vatoto-hero__inner,
  .vatoto-courses,
  .vatoto-benefits {
    grid-template-columns: 1fr;
  }
  .vatoto-hero__side {
    order: 2;
    min-height: 420px;
  }
  .vatoto-form-card {
    position: absolute;
    top: 22px;
    left: 18px;
    width: min(420px, calc(48% - 18px));
  }
  .vatoto-hero__inner > .vatoto-form-card {
    top: 16px;
    left: 16px;
    width: min(390px, calc(46% - 16px));
    max-width: 390px;
    padding: 18px 20px;
  }
  .vatoto-hero__media {
    min-height: 420px;
  }
  .vatoto-hero__content {
    right: 18px;
    top: 154px;
    bottom: auto;
    width: min(360px, calc(100% - 430px));
    max-width: 360px;
    min-height: auto;
    padding: 16px 16px 14px;
  }
  .vatoto-hero__side .vatoto-hero__content {
    right: 18px;
    top: 154px;
    width: min(360px, calc(100% - 430px));
    max-width: 360px;
  }
  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 8.2ch;
    font-size: clamp(2.05rem, 3.1vw, 3rem);
  }
  .vatoto-hero__side .vatoto-hero__copy {
    font-size: 0.92rem;
  }
  .vatoto-form__split--contact {
    grid-template-columns: 1fr;
  }
  .vatoto-phone {
    grid-template-columns: 118px minmax(0, 1fr);
  }
  .vatoto-form {
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .vatoto-logo {
    padding: 16px 18px;
  }
  .vatoto-logo strong {
    font-size: 1.4rem;
  }
  .vatoto-logo small {
    display: none;
  }
  .vatoto-hero {
    width: 100%;
  }
  .vatoto-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 12px 0;
    min-height: auto;
  }
  .vatoto-hero__content h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .vatoto-hero__side {
    order: 2;
    min-height: 360px;
    position: relative;
  }
  .vatoto-hero__media {
    min-height: 360px;
    border-radius: 0;
  }
  .vatoto-hero__content {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 360px;
    padding: 20px 20px 22px;
    border-radius: 0;
    background: transparent;
    align-items: flex-start;
    text-align: left;
  }
  .vatoto-form-card,
  .vatoto-section--soft,
  .vatoto-section--dark,
  .vatoto-final-cta {
    border-radius: 24px;
  }
  .vatoto-form-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .vatoto-hero__inner > .vatoto-form-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
  }
  .vatoto-hero__side .vatoto-hero__content {
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .vatoto-form__split,
  .vatoto-phone,
  .vatoto-trust-strip,
  .vatoto-steps,
  .vatoto-age-grid,
  .vatoto-footer__top,
  .vatoto-footer__columns {
    grid-template-columns: 1fr;
  }
  .vatoto-trust-strip,
  .vatoto-section,
  .vatoto-footer {
    width: min(100%, calc(100% - 24px));
  }
  .vatoto-section--soft,
  .vatoto-section--dark {
    padding-inline: 18px;
  }
}

.vatoto-header__bar {
  grid-template-columns: minmax(260px, 520px) minmax(0, 1fr);
}
.vatoto-nav {
  width: 100%;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
}

/* ==========================================================================
   Final hero rebuild
   Keeps the same brand/image/content, but restores a clean premium layout:
   full banner image, full visible form on the left, spacious copy on the right.
   ========================================================================== */
@media (min-width: 761px) {
  .vatoto-hero {
    min-height: 860px;
  }

  .vatoto-hero__media,
  .vatoto-hero__side,
  .vatoto-hero__inner {
    min-height: 860px;
  }

  .vatoto-hero__inner {
    display: grid;
    grid-template-columns: minmax(420px, 468px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    padding: 18px 22px 28px;
  }

  .vatoto-hero__inner > .vatoto-form-card {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: 100%;
    max-width: 468px;
    padding: 20px 24px;
    align-self: start;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22);
  }

  .vatoto-form {
    gap: 10px;
  }

  .vatoto-form__split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .vatoto-form__split--contact {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vatoto-phone {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 10px;
  }

  .vatoto-field input,
  .vatoto-field select {
    min-height: 46px;
    padding: 10px 13px;
  }

  .vatoto-hero__side {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .vatoto-hero__side .vatoto-hero__content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: min(100%, 640px);
    max-width: 640px;
    margin: 0 0 34px;
    padding: 24px 26px 20px;
    border-radius: 24px;
    background: linear-gradient(270deg, rgba(28, 24, 21, 0.34) 0%, rgba(28, 24, 21, 0.14) 58%, rgba(28, 24, 21, 0.03) 100%);
    align-items: flex-start;
    text-align: left;
  }

  .vatoto-hero__side .vatoto-kicker {
    margin: 0 0 12px;
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: 0.11em;
    white-space: normal;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 0.96;
    margin: 0;
  }

  .vatoto-hero__side .vatoto-hero__copy {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.55;
  }

  .vatoto-hero__side .vatoto-hero__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
  }

  .vatoto-hero__side .vatoto-button {
    min-height: 50px;
    padding-inline: 20px;
    white-space: nowrap;
  }

  .vatoto-hero__side .vatoto-hero__trust {
    margin-top: 14px;
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .vatoto-hero__side .vatoto-hero__microcopy {
    margin-top: 8px;
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .vatoto-hero,
  .vatoto-hero__media,
  .vatoto-hero__side,
  .vatoto-hero__inner {
    min-height: 780px;
  }

  .vatoto-hero__inner {
    grid-template-columns: minmax(360px, 400px) minmax(0, 1fr);
    gap: 26px;
    padding: 16px 16px 22px;
  }

  .vatoto-hero__inner > .vatoto-form-card {
    max-width: 400px;
    padding: 18px 20px;
  }

  .vatoto-hero__side .vatoto-hero__content {
    width: min(100%, 500px);
    max-width: 500px;
    margin-bottom: 22px;
    padding: 18px 18px 16px;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 3.3vw, 3.5rem);
  }

  .vatoto-hero__side .vatoto-hero__copy {
    font-size: 0.95rem;
  }

  .vatoto-hero__side .vatoto-button {
    min-height: 46px;
    padding-inline: 16px;
  }
}

@media (max-width: 760px) {
  .vatoto-hero,
  .vatoto-hero__media,
  .vatoto-hero__side,
  .vatoto-hero__inner {
    min-height: 360px;
  }

  .vatoto-form__split--contact {
    grid-template-columns: 1fr;
  }

  .vatoto-phone {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .vatoto-hero__side .vatoto-hero__content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px 20px 22px;
    background: transparent;
    align-items: flex-start;
    text-align: left;
  }

  .vatoto-hero__side .vatoto-kicker {
    white-space: normal;
  }

  .vatoto-hero__side .vatoto-hero__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Hero hard reset
   This block intentionally overrides the accumulated hero patches above.
   Desktop: stable 2-column layout with a fully visible form and readable copy.
   ========================================================================== */
@media (min-width: 761px) {
  .vatoto-hero {
    min-height: 940px !important;
    overflow: hidden;
  }

  .vatoto-hero__media,
  .vatoto-hero__side,
  .vatoto-hero__inner {
    min-height: 940px !important;
  }

  .vatoto-hero__inner {
    display: grid !important;
    grid-template-columns: 460px minmax(0, 1fr) !important;
    gap: 42px !important;
    align-items: start !important;
    padding: 18px 22px 32px !important;
    position: relative;
    z-index: 2;
  }

  .vatoto-hero__inner > .vatoto-form-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 3 !important;
    width: 460px !important;
    max-width: 460px !important;
    min-height: 0 !important;
    padding: 22px 24px !important;
    margin: 0 !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22) !important;
    overflow: visible !important;
  }

  .vatoto-form-card h2 {
    max-width: none !important;
    font-size: clamp(1.95rem, 2.6vw, 2.65rem) !important;
    line-height: 1.08 !important;
  }

  .vatoto-form {
    display: grid !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .vatoto-form__split {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
  }

  .vatoto-form__split--contact {
    grid-template-columns: 1fr !important;
  }

  .vatoto-phone {
    display: grid !important;
    grid-template-columns: 128px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .vatoto-field input,
  .vatoto-field select {
    width: 100% !important;
    min-height: 46px !important;
    padding: 10px 13px !important;
  }

  .vatoto-field input[type="email"],
  .vatoto-field input[type="tel"] {
    min-width: 0 !important;
  }

  .vatoto-form__submit {
    width: 100% !important;
  }

  .vatoto-hero__side {
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    z-index: 2 !important;
  }

  .vatoto-hero__side .vatoto-hero__content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    margin: 0 0 42px 0 !important;
    padding: 24px 26px 20px !important;
    border-radius: 24px !important;
    background: linear-gradient(270deg, rgba(28, 24, 21, 0.32) 0%, rgba(28, 24, 21, 0.12) 58%, rgba(28, 24, 21, 0.03) 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    z-index: 2 !important;
  }

  .vatoto-hero__side .vatoto-kicker {
    margin: 0 0 12px !important;
    max-width: 100% !important;
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.11em !important;
    white-space: normal !important;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 11ch !important;
    margin: 0 !important;
    font-size: clamp(3rem, 4vw, 4.35rem) !important;
    line-height: 0.96 !important;
  }

  .vatoto-hero__side .vatoto-hero__copy {
    max-width: 100% !important;
    margin-top: 16px !important;
    font-size: clamp(1rem, 1.15vw, 1.08rem) !important;
    line-height: 1.55 !important;
  }

  .vatoto-hero__side .vatoto-hero__actions {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 18px !important;
  }

  .vatoto-hero__side .vatoto-button {
    min-height: 50px !important;
    padding-inline: 20px !important;
    white-space: nowrap !important;
  }

  .vatoto-hero__side .vatoto-hero__trust {
    margin-top: 14px !important;
    max-width: 100% !important;
    font-size: 0.94rem !important;
    line-height: 1.45 !important;
  }

  .vatoto-hero__side .vatoto-hero__microcopy {
    margin-top: 8px !important;
    max-width: 100% !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .vatoto-hero,
  .vatoto-hero__media,
  .vatoto-hero__side,
  .vatoto-hero__inner {
    min-height: 820px !important;
  }

  .vatoto-hero__inner {
    grid-template-columns: 392px minmax(0, 1fr) !important;
    gap: 26px !important;
    padding: 16px 16px 24px !important;
  }

  .vatoto-hero__inner > .vatoto-form-card {
    width: 392px !important;
    max-width: 392px !important;
    padding: 18px 20px !important;
  }

  .vatoto-form-card h2 {
    font-size: clamp(1.8rem, 2.3vw, 2.2rem) !important;
  }

  .vatoto-hero__side .vatoto-hero__content {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    margin-bottom: 24px !important;
    padding: 18px 18px 16px !important;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 10.5ch !important;
    font-size: clamp(2.35rem, 3.2vw, 3.35rem) !important;
  }

  .vatoto-hero__side .vatoto-hero__copy {
    font-size: 0.95rem !important;
  }

  .vatoto-hero__side .vatoto-button {
    min-height: 46px !important;
    padding-inline: 16px !important;
  }
}

/* Final hero overrides */
.vatoto-hero__inner > .vatoto-form-card {
  top: 18px;
  left: 18px;
  width: min(468px, calc(41% - 18px));
  max-width: 468px;
  padding: 20px 24px;
}

.vatoto-form__split--contact {
  grid-template-columns: 1fr;
  gap: 10px;
}

.vatoto-phone {
  grid-template-columns: 126px minmax(0, 1fr);
}

.vatoto-hero__side .vatoto-hero__content {
  right: 28px;
  top: 128px;
  bottom: auto;
  width: min(468px, calc(100% - 560px));
  max-width: 468px;
  padding: 18px 20px 16px;
  border-radius: 22px;
  background: linear-gradient(270deg, rgba(28, 24, 21, 0.44) 0%, rgba(28, 24, 21, 0.18) 58%, rgba(28, 24, 21, 0.03) 100%);
  align-items: flex-end;
  text-align: right;
}

.vatoto-hero__side .vatoto-kicker {
  margin: 0 0 10px;
  max-width: none;
  font-size: 0.76rem;
  line-height: 1.35;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.vatoto-hero__side .vatoto-hero__content h1 {
  max-width: 8.8ch;
  font-size: clamp(2.25rem, 3.25vw, 3.2rem);
  line-height: 0.98;
}

.vatoto-hero__side .vatoto-hero__copy {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.46;
}

.vatoto-hero__side .vatoto-hero__actions {
  margin-top: 16px;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.vatoto-hero__side .vatoto-button {
  min-height: 46px;
  padding-inline: 16px;
  white-space: nowrap;
}

.vatoto-hero__side .vatoto-hero__trust {
  margin-top: 12px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.vatoto-hero__side .vatoto-hero__microcopy {
  margin-top: 8px;
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .vatoto-hero__inner > .vatoto-form-card {
    width: min(392px, calc(44% - 18px));
    max-width: 392px;
    padding: 18px 20px;
  }

  .vatoto-phone {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .vatoto-hero__side .vatoto-hero__content {
    right: 18px;
    top: 118px;
    width: min(352px, calc(100% - 430px));
    max-width: 352px;
    padding: 16px 16px 14px;
  }

  .vatoto-hero__side .vatoto-kicker {
    font-size: 0.68rem;
    white-space: normal;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 8.4ch;
    font-size: clamp(1.95rem, 2.9vw, 2.7rem);
  }

  .vatoto-hero__side .vatoto-hero__copy {
    font-size: 0.88rem;
  }

  .vatoto-hero__side .vatoto-button {
    min-height: 42px;
    padding-inline: 12px;
  }
}

@media (max-width: 760px) {
  .vatoto-form__split--contact {
    grid-template-columns: 1fr;
  }

  .vatoto-hero__side .vatoto-hero__content {
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    padding: 20px 20px 22px;
    background: transparent;
    align-items: flex-start;
    text-align: left;
  }

  .vatoto-hero__side .vatoto-kicker {
    white-space: normal;
    font-size: 0.76rem;
  }

  .vatoto-hero__side .vatoto-hero__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Final pass: keep the full form visible and let the hero copy use the full
   lower-right space instead of compressing into the corner. */
.vatoto-hero,
.vatoto-hero__inner,
.vatoto-hero__side {
  min-height: 860px;
}

.vatoto-hero__media {
  min-height: 860px;
}

.vatoto-hero__inner > .vatoto-form-card {
  top: 18px;
  left: 18px;
  width: min(468px, calc(41% - 18px));
  max-width: 468px;
}

.vatoto-hero__side .vatoto-hero__content {
  left: clamp(360px, 33vw, 430px);
  right: 28px;
  top: auto;
  bottom: 34px;
  width: auto;
  max-width: none;
  padding: 18px 20px 16px;
  border-radius: 18px;
  background: linear-gradient(270deg, rgba(28, 24, 21, 0.28) 0%, rgba(28, 24, 21, 0.12) 56%, rgba(28, 24, 21, 0.02) 100%);
  align-items: flex-start;
  text-align: left;
}

.vatoto-hero__side .vatoto-kicker {
  white-space: normal;
  max-width: 100%;
  font-size: 0.78rem;
  line-height: 1.35;
}

.vatoto-hero__side .vatoto-hero__content h1 {
  max-width: 11.5ch;
  font-size: clamp(2.55rem, 3.5vw, 3.7rem);
  line-height: 0.98;
}

.vatoto-hero__side .vatoto-hero__copy {
  max-width: 100%;
  font-size: 0.97rem;
  line-height: 1.5;
}

.vatoto-hero__side .vatoto-hero__actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.vatoto-hero__side .vatoto-hero__trust,
.vatoto-hero__side .vatoto-hero__microcopy {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .vatoto-hero,
  .vatoto-hero__inner,
  .vatoto-hero__side,
  .vatoto-hero__media {
    min-height: 780px;
  }

  .vatoto-hero__inner > .vatoto-form-card {
    width: min(400px, calc(45% - 18px));
    max-width: 400px;
  }

  .vatoto-hero__side .vatoto-hero__content {
    left: clamp(300px, 32vw, 360px);
    right: 18px;
    bottom: 22px;
    padding: 14px 16px 12px;
  }

  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 10.5ch;
    font-size: clamp(2.2rem, 3vw, 3rem);
  }
}

@media (max-width: 760px) {
  .vatoto-hero,
  .vatoto-hero__inner,
  .vatoto-hero__side,
  .vatoto-hero__media {
    min-height: 360px;
  }
}

/* Lock the right hero copy so it never slips under the left form card. */
.vatoto-hero__side .vatoto-hero__content {
  left: 540px;
  right: 28px;
  bottom: 34px;
}

@media (max-width: 1200px) {
  .vatoto-hero__side .vatoto-hero__content {
    left: 500px;
    right: 22px;
  }
}

@media (max-width: 1100px) {
  .vatoto-hero__side .vatoto-hero__content {
    left: 430px;
    right: 18px;
  }
}

@media (max-width: 760px) {
  .vatoto-hero__side .vatoto-hero__content {
    left: auto;
    right: auto;
  }
}
.vatoto-form-card h2 {
  max-width: 12ch;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ==========================================================================
   Restore point: state matching the earlier "Fixed all three issues" checkpoint.
   Hero returns to text-left / form-right with the improved readable form fields.
   ========================================================================== */
@media (min-width: 761px) {
  .vatoto-hero,
  .vatoto-hero__inner,
  .vatoto-hero__side,
  .vatoto-hero__media {
    min-height: 700px !important;
  }

  .vatoto-hero__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px) !important;
    gap: 22px !important;
    align-items: stretch !important;
    padding: 22px 18px 0 !important;
  }

  .vatoto-hero__side {
    position: relative !important;
    order: 1 !important;
    min-width: 0 !important;
    min-height: 640px !important;
    z-index: 2 !important;
  }

  .vatoto-hero__media {
    position: absolute !important;
    inset: 0 !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    z-index: 0 !important;
  }

  .vatoto-hero__content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 640px !important;
    margin: 0 !important;
    padding: 44px 28px 34px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
  }

  .vatoto-hero__content > * {
    max-width: min(620px, 100%) !important;
  }

  .vatoto-hero__content h1,
  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 8ch !important;
    margin: 0 !important;
    font-size: clamp(3.2rem, 5.5vw, 5.2rem) !important;
    line-height: 0.94 !important;
  }

  .vatoto-hero__copy,
  .vatoto-hero__side .vatoto-hero__copy {
    max-width: 620px !important;
    margin: 16px 0 0 !important;
    font-size: clamp(1rem, 1.6vw, 1.14rem) !important;
    line-height: 1.55 !important;
  }

  .vatoto-hero__actions,
  .vatoto-hero__side .vatoto-hero__actions {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .vatoto-hero__trust,
  .vatoto-hero__microcopy,
  .vatoto-hero__side .vatoto-hero__trust,
  .vatoto-hero__side .vatoto-hero__microcopy {
    max-width: 520px !important;
    margin: 14px 0 0 !important;
    text-align: left !important;
  }

  .vatoto-form-card,
  .vatoto-hero__inner > .vatoto-form-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    order: 2 !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 432px !important;
    align-self: start !important;
    padding: 20px 24px !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22) !important;
    overflow: visible !important;
  }

  .vatoto-form-card h2 {
    max-width: 12ch !important;
    font-size: clamp(1.7rem, 3vw, 2.3rem) !important;
    line-height: 1.08 !important;
  }

  .vatoto-form {
    display: grid !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .vatoto-form__split {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
  }

  .vatoto-form__split--contact {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
  }

  .vatoto-phone {
    display: grid !important;
    grid-template-columns: 138px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .vatoto-field input,
  .vatoto-field select {
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .vatoto-field input[type="email"],
  .vatoto-field input[type="tel"] {
    min-width: 0 !important;
  }
}

@media (max-width: 760px) {
  .vatoto-hero__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 18px 12px 0 !important;
    min-height: auto !important;
  }

  .vatoto-form-card,
  .vatoto-hero__inner > .vatoto-form-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 2 !important;
  }

  .vatoto-hero__side {
    order: 1 !important;
    min-height: 360px !important;
    position: relative !important;
  }

  .vatoto-hero__content {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 360px !important;
    padding: 20px 20px 22px !important;
    align-items: flex-start !important;
    text-align: left !important;
    background: transparent !important;
  }

  .vatoto-form__split,
  .vatoto-phone {
    grid-template-columns: 1fr !important;
  }
}

/* Small post-restore form tuning */
@media (min-width: 761px) {
  .vatoto-hero,
  .vatoto-hero__inner,
  .vatoto-hero__side,
  .vatoto-hero__media {
    min-height: 720px !important;
  }

  .vatoto-form-card,
  .vatoto-hero__inner > .vatoto-form-card {
    max-width: 432px !important;
  }

  .vatoto-form__split--contact {
    grid-template-columns: 1fr !important;
  }

  .vatoto-phone {
    grid-template-columns: 138px minmax(0, 1fr) !important;
  }

  .vatoto-field input[type="email"],
  .vatoto-field input[type="tel"] {
    min-width: 0 !important;
  }
}

/* Restore the earlier overlay hero layout:
   full background image, left text overlay, right floating form card */
@media (min-width: 761px) {
  .vatoto-hero,
  .vatoto-hero__inner,
  .vatoto-hero__side,
  .vatoto-hero__media {
    min-height: 760px !important;
  }

  .vatoto-hero__inner {
    display: block !important;
    position: relative !important;
    padding: 34px 18px 0 !important;
  }

  .vatoto-hero__side {
    position: relative !important;
    min-height: 760px !important;
  }

  .vatoto-hero__media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }

  .vatoto-hero__content,
  .vatoto-hero__side .vatoto-hero__content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 2 !important;
    width: min(100%, 660px) !important;
    max-width: 660px !important;
    min-height: 760px !important;
    margin: 0 !important;
    padding: 44px 28px 34px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    text-align: left !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .vatoto-hero__content > * {
    max-width: min(620px, 100%) !important;
  }

  .vatoto-hero__content h1,
  .vatoto-hero__side .vatoto-hero__content h1 {
    max-width: 8ch !important;
    font-size: clamp(3.1rem, 5.2vw, 5rem) !important;
    line-height: 0.94 !important;
    margin: 0 !important;
  }

  .vatoto-hero__copy,
  .vatoto-hero__side .vatoto-hero__copy {
    max-width: 620px !important;
    margin: 16px 0 0 !important;
    font-size: clamp(1rem, 1.45vw, 1.12rem) !important;
    line-height: 1.55 !important;
  }

  .vatoto-hero__actions,
  .vatoto-hero__side .vatoto-hero__actions {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 22px !important;
  }

  .vatoto-hero__trust,
  .vatoto-hero__microcopy,
  .vatoto-hero__side .vatoto-hero__trust,
  .vatoto-hero__side .vatoto-hero__microcopy {
    max-width: 520px !important;
    text-align: left !important;
  }

  .vatoto-form-card,
  .vatoto-hero__inner > .vatoto-form-card {
    position: absolute !important;
    top: 34px !important;
    right: 22px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 3 !important;
    width: min(420px, calc(100% - 760px)) !important;
    max-width: 420px !important;
    min-width: 380px !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    border-radius: 28px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.22) !important;
  }

  .vatoto-form__split {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
  }

  .vatoto-form__split--contact {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) !important;
  }

  .vatoto-phone {
    grid-template-columns: 124px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .vatoto-field input[type="email"] {
    padding-right: 14px !important;
  }

  .vatoto-field input[type="tel"],
  .vatoto-field input[type="email"] {
    font-size: 0.96rem !important;
  }
}
.vatoto-trust-item__icon {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--brand);
  flex: 0 0 auto;
}
.vatoto-section__intro h2,
.vatoto-pricing__copy h2,
.vatoto-final-cta__content h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.vatoto-section__intro h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 2px;
}
.vatoto-section__intro h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.28);
}
.vatoto-section__intro--light h2 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.16);
}
.vatoto-courses {
  align-items: stretch;
}
.vatoto-course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vatoto-course-card__top {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 92, 0, 0.12);
}
.vatoto-course-card__top h3 {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-dark);
}
.vatoto-course-card__subtitle {
  margin: 8px 0 0;
  color: #1f1f1f;
  font-weight: 700;
}
.vatoto-list {
  flex: 1;
}
.vatoto-age-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
.vatoto-age-card h3 span {
  color: var(--brand);
}
@media (max-width: 960px) {
  .vatoto-nav {
    justify-content: flex-start;
  }
}

/* Session workspace scaling for large libraries */
.session-workspace {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}
.session-library-panel {
  min-width: 0;
}
.session-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  align-items: stretch;
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding-right: 4px;
}
.session-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 16px;
  overflow: hidden;
}
.session-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.session-card__identity {
  min-width: 0;
  flex: 1 1 auto;
}
.session-card__title {
  display: block;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.session-card__meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}
.session-card__badge {
  min-width: 64px;
  padding: 9px 12px;
  flex: 0 0 auto;
  align-self: flex-start;
  text-align: center;
  border: 1px solid rgba(255,92,0,0.18);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-weight: 800;
}
.session-card__summary {
  margin: 14px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
}
.session-card__summary--empty {
  color: var(--muted);
  opacity: 0.8;
}
.session-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  align-items: stretch;
}
.session-card__actions .button {
  flex: 1 1 132px;
}
.session-workspace__preview {
  min-width: 0;
}
.session-preview-panel {
  position: sticky;
  top: 96px;
}
.session-preview-panel .embed-frame {
  width: 100%;
  display: block;
  margin-top: 0;
  aspect-ratio: 16 / 10;
  min-height: 360px;
  max-height: calc(100vh - 220px);
  background: #111;
}
.session-preview-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border: 1px dashed rgba(255, 92, 0, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf4ef 100%);
  color: var(--muted);
}
@media (max-width: 1180px) {
  .session-workspace {
    grid-template-columns: 1fr;
  }
  .session-library-grid {
    max-height: none;
    overflow: visible;
  }
  .session-preview-panel {
    position: static;
  }
}
@media (max-width: 760px) {
  .session-library-grid {
    grid-template-columns: 1fr;
  }
  .session-card__head {
    flex-direction: column;
  }
  .session-card__badge {
    min-width: 0;
  }
}

/* Preview teaching controls */
.session-preview-panel__toolbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.session-preview-panel:fullscreen {
  background: #111;
  padding: 20px;
  border-radius: 0;
}
.session-preview-panel:fullscreen .panel-header {
  color: #fff;
}
.session-preview-panel:fullscreen .muted {
  color: rgba(255, 255, 255, 0.78);
}
.session-preview-panel:fullscreen .embed-frame {
  min-height: calc(100vh - 120px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Session library filtering */
.session-library-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.session-library-controls > div {
  min-width: 0;
}
.session-library-controls label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .session-library-controls {
    grid-template-columns: 1fr;
  }
}
