/* ===========================================================
   Verged · Webinar landing page
   Adopts the marketing-site UI kit (ui_kits/website)
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--verge-orange); outline-offset: 3px; }

/* ---------- Layout shells ---------- */
.v-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.v-narrow    { max-width: 820px; }

/* ---------- NAV ---------- */
.v-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 30; transition: background 240ms var(--ease), backdrop-filter 240ms var(--ease); }
.v-nav--ghost { background: transparent; }
.v-nav--solid { background: rgba(21,39,63,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.v-nav__inner { max-width: 1280px; margin: 0 auto; padding: 22px 32px; display: flex; align-items: center; gap: 32px; }
.v-nav__logo img { height: 26px; }
.v-nav__links { display: flex; gap: 28px; flex: 1; margin-left: 24px; justify-content: center; }
.v-nav__links a { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.v-nav__links a:hover { color: var(--verge-orange); }
.v-nav__lang { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.v-nav__cta { margin-left: auto; }

/* Dropdown ------------------------------------------------- */
.v-nav__item { position: relative; }
.v-nav__item > a.has-sub::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  margin-left: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .7;
  transition: transform 200ms var(--ease);
}
.v-nav__item:hover > a.has-sub::after { transform: rotate(225deg) translateY(0); }
.v-nav__sub {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  background: rgba(21,39,63,0.97); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 280px; padding: 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.v-nav__item:hover .v-nav__sub,
.v-nav__item:focus-within .v-nav__sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  top: calc(100% + 6px);
}
.v-nav__sub::before {
  content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 18px;
}
.v-nav__sub a {
  display: block; padding: 14px 16px;
  text-transform: none; letter-spacing: 0; font-size: 15px;
  color: rgba(255,255,255,0.92); font-weight: 500;
  border-left: 2px solid transparent;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}
.v-nav__sub a:hover { background: rgba(255,255,255,0.04); border-left-color: var(--verge-orange); color: white; }
.v-nav__sub a .label { display: block; font-weight: 600; }
.v-nav__sub a .hint  { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ---------- Resources hub cards ---------- */
.v-hub { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.v-hub__card {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--verge-stone);
  background: white;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.v-hub__card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(10,19,32,0.10); }
.v-hub__img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.v-hub__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,19,32,0) 60%, rgba(10,19,32,0.4) 100%); }
.v-hub__body { padding: 36px 36px 40px; }
.v-hub__kicker { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--verge-orange); margin-bottom: 16px; }
.v-hub__t { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; color: var(--verge-ink); margin: 0 0 14px; }
.v-hub__d { font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0 0 22px; }
.v-hub__meta { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--fg-2); }
.v-hub__meta li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.v-hub__meta li::before { content: ""; width: 14px; height: 1px; background: var(--verge-orange); margin-top: 11px; }
.v-hub__more { font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--verge-orange); display: inline-flex; align-items: center; gap: 8px; }
.v-hub__card:hover .v-hub__more { color: var(--verge-orange-deep); }

/* ---------- Briefing-card listing (small, dense, dated) ---------- */
.v-briefings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.v-brief { background: white; border: 1px solid var(--verge-stone); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 240ms var(--ease); }
.v-brief:hover { box-shadow: 0 16px 36px rgba(10,19,32,0.08); }
.v-brief__img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.v-brief__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.v-brief__date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--fg-muted); text-transform: uppercase; margin-bottom: 14px; }
.v-brief__t { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.25; letter-spacing: -0.018em; color: var(--verge-ink); margin: 0 0 12px; text-wrap: balance; }
.v-brief__d { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin: 0 0 18px; }
.v-brief__more { margin-top: auto; font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--verge-orange); }

/* ---------- Masterclass row ---------- */
.v-mc-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--verge-stone); }
.v-mc-row { display: grid; grid-template-columns: 140px 1fr 220px auto; gap: 32px; align-items: center; padding: 32px 8px; border-bottom: 1px solid var(--verge-stone); transition: padding-left .2s var(--ease); }
.v-mc-row:hover { padding-left: 20px; background: rgba(236,91,41,0.02); }
.v-mc-row__date { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--verge-orange); font-weight: 600; text-transform: uppercase; }
.v-mc-row__t { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.25; letter-spacing: -0.018em; color: var(--verge-ink); margin: 0 0 6px; }
.v-mc-row__d { font-size: 14px; line-height: 1.5; color: var(--fg-2); margin: 0; }
.v-mc-row__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--fg-muted); text-transform: uppercase; }
.v-mc-row__status { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--verge-orange); color: var(--verge-orange); font-weight: 600; white-space: nowrap; }
.v-mc-row--upcoming { background: linear-gradient(90deg, rgba(236,91,41,0.04), transparent 40%); }

@media (max-width: 900px) {
  .v-hub, .v-briefings { grid-template-columns: 1fr; }
  .v-mc-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .v-mc-row__status { justify-self: start; }
  .v-nav__sub { position: static; transform: none; min-width: 0; opacity: 1; visibility: visible; pointer-events: auto; background: transparent; border: 0; padding: 4px 0 8px 16px; display: none; }
  .v-nav__item:hover .v-nav__sub { transform: none; }
}

/* ---------- BUTTONS ----------
   Canonical button system per design-system Buttons sheet.
   - Plus Jakarta Sans SemiBold 600, uppercase, 0.08em tracking
   - 4px corner radius
   - Primary: Orange Deep fill, Inversion hover
   - Secondary: ghost outline, fills on hover
   - Text link: underline + orange arrow, underline grows on hover
   - Arrow shifts 4px right on hover
   - Focus: single 2px Verged Orange ring at 2px offset (via :focus-visible)
*/
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--verge-ink);
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: none;
  transition:
    background-color 220ms var(--ease),
    border-color    220ms var(--ease),
    color           220ms var(--ease);
}
.v-btn .v-arr {
  display: inline-block;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}
.v-btn:hover .v-arr { transform: translateX(4px); }
.v-btn:focus-visible { outline: 2px solid var(--verge-orange); outline-offset: 2px; }

.v-btn--sm { font-size: 12px; padding: 10px 20px; }
.v-btn--lg { font-size: 16px; padding: 16px 36px; }

/* Primary — Orange Deep fill · Inversion hover */
.v-btn--primary {
  background: #C44516;
  border-color: #C44516;
  color: #FAFAFA;
}
.v-btn--primary .v-arr { color: #FAFAFA; }
.v-btn--primary:hover {
  background: #FAFAFA;
  border-color: #C44516;
  color: #C44516;
}
.v-btn--primary:hover .v-arr { color: #C44516; }

/* Secondary on light surface — ghost, fills navy on hover */
.v-btn--outline {
  background: transparent;
  border: 1px solid var(--verge-ink);
  color: var(--verge-ink);
}
.v-btn--outline:hover {
  background: var(--verge-navy);
  border-color: var(--verge-navy);
  color: #FAFAFA;
}

/* Secondary on dark surface / hero photograph — white ghost, fills white on hover */
.v-btn--outline-light {
  background: transparent;
  border: 1px solid #FAFAFA;
  color: #FAFAFA;
}
.v-btn--outline-light:hover {
  background: #FAFAFA;
  border-color: #FAFAFA;
  color: var(--verge-ink);
}

/* Text link — ink text + orange arrow + ink underline that grows on hover */
.v-btn--text {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  color: var(--verge-ink);
}
.v-btn--text .v-arr { color: var(--verge-orange); }
.v-btn--text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--verge-ink);
  opacity: 0.45;
  transition: opacity 220ms var(--ease), height 220ms var(--ease);
}
.v-btn--text:hover::after { height: 2px; opacity: 1; }

.v-btn--text-light {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  color: #FAFAFA;
}
.v-btn--text-light .v-arr { color: var(--verge-orange); }
.v-btn--text-light::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #FAFAFA;
  opacity: 0.45;
  transition: opacity 220ms var(--ease), height 220ms var(--ease);
}
.v-btn--text-light:hover::after { height: 2px; opacity: 1; }

/* ---------- HERO ---------- */
.v-hero { position: relative; min-height: 92vh; overflow: hidden; color: var(--verge-off-white); text-align: center; }
.v-hero__bg    { position: absolute; inset: 0; background-size: cover; background-position: center; }
.v-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,19,32,0.55) 0%, rgba(10,19,32,0.62) 60%, rgba(10,19,32,0.92) 100%); }
.v-hero__inner { position: relative; min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 140px 32px 120px; }

.v-hero .v-eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.v-hero .v-eyebrow::before,
.v-hero .v-eyebrow::after { content: ""; width: 24px; height: 1px; background: var(--verge-orange); }

.v-display { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 6.2vw, 84px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 28px; max-width: 1100px; color: white; text-wrap: balance; }
.v-display em { font-style: italic; color: var(--verge-orange); }
.v-lede { font-size: 19px; line-height: 1.6; max-width: 720px; color: rgba(255,255,255,0.85); font-weight: 300; margin: 0 0 40px; }

.v-hero__meta { display: flex; flex-wrap: wrap; gap: 0 56px; justify-content: center; margin: 0 0 44px; }
.v-hero__meta .pair { display: flex; flex-direction: column; gap: 6px; text-align: left; padding: 8px 0; }
.v-hero__meta dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0; }
.v-hero__meta dd { margin: 0; font-size: 16px; color: white; font-weight: 500; }

.v-hero__scroll { position: absolute; left: 0; right: 0; bottom: 32px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ---------- SECTIONS ---------- */
.v-section { padding: 120px 0; position: relative; }
.v-section--light { background: #FAFAFA; }
.v-section--stone { background: var(--verge-stone-2); }
.v-section--dark  { background: var(--verge-navy); color: var(--verge-off-white); }
.v-section__head { margin-bottom: 72px; max-width: 880px; }
.v-section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.v-section__cta  { text-align: center; margin-top: 64px; }
.v-rule { width: 40px; height: 2px; background: var(--verge-orange); }
.v-rule--center { margin: 28px auto 0; }
.v-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.18; letter-spacing: -0.02em; margin: 0; color: var(--verge-ink); text-wrap: balance; }
.v-section--dark .v-h2 { color: white; }
.v-prose { font-size: 18px; line-height: 1.75; color: var(--fg-2); text-align: center; max-width: 720px; margin: 0 auto; }
.v-prose p + p { margin-top: 18px; }

/* ---------- PROMISES (plain text-led, like ServiceGrid) ---------- */
.v-promises { display: flex; flex-direction: row; gap: 56px 64px; }
.v-promises > article { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.v-promise__num { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--verge-orange); margin-bottom: 14px; }
.v-promise__t { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.018em; line-height: 1.25; margin: 0 0 14px; color: var(--verge-ink); text-wrap: balance; }
.v-promise__d { font-size: 16px; line-height: 1.7; color: var(--fg-2); margin: 0; }

/* ---------- AGENDA ---------- */
.v-agenda { max-width: 1120px; margin: 0 auto; list-style: none; padding: 0; counter-reset: ag; }
.v-agenda li { counter-increment: ag; display: grid; grid-template-columns: 64px 1fr auto; gap: 32px; align-items: baseline; padding: 28px 8px; border-top: 1px solid var(--verge-stone); }
.v-agenda li:last-child { border-bottom: 1px solid var(--verge-stone); }
.v-agenda li::before { content: counter(ag, decimal-leading-zero); font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--verge-orange); padding-top: 6px; }
.v-agenda .topic { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.3; color: var(--verge-ink); letter-spacing: -0.018em; }
.v-agenda .dur   { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--fg-muted); white-space: nowrap; text-transform: uppercase; }

/* ---------- SPEAKER ---------- */
.v-speaker { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; max-width: 1100px; margin: 0 auto; }
.v-speaker__photo { aspect-ratio: 4/5; background: var(--verge-stone); overflow: hidden; }
.v-speaker__photo img { width: 100%; height: 100%; object-fit: cover; }
.v-speaker__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--verge-orange); margin: 0 0 16px; }
.v-speaker__h { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 24px; color: var(--verge-ink); }
.v-speaker__bio p { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 0 0 18px; max-width: 620px; }
.v-speaker__pull { margin-top: 32px; padding-top: 28px; border-top: 2px solid var(--verge-orange); font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; max-width: 620px; color: var(--verge-ink); letter-spacing: -0.018em; }

/* ---------- OFFER (dark, navy) ---------- */
.v-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.v-offer__card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); padding: 40px; display: flex; flex-direction: column; }
.v-offer__tag  { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--verge-orange); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.v-offer__tag::before { content: ""; width: 22px; height: 1px; background: var(--verge-orange); }
.v-offer__t { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; margin: 0 0 14px; color: white; letter-spacing: -0.018em; }
.v-offer__d { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); margin: 0; }
.v-offer__price { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; align-items: baseline; gap: 16px; }
.v-offer__price .now { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: white; line-height: 1; letter-spacing: -0.02em; }
.v-offer__price .was { font-size: 15px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.v-offer__meta { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); }

.v-countdown { margin-top: 56px; padding: 32px 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.v-countdown__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 600; }
.v-countdown__clock { display: flex; gap: 28px; font-variant-numeric: tabular-nums; }
.v-countdown__unit { text-align: center; min-width: 56px; }
.v-countdown__v { font-family: var(--font-display); font-weight: 700; font-size: 40px; color: white; line-height: 1; letter-spacing: -0.02em; }
.v-countdown__l { margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ---------- REGISTER ---------- */
.v-register { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.v-register__lede { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 24px 0 32px; max-width: 36ch; }
.v-register__facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; font-size: 15px; color: var(--fg-2); }
.v-register__facts li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; }
.v-register__facts li::before { content: ""; width: 14px; height: 1px; background: var(--verge-orange); margin-top: 12px; }

.v-form { background: white; border: 1px solid var(--verge-stone); padding: 44px; }
.v-field { display: block; margin: 0 0 22px; }
.v-field:last-of-type { margin-bottom: 32px; }
.v-field label { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); margin-bottom: 10px; }
.v-field label .req { color: var(--verge-orange); margin-left: 4px; }
.v-field label .opt { margin-left: 8px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--fg-muted); }
.v-field input { width: 100%; padding: 14px 16px; border: 1px solid var(--verge-stone); border-radius: 0; background: #FAFAFA; font-size: 16px; font-family: var(--font-body); color: var(--verge-ink); transition: border-color .15s, background .15s; }
.v-field input:hover { border-color: #c9c4bc; }
.v-field input:focus { outline: 0; border-color: var(--verge-orange); background: white; }
.v-field.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 0 0 22px; }
.v-field .err { display: none; margin-top: 8px; color: var(--verge-orange-deep); font-size: 13px; font-family: var(--font-body); }
.v-field.invalid input { border-color: var(--verge-orange); background: #fff7f3; }
.v-field.invalid .err { display: block; }
/* Form submit — full-width primary. Inherits all .v-btn--primary
   tokens (font, color, radius, hover, focus); the form override only
   widens it and aligns the font-size with the .v-btn--lg spec (16px). */
.v-form button[type="submit"] { width: 100%; padding: 16px 28px; font-size: 16px; }
.v-form .legal { font-size: 12px; color: var(--fg-muted); margin: 16px 0 0; line-height: 1.6; font-family: var(--font-body); letter-spacing: 0; text-transform: none; }
.v-thanks { display: none; padding: 44px; background: white; border: 1px solid var(--verge-stone); border-left: 3px solid var(--verge-orange); }
.v-thanks h3 { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin: 0 0 12px; color: var(--verge-ink); letter-spacing: -0.018em; }
.v-thanks p { margin: 0; color: var(--fg-2); font-size: 16px; line-height: 1.7; }
.v-form.submitted { display: none; }
.v-form.submitted + .v-thanks { display: block; }

/* ---------- FOOTER ---------- */
.v-foot { background: var(--verge-ink); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.v-foot__inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
.v-foot__brand img { height: 64px; }
.v-foot__col h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: white; margin: 0 0 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.v-foot__col p { font-size: 14px; line-height: 1.7; margin: 0 0 12px; }
.v-foot__col a { color: var(--verge-orange); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.v-foot__bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 56px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.4); font-family: var(--font-mono); letter-spacing: 0.06em; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .v-section { padding: 88px 0; }
  .v-nav__links, .v-nav__lang { display: none; }
  .v-promises, .v-offer-grid, .v-foot__inner { grid-template-columns: 1fr; gap: 32px; }
  .v-promises { flex-direction: column; }
  .v-speaker { grid-template-columns: 1fr; gap: 40px; }
  .v-speaker__photo { max-width: 280px; }
  .v-register { grid-template-columns: 1fr; gap: 48px; }
  .v-hero__meta { gap: 16px 32px; }
  .v-countdown { padding: 24px 28px; flex-direction: column; align-items: flex-start; }
  .v-countdown__unit { min-width: 48px; }
  .v-countdown__v { font-size: 32px; }
}
@media (max-width: 640px) {
  .v-container { padding: 0 20px; }
  .v-form { padding: 28px; }
  .v-field.row-2 { grid-template-columns: 1fr; }
  .v-agenda li { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }
  .v-agenda .dur { grid-column: 2; padding-top: 4px; }
  .v-foot__bottom { flex-direction: column; gap: 12px; }
}
