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

:root {
  --navy: #1e3c54;
  --blue: #3354a1;
  --violet: #72529d;
  --white: #ffffff;
  --mint: #75c19a;
  --mint-pale: #e3f3eb;
  --border: rgba(30, 60, 84, 0.15);
  --ff-noto: "Noto Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-noto);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 80px;
  background: var(--navy);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}

.nav-brand {
  font-family: var(--ff-noto);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mint);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 160px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: var(--navy);
  background: var(--mint);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  fill: var(--white);
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 80px);
    background: var(--navy);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border: none;
    margin-top: 0.5rem;
    padding: 0;
  }

  .dropdown-menu a {
    color: var(--white);
    padding: 0.6rem 1rem;
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--mint);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label,
.block-label {
  display: block;
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

.section-title,
.block-title {
  font-family: var(--ff-noto);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-divider,
.block-divider {
  width: 48px;
  height: 2px;
  background: var(--violet);
  margin-bottom: 2rem;
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.page-header {
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: var(--ff-noto);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: var(--ff-noto);
  font-size: 12px;
  color: var(--violet);
}

footer a {
  color: var(--violet);
  text-decoration: none;
}

footer a:hover {
  color: var(--blue);
}

footer .footer-title {
  font-family: var(--ff-noto);
  font-size: clamp(2rem, 3.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(30, 60, 84, 0.07) 0%, transparent 70%),
    linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.hero-eyebrow {
  position: relative;
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--violet);
}

.hero-title {
  position: relative;
  font-family: var(--ff-noto);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-subtitle {
  position: relative;
  font-family: var(--ff-noto);
  font-size: 1.35rem;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mint-pale);
  border: 1px solid var(--violet);
  border-radius: 100px;
  padding: 0.45rem 1.25rem;
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--violet);
  margin-bottom: 3rem;
}

.hero-photo {
  position: relative;
  width: min(700px, 90%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30, 60, 84, 0.18);
  border: 1px solid var(--border);
}

.hero-photo img {
  width: 100%;
  display: block;
}

.about-section {
  padding: 6rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.about-text a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.venue-section {
  padding: 6rem 2rem;
}

.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.venue-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--mint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.venue-body h3 {
  font-family: var(--ff-noto);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.venue-body p {
  color: var(--blue);
  font-size: 0.95rem;
}

.venue-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dates-section {
  padding: 6rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.date-block {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.date-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--violet);
}

.date-block a {
  color: var(--blue);
  text-decoration: none;
}

.date-block a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.date-label {
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.date-value {
  font-family: var(--ff-noto);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
}

.fees-section {
  padding: 6rem 2rem;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.fees-table thead tr {
  border-bottom: 2px solid var(--navy);
}

.fees-table th {
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  padding: 0.5rem 1rem 0.75rem;
  text-align: left;
  font-weight: 400;
}

.fees-table th:last-child {
  text-align: right;
}

.fees-table td {
  font-family: var(--ff-noto);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--blue);
}

.fees-table td:last-child {
  text-align: right;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.fees-table tbody tr:hover {
  background: var(--mint-pale);
}

.fees-table tbody tr.highlight td {
  color: var(--navy);
  font-weight: 500;
}

.sponsors-section {
  padding: 6rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.sponsor-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s, filter 0.2s;
}

.sponsor-item img:hover {
  opacity: 0.85;
  filter: grayscale(0.3);
}

.download-bar {
  background: var(--blue);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.download-bar p {
  font-family: var(--ff-noto);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.download-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--blue);
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.download-bar a:hover {
  opacity: 0.85;
}

.week-section {
  padding: 4rem 2rem;
  text-align: center;
}

.week-section img {
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.schedule-section {
  padding: 2rem 2rem 6rem;
}

.day-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
  overflow-x: auto;
}

.day-tab {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  color: var(--violet);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.day-tab:hover {
  color: var(--blue);
}

.day-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.day-panel {
  display: none;
  padding-top: 2rem;
}

.day-panel.active {
  display: block;
}

.schedule-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-family: var(--ff-noto);
  font-size: 12px;
  color: var(--violet);
  padding-top: 3px;
}

.schedule-title {
  font-family: var(--ff-noto);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

.schedule-title a {
  color: var(--blue);
  text-decoration: none;
}

.schedule-title a:hover {
  text-decoration: underline;
}

.schedule-speaker {
  font-size: 0.85rem;
  color: var(--blue);
  margin-top: 0.2rem;
}

.schedule-speaker a {
  color: var(--blue);
  text-decoration: none;
}

.schedule-speaker a:hover {
  color: var(--navy);
}

.schedule-break {
  background: var(--mint-pale);
}

.schedule-break .schedule-title {
  color: var(--violet);
  font-style: italic;
  font-size: 0.9rem;
}

.schedule-break .schedule-time {
  color: var(--violet);
}

.schedule-special {
  background: var(--mint-pale);
  border-left: 3px solid var(--mint);
  padding-left: 1rem;
}

.schedule-special .schedule-title {
  color: var(--blue);
  font-style: italic;
}

.poster-label {
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 2.5rem 0 1rem;
  display: block;
}

.poster-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.poster-num {
  font-family: var(--ff-noto);
  font-size: 12px;
  color: var(--violet);
  font-weight: 500;
  padding-top: 3px;
}

.poster-title {
  font-family: var(--ff-noto);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.4;
}

.poster-title a {
  color: var(--blue);
  text-decoration: none;
}

.poster-author {
  font-size: 0.82rem;
  color: var(--blue);
  margin-top: 0.15rem;
}

.speakers-section {
  padding: 5rem 2rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  border-radius: 4px;
  overflow: hidden;
}

.speaker-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  transition: background 0.15s;
}

.speaker-card:hover {
  background: var(--mint);
}

.speaker-name {
  font-family: var(--ff-noto);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
}

.speaker-affil {
  font-size: 0.82rem;
  color: var(--violet);
  margin-top: 0.2rem;
}

.organizers-section {
  padding: 5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.organizers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.organizer-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
}

.organizer-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--white);
}

.organizer-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-noto);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 500;
}

.organizer-name {
  font-family: var(--ff-noto);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
}

.organizer-inst {
  font-size: 0.83rem;
  color: var(--violet);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.content-section {
  padding: 5rem 2rem;
}

.map-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.map-wrap img {
  width: 100%;
  max-width: 400px;
  display: block;
  object-fit: cover;
  filter: grayscale(0.2) brightness(0.9);
  transition: filter 0.2s;
  border-radius: 4px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  max-width: 700px;
  height: 420px;
  border: none;
  border-radius: 4px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}

.info-card-label {
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.info-card-title {
  font-family: var(--ff-noto);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--blue);
  line-height: 1.6;
}

.flights-section {
  padding: 2rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.flight-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.flight-row:last-child {
  border-bottom: none;
}

.flight-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--mint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flight-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.flight-text strong {
  color: var(--navy);
  font-weight: 600;
}

.flight-text p {
  font-size: 0.92rem;
  color: var(--blue);
  margin-top: 0.25rem;
}

.airlines {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.airline-tag {
  font-family: var(--ff-noto);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  background: var(--mint-pale);
  color: var(--blue);
  border-radius: 3px;
}

.deadlines-banner {
  background: var(--blue);
  color: var(--white);
}

.deadlines-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.deadline-item {
  flex: 1;
  min-width: 200px;
}

.deadline-item-label {
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.3rem;
}

.deadline-item-date {
  font-family: var(--ff-noto);
  font-size: 1.3rem;
  color: var(--white);
}

.deadline-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.fees-cards-section {
  padding: 5rem 2rem;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.fee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}

.fee-card:hover {
  border-color: var(--blue);
}

.fee-card.highlight {
  border-color: var(--mint);
  background: var(--mint-pale);
}

.fee-card.highlight::after {
  content: "Student rate";
  position: absolute;
  top: -1px;
  right: 1rem;
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: var(--mint);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 4px 4px;
}

.fee-category {
  font-size: 0.85rem;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.fee-amount {
  font-family: var(--ff-noto);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.fee-currency {
  font-family: var(--ff-noto);
  font-size: 12px;
  color: var(--violet);
  margin-top: 0.3rem;
}

.form-section {
  padding: 5rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.reg-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.reg-info p {
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.reg-note {
  background: var(--mint-pale);
  border-left: 3px solid var(--mint);
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--blue);
  margin-top: 1.5rem;
}

.reg-note strong {
  color: var(--mint);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-family: var(--ff-noto);
  text-transform: uppercase;
}

.reg-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-family: var(--ff-noto);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--ff-noto);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue);
}

.form-check label {
  font-size: 0.88rem;
  color: var(--blue);
  cursor: pointer;
}

.form-submit {
  margin-top: 1.5rem;
}

.btn-primary {
  width: 100%;
  padding: 0.85rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--violet);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .check {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--ff-noto);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--blue);
}

.interviews-section {
  padding: 60px 0;
}

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 2rem;
  margin-top: 40px;
}

.interview-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.interview-card:hover {
  border-color: var(--blue);
}

.interview-badge {
  align-self: flex-start;
  background-color: var(--mint);
  color: var(--white);
  font-family: var(--ff-noto);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.interview-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.interview-date {
  font-family: var(--ff-noto);
  font-size: 0.8rem;
  color: var(--violet);
  margin-bottom: 8px;
}

.interview-title {
  font-family: var(--ff-noto);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 12px 0;
}

.interview-excerpt {
  font-family: var(--ff-noto);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--blue);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.interview-link {
  font-family: var(--ff-noto);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  transition: color 0.2s ease;
}

.interview-card:hover .interview-link {
  color: var(--navy);
}

@media (max-width: 700px) {
  .about-grid,
  .dates-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue-card {
    flex-direction: column;
  }

  .reg-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .deadlines-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .deadline-sep {
    display: none;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .schedule-time {
    font-size: 11px;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.logo-brand {
  width: 200px;
  height: auto;
}