:root {
  --ink: #11213f;
  --muted: #64748b;
  --line: #dfe7f3;
  --blue: #0b75d1;
  --blue2: #00a6c8;
  --green: #4cc6a2;
  --bg: #f5f9ff;
  --white: #fff;
  --header-h: 78px;
  --shadow: 0 18px 45px rgba(15, 35, 70, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 999;
  padding: 8px 12px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  left: 8px;
}

.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;
}


/* Header
------------------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(15, 35, 70, .08);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #26415f;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: .25s;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 2px;
}


/* Hero
------------------------------------------ */

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 82px) 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef8ff 0%, #fff 48%, #eafbf4 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero_bg.svg') center / cover no-repeat;
  opacity: 1;
  mix-blend-mode: multiply;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 12%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 117, 209, .18), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 60px;
  align-items: center;
}

@media (min-width: 961px) {
  .section-heading {
    transform: translateY(-16px);
  }
}

.eyebrow,
.section-heading p,
.section-kicker,
.panel-kicker,
.card-label {
  font-family: Inter, sans-serif;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--blue2);
  font-size: 13px;
}

.hero h1 {
  margin: 10px 0 24px;
}

.hero h1 img {
  width: 100%;
}

.hero-lead {
  font-size: 20px;
  font-weight: 700;
  max-width: 680px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .25s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 12px 25px rgba(11, 117, 209, .22);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.btn-outline.dark {
  border-color: #b7c7db;
  color: var(--ink);
  background: #fff;
}

.hero .btn-outline {
  color: var(--ink);
  border-color: #cbd8ea;
  background: rgba(255, 255, 255, .72);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-panel {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hero-panel dt {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .08em;
}

.hero-panel dd {
  margin: 4px 0 0;
  font-weight: 700;
}


/* Summary Logos
------------------------------------------ */

.summary-band {
  width: min(1180px, calc(100% - 40px));
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.summary-item {
  padding: 24px;
  border-right: 1px solid var(--line);
  font-weight: 700;
}

.summary-item:last-child {
  border-right: 0;
}

.summary-item span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
}
/*あとで3に戻す*/
.summary-band-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: -68px auto 0;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 60, 100, .14);
  position: relative;
  z-index: 5;
}

.summary-band-logos .summary-item {
  min-height: 112px;
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-right: 1px solid rgba(30, 80, 120, .12);
}

.summary-band-logos .summary-item:last-child {
  border-right: none;
}

.summary-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #1689b2;
  line-height: 1;
}

.summary-band-logos .summary-item img {
  display: block;
  max-width: 260px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}


/* Common Sections
------------------------------------------ */

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(1240px, calc(100% - 40px));
  margin: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
}

.section-light {
  background: var(--bg);
}

.section-white {
  background: #fff;
}

.section-accent {
  background: linear-gradient(135deg, #0d4f9a, #0ca8be);
  color: #fff;
}

.section-accent-light {
  background: linear-gradient(135deg, #eef8ff, #effcf7);
}

.section-dark {
  background: #0d1e36;
  color: #fff;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.25;
  margin: 4px 0 0;
}

.center {
  text-align: center;
  margin-bottom: 42px;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.rich-text p {
  margin: 0 0 20px;
}

.rich-text ul {
  padding-left: 1.3em;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.section-accent .note {
  color: rgba(255, 255, 255, .8);
}

.heading-illust {
  margin-top: 24px;
}

.heading-illust img {
  display: block;
  width: min(280px, 100%);
  height: auto;
}


/* Wide two-column sections
------------------------------------------ */

#speakers .section-inner.two-col,
#archive .section-inner.two-col,
#venue .section-inner.two-col,
#background .section-inner.two-col {
  width: min(1320px, calc(100% - 40px));
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 48px;
}

#speakers .section-heading h2,
#archive .section-heading h2,
#venue .section-heading h2,
#background .section-heading h2 {
  white-space: nowrap;
  font-size: 40px;
  line-height: 1.25;
}


/* Program
------------------------------------------ */

.program-wrap {
  position: relative;
  max-width: 920px;
  margin: auto;
}

.program-wrap::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--blue), var(--green));
}

.program-block {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 60px;
  padding: 0 0 28px;
}

.program-block::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 10px;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue);
  box-shadow: 0 0 0 7px #eef8ff;
  z-index: 2;
}

.program-time {
  font-family: Inter, sans-serif;
  font-weight: 800;
  color: var(--blue);
  text-align: right;
}

.program-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(15, 35, 70, .08);
}

.program-content h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.program-content p {
  margin: 0;
}

.program-content .small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.program-theme {
  margin: 0 0 26px 180px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e7f4ff, #e7fbf2);
  font-weight: 900;
}

.break .program-content {
  background: #f8fbff;
}


/* Cards / Archive
------------------------------------------ */

.cards.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-card > div {
  padding: 26px;
}

.info-card h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

.info-card p {
  margin: 0 0 12px;
}

.archive-list {
  display: grid;
  gap: 12px;
}

.archive-list a {
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
}


/* Venue / Map
------------------------------------------ */

.map-placeholder {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 24px;
  background: #eef2f6;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.venue-access {
  margin: 34px 0 28px;
  padding: 0;
}

.venue-access h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #17233f;
}

.access-routes {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 35, 63, 0.14);
}

.access-route {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 35, 63, 0.14);
}

.access-route dt {
  margin: 0;
  font-weight: 800;
  color: #1f3f75;
  letter-spacing: 0.04em;
}

.access-route dd {
  margin: 0;
  color: #1d2433;
  line-height: 1.8;
}


/* Speakers
------------------------------------------ */

.speaker-entry {
  max-width: 1040px;
}

.speaker-card {
  margin: 0 0 30px;
  padding: 38px 44px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(183, 79, 194, .22);
  box-shadow: 0 18px 45px rgba(20, 60, 90, .12);
  backdrop-filter: blur(10px);
  color: #26384a;
}

.speaker-card h3 {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(185, 77, 190, .14);
  color: #9c3ca8;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.speaker-main-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 30px;
}

.speaker-main-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .3em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b968bf;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.speaker-main-text {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.9;
  color: #1f2937;
}

.speaker-sub-list {
  margin: 0;
  padding-left: 1.35em;
}

.speaker-sub-list li {
  margin: 0;
  padding-left: .2em;
  line-height: 1.85;
  color: #26384a;
}

.speaker-info-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.speaker-info-list li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  line-height: 1.9;
  color: #26384a;
}

.speaker-info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .35em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #b968bf;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.deadline-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 22px;
  padding: 17px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b84ac2, #8f4ed8);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(150, 70, 180, .24);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.deadline-button span {
  font-size: .8rem;
  letter-spacing: .12em;
  opacity: .9;
}

.deadline-button strong {
  font-size: 1.05rem;
  letter-spacing: .04em;
}

.deadline-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(150, 70, 180, .3);
  opacity: .95;
}

.speaker-note {
  font-size: .94rem;
  color: rgba(255, 255, 255, .76);
  line-height: 1.9;
  margin: 0;
}


/* Contact
------------------------------------------ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  gap: 64px;
  align-items: center;
}

.contact-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.contact-card {
  max-width: 560px;
  padding: 30px 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.contact-card h3 {
  margin: 0 0 16px;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}

.contact-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .86);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  word-break: break-all;
}

.contact-partners {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.contact-partners::before {
  display: none;
}

.partner-heading {
  margin-bottom: 22px;
}

.partner-heading p {
  margin: 0 0 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #67d8ef;
}

.partner-heading h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: .06em;
  color: #fff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.partner-logo {
  min-height: 116px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.partner-logo span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: #0b75d1;
}

.partner-logo img {
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  margin: 0 auto;
}}

/* Footer
------------------------------------------ */

.site-footer {
  padding: 22px;
  text-align: center;
  background: #081426;
  color: #aab8cb;
  font-size: 12px;
}


/* Responsive
------------------------------------------ */

@media (max-width: 960px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    padding: 12px 28px 24px;
    box-shadow: 0 18px 35px rgba(15, 35, 70, .12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .two-col,
  #speakers .section-inner.two-col,
  #archive .section-inner.two-col,
  #venue .section-inner.two-col,
  #background .section-inner.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading,
  .section-heading.sticky-heading {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .sticky-heading {
    position: static;
  }

  #speakers .section-heading h2,
  #archive .section-heading h2,
  #venue .section-heading h2,
  #background .section-heading h2 {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.25;
  }

  .hero-panel {
    max-width: 520px;
  }

  .summary-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .summary-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program-wrap::before {
    left: 10px;
    transform: translateX(-50%);
  }

  .program-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 36px;
  }

  .program-block::before {
    left: 10px;
    transform: translateX(-50%);
  }

  .program-time {
    text-align: left;
  }

  .program-theme {
    margin-left: 36px;
  }

  .cards.two {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-card {
    max-width: none;
  }

  .contact-partners {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-inner,
  #speakers .section-inner.two-col,
  #archive .section-inner.two-col,
  #venue .section-inner.two-col,
  #background .section-inner.two-col {
    width: min(100% - 32px, 1080px);
  }

  .section-heading,
  .section-heading.sticky-heading {
    margin: 0 0 24px;
    padding: 0;
    text-align: left;
  }

  .section-heading.center {
    text-align: center;
  }

  .section-heading p,
  .section-heading.sticky-heading p {
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    white-space: normal;
  }

  .section-heading h2,
  .section-heading.sticky-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.25;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .summary-band-logos {
    grid-template-columns: 1fr;
    max-width: calc(100% - 32px);
    margin-top: -28px;
  }

  .summary-band-logos .summary-item {
    min-height: 96px;
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(30, 80, 120, .12);
  }

  .summary-band-logos .summary-item:last-child {
    border-bottom: none;
  }

  .summary-band-logos .summary-item img {
    max-width: 260px;
    max-height: 56px;
  }

  .speaker-entry,
  .archive-list,
  .venue-access,
  .map-placeholder,
  .section-body,
  .rich-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .speaker-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .deadline-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 20px;
  }

  .access-route {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .map-placeholder,
  .map-placeholder iframe {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .hero-inner,
  .section-inner,
  #speakers .section-inner.two-col,
  #archive .section-inner.two-col,
  #venue .section-inner.two-col,
  #background .section-inner.two-col {
    width: min(100% - 28px, 1080px);
  }

  .brand img {
    width: 170px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .section-heading.sticky-heading h2,
  #speakers .section-heading h2,
  #archive .section-heading h2,
  #venue .section-heading h2,
  #background .section-heading h2 {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
  }

  .hero-lead {
    font-size: 17px;
  }

  .program-content {
    padding: 20px;
  }

  .program-theme {
    margin-left: 36px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .venue-access {
    margin-top: 28px;
  }

  .map-placeholder,
  .map-placeholder iframe {
    height: 320px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-partners {
    padding: 22px;
    border-radius: 26px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logo,
  .partner-logo-main {
    grid-column: auto;
    min-height: 110px;
  }

  .partner-logo img,
  .partner-logo-main img {
    max-width: 260px;
    max-height: 56px;
  }
}
.deadline-text {
  margin: 12px 0 18px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}

.deadline-text strong {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff3ff;
  font-size: 1.35rem;
  font-weight: 700;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b84ac2, #8f4ed8);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 16px 34px rgba(150, 70, 180, .24);
  transition: all .25s ease;
}