@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0d1320;
  --surface: #131b2f;
  --surface-strong: #18243f;
  --accent: #ff6f44;
  --accent-soft: #ff895f;
  --accent-alt: #3f8dff;
  --text: #ffffff;
  --muted: #99a5bf;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Space Grotesk', Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(63, 141, 255, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 111, 68, 0.16), transparent 26%),
    linear-gradient(180deg, #070b16 0%, #0c1323 45%, #0b1221 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 14, 24, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.staff-login-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 55%), rgba(6, 12, 24, 0.96);
  z-index: 50;
  padding: 24px;
}

.staff-login-modal .modal-card,
.staff-login-modal .modal-card-large {
  width: min(820px, 100%);
  background: rgba(8, 14, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.32);
}

.modal-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.modal-card-top h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
}

.modal-hero-copy {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 10px;
}

.login-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.login-banner {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.login-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.15);
}

.login-banner-copy {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  background: rgba(3, 6, 16, 0.72);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.login-banner-copy p {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.login-form {
  display: grid;
  gap: 16px;
  padding: 28px 32px 32px;
}

.password-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.password-input-row input {
  min-width: 0;
}

.password-toggle {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 16px;
  min-width: 100px;
}

.login-submit {
  margin-top: 8px;
}

.staff-login-modal .modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
}

.staff-login-modal label,
.staff-login-modal input,
.staff-login-modal button,
.staff-login-modal textarea,
.staff-login-modal select {
  width: 100%;
}

.staff-login-modal input,
.staff-login-modal select,
.staff-login-modal textarea {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.staff-login-modal form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 860px) {
  .login-grid {
    grid-template-columns: 1fr;
  }
  .login-banner {
    min-height: 240px;
  }
}

.record-search-panel {
  background: linear-gradient(180deg, rgba(38, 46, 76, 0.96), rgba(12, 18, 30, 0.96));
}

.record-search-form {
  display: grid;
  gap: 16px;
}

.record-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.record-search-row input {
  min-width: 0;
}

.owner-only {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.owner-only h3,
.owner-only p {
  margin: 0 0 12px;
}

.staff-dashboard-section {
  padding: 48px 0;
}

.staff-dashboard {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.staff-dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 30px;
}

.staff-dashboard-hero h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
}

.staff-dashboard-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.staff-dashboard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.staff-dashboard-header {
  display: none;
}

.staff-dashboard-subtitle {
  color: var(--muted);
  margin: 0;
}

.staff-status-text {
  color: #a6c8ff;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.staff-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.staff-badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
}

.staff-dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.staff-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.staff-panel-wide {
  grid-column: 1 / -1;
}

.staff-panel-compact {
  display: grid;
  gap: 18px;
}

.staff-panel-overview {
  min-height: 460px;
}

.panel-subheader {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.staff-panel-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(63, 111, 255, 0.08);
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.staff-panel-settings {
  grid-column: 1 / -1;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.staff-record-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.staff-record-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.record-item-submeta {
  color: var(--muted);
  margin: 6px 0 12px;
}

.staff-record-item h4 {
  margin: 0 0 8px;
}

.staff-record-item p {
  margin: 6px 0;
  color: var(--muted);
}

.staff-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.staff-account-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(63, 141, 255, 0.35);
  outline-offset: 2px;
}

.btn {
  font-family: 'Space Grotesk', Inter, system-ui, sans-serif;
}

.panel-controls label {
  white-space: nowrap;
}

.birthday-banner {
  padding: 16px 0;
  background: linear-gradient(135deg, rgba(255, 111, 68, 0.16), rgba(63, 141, 255, 0.14));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.birthday-banner p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .staff-panel-grid {
    grid-template-columns: 1fr;
  }
}

.brand {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a,
.header-cta {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-cta {
  justify-self: end;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-section,
.page-header {
  position: relative;
  padding: 100px 0 48px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.26;
  pointer-events: none;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) contrast(1.05) saturate(1.15);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2,
.page-header h1 {
  font-size: clamp(2.8rem, 4vw, 5rem);
  margin: 0;
  line-height: 1.02;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy p,
.section-heading p,
.cta-card p,
.page-header p {
  max-width: 680px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 18px;
}

.hero-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: 0 18px 36px rgba(255, 111, 68, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-header {
  background: linear-gradient(135deg, rgba(63, 111, 255, 0.18), rgba(255, 111, 68, 0.14));
  border-radius: 32px;
  margin: 40px 0;
}

.faq-header,
.rules-header {
  padding-top: 110px;
  padding-bottom: 80px;
}

.content-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 60px;
}

.faq-intro {
  margin-bottom: 32px;
  font-size: 1rem;
  color: var(--muted);
}

.faq-list,
.rules-copy {
  display: grid;
  gap: 24px;
}

.faq-item,
.rule-block {
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.faq-item h2,
.rule-block h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.faq-item p,
.rule-block p,
.rule-list li {
  color: var(--muted);
  line-height: 1.9;
}

.rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.rule-list li strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.ban-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.ban-grid div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .ban-grid {
    grid-template-columns: 1fr;
  }
  .content-panel {
    padding: 32px;
  }
}

.apply-now {
  margin-top: 20px;
  width: fit-content;
}

.apply-intro {
  margin-bottom: 24px;
  color: var(--muted);
  max-width: 760px;
}

.char-count {
  display: block;
  margin-top: 6px;
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.hero-preview {
  position: relative;
  display: grid;
  gap: 22px;
}

.hero-preview-img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-preview-card {
  background: rgba(8, 14, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-preview-card h2 {
  margin-top: 0;
  font-size: 1.9rem;
}

.hero-card-inner p {
  color: var(--muted);
  margin: 18px 0 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-section,
.features-section,
.staff-section,
.support-section,
.careers-section {
  padding: 64px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.cards-grid,
.feature-grid,
.staff-grid,
.careers-grid {
  display: grid;
  gap: 24px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.careers-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.feature-card,
.career-card,
.support-card,
.cta-card,
.staff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3,
.feature-card h3,
.career-card h3,
.support-card h2,
.cta-card h2 {
  margin: 0 0 14px;
}

.card p,
.feature-card p,
.career-card p,
.support-card p,
.cta-card p {
  color: var(--muted);
  line-height: 1.8;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-grid-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  text-align: center;
}

.support-grid-single .support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-hero {
  padding: 100px 0 40px;
}

.team-hero .container {
  text-align: center;
}

.team-hero .eyebrow {
  margin-bottom: 14px;
}

.team-summary {
  padding: 40px 0 0;
}

.team-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-meta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.team-meta-card h3 {
  margin: 0 0 12px;
}

.team-categories {
  display: grid;
  gap: 64px;
}

.team-category {
  padding: 0;
}

.team-category h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.team-list-section {
  padding: 40px 0 80px;
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  text-align: center;
  padding: 28px;
  position: relative;
}

.team-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  margin: 0 auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.team-body {
  display: grid;
  gap: 10px;
}

.team-card h3 {
  margin: 0;
  font-size: 1.5rem;
}

.team-title {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.role-pill {
  display: inline-flex;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-bio {
  color: var(--muted);
  line-height: 1.8;
}

label {
  font-weight: 600;
  color: #e8eefc;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.65) 50%), linear-gradient(135deg, rgba(255,255,255,0.65) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(1em + 2px), calc(100% - 16px) calc(1em + 2px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

/* Generic visible listbox style used across staff and form selects when we want options shown */
select.listbox-show {
  appearance: none;
  width: 100%;
  min-width: 220px;
  max-width: 100%;
  padding-right: 18px;
  line-height: 1.8;
  background-image: none;
  cursor: default;
  border-radius: 18px;
  overflow: auto;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

select.listbox-show option {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background-color 0.12s ease, color 0.12s ease;
}

select.listbox-show option:hover,
select.listbox-show option:focus {
  background: rgba(97, 143, 255, 0.18);
  color: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(97, 143, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(97, 143, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.staff-management-panel .management-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.management-summary,
.management-actions {
  display: grid;
  gap: 18px;
}

.management-preview {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.management-preview p {
  margin: 0;
  color: var(--text);
}

.management-button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.action-section {
  display: grid;
  gap: 12px;
}

@media (max-width: 980px) {
  .staff-management-panel .management-grid {
    grid-template-columns: 1fr;
  }
}

.response-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(63, 141, 255, 0.12);
  color: #dff5ff;
  border: 1px solid rgba(63, 141, 255, 0.3);
}

.apply-section {
  display: grid;
  gap: 32px;
}

.apply-section form {
  display: grid;
  gap: 18px;
}

.apply-section input,
.apply-section select,
.apply-section textarea {
  width: 100%;
}

.cta-card {
  text-align: center;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px 20px;
}

.hero-highlights strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.hero-highlights span {
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-inner a {
  color: var(--accent-soft);
  text-decoration: none;
}

@media (max-width: 940px) {
  .hero-content,
  .support-grid,
  .staff-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
  }

  .header-cta {
    justify-self: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .hero-copy p,
  .section-heading p,
  .cta-card p,
  .page-header p {
    max-width: 100%;
  }
}
