/* ============================================================
   ORSMU Scholarship Test 2026 — Modern UI
   Rus Education Brand:
   #0097b2 Bondi Blue | #8cc63f Android Green
   #231f20 Zeus        | #F4F4F5 White Smoke
   ============================================================ */

:root {
  --blue: #0097b2;
  --blue-deep: #007a91;
  --green: #8cc63f;
  --green-deep: #74ab2e;
  --ink: #231f20;
  --smoke: #F4F4F5;
  --white: #ffffff;
  --muted: #6b7280;
  --line: rgba(35, 31, 32, 0.1);
  --glass: rgba(255, 255, 255, 0.08);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header: 72px;
  --radius: 20px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--smoke);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
ul, ol { list-style: none; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.mobile-only { display: none; }

/* Buttons */
.btn-solid,
.btn-outline,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-solid {
  background: linear-gradient(120deg, var(--blue), #00b4c8 45%, var(--green));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 151, 178, 0.28);
}

.btn-solid:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 151, 178, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  margin-top: 24px;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4px;
}

.btn-solid:disabled { opacity: 0.7; cursor: wait; transform: none; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled,
.site-header.is-solid {
  background: rgba(35, 31, 32, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.navbar-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.site-header.scrolled .navbar-logo,
.site-header.is-solid .navbar-logo {
  height: 56px;
}

.navbar-logo--footer {
  height: 72px;
  max-width: 280px;
}

.logo-orb {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.logo-copy small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 170px;
}

.header-nav {
  display: flex;
  gap: 22px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.header-nav a:hover { color: var(--green); }

.header-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-phone:hover {
  border-color: var(--green);
  color: var(--green);
}

.header-cta {
  background: var(--green);
  color: var(--ink);
  min-height: 42px;
  padding: 0 18px;
}

.header-cta:hover {
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header) + 40px) 0 56px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(0, 151, 178, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 70%, rgba(140, 198, 63, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(0, 151, 178, 0.2), transparent 50%),
    linear-gradient(160deg, #141112 0%, #231f20 50%, #1a2a2e 100%);
}

.hero-mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 40%, black, transparent 70%);
  animation: meshFloat 24s linear infinite;
}

@keyframes meshFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-56px); }
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  animation: up 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.hero-main h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  max-width: 12ch;
  margin-bottom: 16px;
}

.hero-amount {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15em;
}

.hero-main h1 em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.55em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
  max-width: 18ch;
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 44ch;
  line-height: 1.65;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin-bottom: 24px;
}

.meta-chip {
  flex: 1 1 200px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.meta-chip--accent {
  border-color: rgba(140, 198, 63, 0.4);
  background: rgba(140, 198, 63, 0.1);
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  font-weight: 700;
}

.meta-chip strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 480px;
}

.hero-register-btn {
  min-width: 200px;
  min-height: 52px;
  padding: 0 32px;
}

/* Form dock */
.form-dock {
  width: 100%;
  animation: up 1s var(--ease) 0.12s both;
}

.form-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-panel-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140, 198, 63, 0.12);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(140, 198, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0); }
}

.form-panel h2 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.field > span {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: var(--smoke);
  color: var(--ink);
  outline: none;
  transition: 0.25s var(--ease);
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.12);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: #dc2626;
  background: #fef2f2;
}

.error-feedback {
  display: none;
  font-style: normal;
  font-size: 0.72rem;
  color: #dc2626;
  font-weight: 600;
}

.error-feedback.active { display: block; }
.hp-field { display: none !important; }

.form-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
}

@keyframes up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Blocks */
.block { padding: 100px 0; }
.block-light { background: var(--smoke); }
.block-dark {
  background: var(--ink);
  color: var(--white);
}

.block-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.block-intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.block-intro p,
.block-intro--light p {
  color: var(--muted);
  font-size: 1.05rem;
}

.block-intro--light .eyebrow { color: var(--green); }
.block-intro--light h2 { color: var(--white); }
.block-intro--light p { color: rgba(255, 255, 255, 0.65); }

.lead-strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink) !important;
  font-size: 1.15rem !important;
  margin: 8px 0;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.bento-item {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35, 31, 32, 0.08);
}

.bento-thumb {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.bento-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-hero-cell {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
  background: linear-gradient(145deg, var(--blue) 0%, #006d82 55%, #1f4d38 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border: none;
  padding: 0;
}

.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
}

.bento-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 24, 0.75) 100%);
}

.bento-wide {
  grid-column: span 4;
}

.bento-wide-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.bento-wide-img {
  border-radius: 14px;
  overflow: hidden;
  height: 150px;
}

.bento-wide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.bento-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.bento-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bento-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.bento-hero-cell h3,
.bento-hero-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  max-width: 14ch;
}

.bento-hero-cell p,
.bento-hero-content p {
  color: rgba(255, 255, 255, 0.8);
}

/* Who split */
.who-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.who-sticky {
  position: sticky;
  top: calc(var(--header) + 24px);
}

.who-media {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}

.who-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-sticky h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.who-hook {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.who-sticky > p:last-of-type {
  color: var(--muted);
}

.who-rows {
  display: flex;
  flex-direction: column;
}

.who-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s var(--ease);
}

.who-row:first-child { border-top: 1px solid var(--line); }

.who-row:hover {
  padding-left: 8px;
  border-color: var(--blue);
}

.who-row > span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.who-row h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.who-row p { color: var(--muted); }

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.35;
}

.timeline li {
  position: relative;
  padding-top: 48px;
}

.tl-dot {
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--green);
  box-shadow: 0 0 0 6px rgba(140, 198, 63, 0.15);
}

.timeline h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

/* Index list */
.unique-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.unique-top .block-intro {
  margin-bottom: 0;
}

.unique-media {
  border-radius: 18px;
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--line);
}

.unique-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.index-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 32px 24px 32px 0;
  border-bottom: 1px solid var(--line);
}

.index-list article:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.index-list article:nth-child(even) {
  padding-left: 32px;
}

.index-list strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}

.index-list h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.index-list p { color: var(--muted); }

/* CTA band */
.cta-band {
  position: relative;
  padding: 110px 0;
  background: #151314;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.35), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.55; transform: translate(-50%, -50%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-inner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--white);
}

.cta-inner > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.cta-dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 8px;
}

.cta-dates span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-dates strong { color: var(--green); }

/* Footer */
.site-footer {
  background: #0e0c0d;
  color: rgba(244, 244, 245, 0.65);
  padding-top: 56px;
}

.footer-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 340px;
  font-size: 0.9rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-cols h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-cols a,
.footer-cols span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-cols a:hover { color: var(--green); }

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Thank you */
.thank-you-page {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 40px) 20px 60px;
  background: var(--ink);
}

.thank-you-card {
  width: min(620px, 100%);
  background: var(--white);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  animation: up 0.7s var(--ease) both;
}

.success-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.thank-you-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.thank-you-card > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.next-steps {
  text-align: left;
  background: var(--smoke);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.next-steps h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.next-steps li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.next-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .header-nav { display: none; }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(var(--header) + 28px);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }

  .hero-main h1 {
    max-width: none;
  }

  .hero-meta,
  .hero-actions {
    max-width: none;
  }

  .hero-register-btn {
    width: auto;
  }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item,
  .bento-hero-cell,
  .bento-wide { grid-column: span 2; }
  .bento-wide-media { grid-template-columns: 1fr; }

  .who-split { grid-template-columns: 1fr; }
  .who-sticky { position: static; }

  .unique-top { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }

  .index-list { grid-template-columns: 1fr; }
  .index-list article,
  .index-list article:nth-child(odd),
  .index-list article:nth-child(even) {
    padding: 24px 0;
    border-right: none;
  }

  .footer-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .logo-copy small { display: none; }
  .header-phone { display: none; }
  .navbar-logo {
    height: 52px;
    max-width: 190px;
  }

  .navbar-logo--footer {
    height: 60px;
    max-width: 220px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-register-btn {
    width: 100%;
  }

  .meta-chip {
    flex: 1 1 100%;
  }

  .field-pair { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-item,
  .bento-hero-cell,
  .bento-wide { grid-column: span 1; }
  .timeline { grid-template-columns: 1fr; }
  .block { padding: 72px 0; }
}
