@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy: #082b70;
  --navy-dark: #061d4b;
  --blue: #276bd8;
  --blue-light: #eaf2ff;
  --red: #e34346;
  --ink: #13203a;
  --muted: #66728a;
  --line: #dfe7f2;
  --surface: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(13, 43, 94, .11);
  --shadow-soft: 0 10px 30px rgba(13, 43, 94, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 24px;
  background: rgba(244, 247, 251, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar {
  width: min(100%, var(--container));
  min-height: 76px;
  margin: 0 auto;
  padding: 11px 14px 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(174, 191, 219, .45);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(145deg, #1249a5 0%, var(--navy) 68%);
  border: 3px solid var(--white);
  border-radius: 9px 9px 15px 9px;
  box-shadow: 0 0 0 2px #b7c3d8, 0 8px 16px rgba(5, 37, 96, .2);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
  transform: skew(-4deg);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 12px 13px;
  color: var(--navy);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--blue-light);
  color: var(--blue);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 6px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--navy);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-light);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--navy);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  min-height: 600px;
  margin: 10px auto 0;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-radius: 34px;
  background-color: var(--navy-dark);
  background-image: url("../images/hojados002.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 20%, rgba(51, 121, 236, .28), transparent 35%),
    linear-gradient(90deg, rgba(4, 25, 67, .98) 0%, rgba(5, 32, 82, .91) 43%, rgba(5, 31, 77, .36) 72%, rgba(4, 25, 60, .25) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -9% -42% auto;
  z-index: -1;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .03), 0 0 0 140px rgba(255, 255, 255, .025);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 22, 57, .85) 100%);
  pointer-events: none;
}

.hero-content {
  width: min(650px, 67%);
  padding: 76px 64px 150px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #75a8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.hero h1 {
  margin: 15px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero-content > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #3479eb, #1858c4);
  box-shadow: 0 12px 26px rgba(18, 83, 193, .28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #4388f6, #2468d7);
  outline: none;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, .16);
  outline: none;
}

.hero-summary {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 18px;
  background: rgba(4, 27, 70, .68);
  backdrop-filter: blur(15px);
}

.hero-summary > div {
  padding: 19px 25px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-summary > div + div {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-summary strong {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.hero-summary span {
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
}

.section {
  width: min(calc(100% - 48px), var(--container));
  margin: 100px auto 0;
}

.section-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 40px;
}

.section-kicker {
  color: var(--blue);
}

.section h2 {
  margin: 10px 0 0;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.progress-card {
  position: relative;
  min-height: 316px;
  padding: 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 22px 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.progress-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}

.progress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(13, 43, 94, .14);
}

.progress-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 13px;
  background: color-mix(in srgb, var(--accent) 11%, white);
}

.progress-icon svg,
.document-icon svg {
  width: 26px;
  fill: currentColor;
}

.progress-copy {
  grid-column: 1 / -1;
}

.card-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.progress-copy h3 {
  margin: 7px 0;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.progress-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.progress-ring {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--progress) * 1%), #e7edf5 0);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--white);
}

.progress-ring span {
  position: relative;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.progress-ring small {
  font-size: 11px;
}

.status {
  grid-column: 1 / -1;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f7550;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.status span,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #31a66d;
  box-shadow: 0 0 0 5px rgba(49, 166, 109, .12);
}

.documents-section {
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 113, 225, .24), transparent 31%),
    linear-gradient(135deg, #071f50, #0b367f);
  box-shadow: var(--shadow);
}

.documents-section .section-kicker {
  color: #79adff;
}

.documents-section h2,
.documents-section .section-heading > p {
  color: var(--white);
}

.documents-section .section-heading > p {
  color: rgba(255, 255, 255, .68);
}

.document-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.document-card {
  min-height: 125px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 17px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.document-blue {
  background: rgba(36, 105, 222, .48);
}

.document-red {
  background: rgba(203, 56, 66, .45);
}

.document-card:hover,
.document-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .55);
  background-color: rgba(255, 255, 255, .12);
  outline: none;
}

.document-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, .12);
}

.document-card > span:nth-child(2) {
  display: grid;
  gap: 6px;
}

.document-card small {
  color: rgba(255, 255, 255, .63);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.document-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.external {
  font-size: 25px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 185px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: #d9e1ed;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3, 19, 49, .38));
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item:focus-visible img,
.gallery-item:focus-visible video {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(6, 29, 75, .7);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
}

.credentials-section {
  display: grid;
  gap: 18px;
}

.credentials-card {
  position: relative;
  padding: 46px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(76, 145, 247, .28), transparent 34%),
    linear-gradient(140deg, var(--navy-dark), #0a377f);
  box-shadow: var(--shadow);
}

.credentials-card::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -185px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .022), 0 0 0 130px rgba(255, 255, 255, .018);
  pointer-events: none;
}

.credentials-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.credentials-card .section-kicker {
  color: #79adff;
}

.credentials-card h2 {
  max-width: 570px;
  color: var(--white);
}

.credentials-intro p {
  max-width: 650px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 14px;
  line-height: 1.75;
}

.participant-total {
  min-width: 180px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.participant-total strong {
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  line-height: 1;
}

.participant-total span {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.folder-summary {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.folder-summary > div {
  min-height: 88px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.folder-icon {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #8cbbff;
  border-radius: 10px;
  background: rgba(86, 151, 247, .15);
  font-size: 16px;
  font-weight: 800;
}

.folder-summary p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.folder-summary small {
  color: rgba(255, 255, 255, .4);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.folder-summary strong {
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
}

.drive-access {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  min-height: 84px;
  padding: 16px 19px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  color: var(--navy-dark);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(1, 17, 45, .2);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.drive-access:hover,
.drive-access:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 43px rgba(1, 17, 45, .27);
  outline: none;
}

.drive-access-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 13px;
  background: var(--blue-light);
}

.drive-access-icon svg {
  width: 25px;
  fill: currentColor;
}

.drive-access > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.drive-access small {
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.drive-access strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.drive-access i {
  color: var(--blue);
  font-size: 24px;
  font-style: normal;
}

.participant-directory {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.directory-heading {
  margin-bottom: 24px;
  padding-bottom: 21px;
  display: grid;
  grid-template-columns: 1fr minmax(270px, .65fr);
  align-items: end;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.directory-label {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.directory-heading h3 {
  margin: 6px 0 0;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.directory-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.participant-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  counter-reset: participants;
}

.participant-grid li {
  position: relative;
  min-height: 68px;
  padding: 12px 13px 12px 53px;
  display: flex;
  align-items: center;
  color: var(--ink);
  border: 1px solid #e6ebf3;
  border-radius: 13px;
  background: #f8fafc;
  counter-increment: participants;
}

.participant-grid li::before {
  content: counter(participants, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border-radius: 9px;
  background: var(--blue-light);
  font-size: 9px;
  font-weight: 800;
  transform: translateY(-50%);
}

.participant-grid strong {
  font-size: 10px;
  line-height: 1.42;
  text-transform: uppercase;
}

.person-mark {
  display: none;
}

.update-banner {
  width: min(calc(100% - 48px), var(--container));
  margin: 100px auto 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  border-radius: var(--radius-md);
  background: linear-gradient(115deg, var(--navy-dark), var(--navy));
  box-shadow: var(--shadow);
}

.update-banner > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.update-banner > div > div {
  display: grid;
  gap: 3px;
}

.update-banner small {
  color: #83aff7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.update-banner strong {
  font-size: 15px;
}

.update-banner a {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.update-banner a:hover {
  text-decoration: underline;
}

footer {
  width: min(calc(100% - 48px), var(--container));
  margin: 28px auto 0;
  padding: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: #7b8698;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .06em;
}

footer p {
  margin: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 25px 90px;
  display: none;
  place-items: center;
  background: rgba(2, 12, 31, .92);
  backdrop-filter: blur(12px);
}

.modal.is-open {
  display: grid;
}

.modal-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.modal-content {
  max-width: 100%;
  max-height: 88vh;
  display: block;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .42);
}

.modal-close,
.modal-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  transition: background .2s ease;
}

.modal-close:hover,
.modal-arrow:hover,
.modal-close:focus-visible,
.modal-arrow:focus-visible {
  background: rgba(255, 255, 255, .18);
  outline: none;
}

.modal-close {
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
}

.modal-arrow {
  top: 50%;
  width: 50px;
  height: 66px;
  border-radius: 14px;
  font-size: 43px;
  transform: translateY(-50%);
}

.modal-prev {
  left: 25px;
}

.modal-next {
  right: 25px;
}

@media (max-width: 980px) {
  .brand-copy {
    display: none;
  }

  .hero-content {
    width: 75%;
    padding-inline: 44px;
  }

  .progress-grid {
    grid-template-columns: 1fr;
  }

  .progress-card {
    min-height: 230px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .folder-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .participant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .navbar {
    min-height: 64px;
    padding: 8px 10px 8px 13px;
    border-radius: 16px;
  }

  .brand-mark {
    width: 56px;
    height: 40px;
    font-size: 21px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 2px);
    right: 12px;
    left: 12px;
    padding: 10px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links .nav-cta {
    margin: 3px 0 0;
    text-align: center;
  }

  .hero,
  .section,
  .update-banner,
  footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    min-height: 610px;
    margin-top: 4px;
    align-items: start;
    border-radius: 23px;
    background-position: 63% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(4, 26, 69, .94) 0%, rgba(4, 28, 73, .76) 63%, rgba(4, 22, 57, .96) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 58px 25px 195px;
  }

  .hero h1 {
    font-size: clamp(41px, 13vw, 62px);
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-summary {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: 1fr;
  }

  .hero-summary > div {
    padding: 11px 15px;
  }

  .hero-summary > div + div {
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-left: 0;
  }

  .hero-summary strong {
    min-width: 62px;
    font-size: 18px;
  }

  .section {
    margin-top: 72px;
  }

  .section h2 {
    font-size: 31px;
  }

  .progress-card {
    min-height: 280px;
    padding: 23px;
  }

  .documents-section {
    padding: 34px 22px;
  }

  .document-cards {
    grid-template-columns: 1fr;
  }

  .document-card {
    min-height: 108px;
    padding: 18px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 135px;
  }

  .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .credentials-card {
    padding: 34px 22px;
  }

  .credentials-intro {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .participant-total {
    width: fit-content;
  }

  .folder-summary {
    grid-template-columns: 1fr;
  }

  .folder-summary > div {
    min-height: 73px;
  }

  .participant-directory {
    padding: 24px 18px;
  }

  .directory-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .participant-grid {
    grid-template-columns: 1fr;
  }

  .participant-grid li {
    min-height: 62px;
  }

  .update-banner {
    margin-top: 72px;
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal {
    padding: 70px 12px;
  }

  .modal-arrow {
    top: auto;
    bottom: 15px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    transform: none;
  }

  .modal-prev {
    left: calc(50% - 55px);
  }

  .modal-next {
    right: calc(50% - 55px);
  }
}

@media (max-width: 430px) {
  .eyebrow {
    font-size: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .gallery {
    grid-auto-rows: 118px;
  }

  .document-icon {
    width: 49px;
    height: 49px;
  }

  .document-card strong {
    font-size: 17px;
  }

  .drive-access {
    min-height: 92px;
    padding: 14px;
  }

  .drive-access-icon {
    width: 43px;
    height: 43px;
  }

  .drive-access strong {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}