/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  background: rgba(6, 8, 14, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-faint);
  transition: height .4s ease, background .4s ease, box-shadow .4s ease;
}

.site-header.is-shrunk {
  height: 68px;
  background: rgba(6, 8, 14, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.site-header.is-shrunk .site-header__logo img {
  height: 42px;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 6px 0;
}

.site-header__logo img {
  height: 52px;
  width: auto;
  transition: height .4s ease;
}

.site-header__company {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-faint);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: stretch;
  gap: 36px;
}

.site-nav > a,
.site-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  color: var(--text-heading);
  text-decoration: none;
  line-height: 1.3;
  font-size: 15px;
  letter-spacing: 1px;
  transition: color .3s ease;
  white-space: nowrap;
}

.site-nav .nav-en {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}

.site-nav .nav-ja {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-faint);
  transition: color .3s ease;
}

.site-nav > a:hover,
.site-nav__link:hover {
  color: var(--accent-3);
}

.site-nav > a:hover .nav-ja,
.site-nav__link:hover .nav-ja {
  color: var(--accent-3);
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 240px;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(6, 8, 14, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-faint);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 60;
}

.site-nav__item:hover .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease, background .3s ease;
}

.nav-dropdown a:hover {
  color: var(--accent-3);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav .nav-cta {
  padding: 0 30px;
  margin-right: -1px;
  background: var(--accent-gradient);
  color: #fff;
  transition: filter .3s ease;
}

.site-nav .nav-cta:hover {
  color: #fff;
  filter: brightness(1.15);
}

.site-nav .nav-cta .nav-ja {
  color: rgba(255, 255, 255, 0.8);
}

.site-nav .nav-cta:hover .nav-ja {
  color: #fff;
}

/* hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav panel */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: rgba(6, 8, 14, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-faint);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 16px var(--gutter);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-faint);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .nav-cta {
  color: var(--accent-3);
}

@media (max-width: 1023px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================================
   Section label (BUSINESS / 事業内容 style heading)
   ============================================================ */
.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 50px;
}

.section-label__bar {
  width: 8px;
  height: 58px;
  flex: none;
  background: linear-gradient(180deg, var(--accent-3), var(--accent-1));
  transform: skewX(-20deg);
  margin-top: 4px;
}

.section-label__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.section-label__en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 4px;
  color: var(--heading-accent);
}

.section-label__jp {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--text-heading);
  margin-top: 14px;
}

@media (max-width: 767px) {
  .section-label {
    gap: 12px;
    margin-bottom: 34px;
  }
  .section-label__bar {
    height: 44px;
  }
  .section-label__en {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .section-label__jp {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* ============================================================
   Card grid / business cards
   ============================================================ */
.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* bottom row of the TOP business section: match column width of the 4-card row above */
.card-grid.cols-3.card-grid--row3 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1279px) {
  .card-grid.cols-4,
  .card-grid.cols-3,
  .card-grid.cols-3.card-grid--row3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .card-grid.cols-4,
  .card-grid.cols-3,
  .card-grid.cols-3.card-grid--row3 {
    grid-template-columns: 1fr;
  }
}

.biz-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  color: inherit;
  text-decoration: none;
  transition: transform .5s cubic-bezier(.16,.7,.3,1), box-shadow .5s ease, border-color .5s ease;
}

.biz-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(20, 70, 200, 0.30);
  border-color: rgba(79, 155, 255, 0.55);
}

.biz-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(125deg, #141a26, #0e131d);
}

.biz-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,.7,.3,1);
}

.biz-card:hover .biz-card__image img {
  transform: scale(1.09);
}

.biz-card__body {
  padding: clamp(20px, 2vw, 26px);
}

.biz-card__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--card-title);
}

.biz-card__desc {
  margin: 0 0 22px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   VIEW DETAIL button
   ============================================================ */
.btn-view-detail {
  --arrow-color: var(--accent-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border-accent);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
}

.btn-view-detail:hover {
  --arrow-color: #fff;
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
}

.btn-view-detail__arrow {
  display: inline-flex;
  align-items: center;
}

.btn-view-detail__arrow span:first-child {
  width: 30px;
  height: 1px;
  background: var(--arrow-color);
  transition: background .4s ease;
}

.btn-view-detail__arrow span:last-child {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--arrow-color);
  border-right: 1.5px solid var(--arrow-color);
  transform: rotate(45deg);
  margin-left: -5px;
  transition: border-color .4s ease;
}

/* ============================================================
   CTA section / glow button
   ============================================================ */
.cta-section {
  position: relative;
  padding: 88px 0 96px;
  text-align: center;
  background: var(--bg-contact);
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,17,43,0.45), rgba(6,17,43,0.65));
}

.cta-section__content {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 18px rgba(0,0,0,0.75);
}

.cta-section__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: 2px;
  color: #eaf0fb;
}

.cta-section__title {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 4.5vw, 42px);
  letter-spacing: 2px;
  color: #fff;
}

.cta-section__title em {
  font-style: normal;
  color: var(--accent-3);
  font-size: clamp(30px, 5.2vw, 50px);
}

.cta-section__lead {
  margin: 0 0 44px;
  font-size: 15px;
  letter-spacing: 1px;
  color: #c4d0e6;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 560px;
  max-width: 100%;
  height: 88px;
  margin: 0 auto;
  background: var(--accent-gradient);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 2px;
  box-shadow: 0 14px 40px rgba(20,70,200,0.5);
  animation: ctaGlow 2.8s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.btn-cta:hover {
  transform: scale(1.03);
}

.btn-cta__icon {
  font-size: 24px;
}

.btn-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  font-size: 18px;
}

@media (max-width: 639px) {
  .btn-cta {
    height: 72px;
    font-size: 18px;
    gap: 12px;
  }
  .btn-cta__arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ============================================================
   Outline CTA button (business pages)
   ============================================================ */
.btn-cta-outline {
  --arrow-color: var(--accent-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 480px;
  max-width: 100%;
  height: 76px;
  margin: 0 auto;
  background: rgba(10, 16, 30, 0.5);
  backdrop-filter: blur(6px);
  border: 1.5px solid var(--accent-3);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 2px;
  transition: background .4s ease, border-color .4s ease, transform .3s ease;
}

.btn-cta-outline:hover {
  --arrow-color: #fff;
  background: var(--accent-gradient);
  border-color: transparent;
  transform: scale(1.02);
}

@media (max-width: 639px) {
  .btn-cta-outline {
    height: 64px;
    font-size: 15px;
    gap: 10px;
  }
}

/* star field for cta */
.cta-section__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 28% 60%, rgba(180,210,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 44% 18%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 62% 48%, rgba(200,225,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 78% 28%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 88% 64%, rgba(190,215,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 33% 82%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 86%, rgba(200,225,255,0.6), transparent);
}

/* ============================================================
   Stripe overlay texture (diagonal lines on photos)
   ============================================================ */
.stripe-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 22px);
}

/* ============================================================
   Page hero (sub-page header banner)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-base), var(--bg-alt));
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .page-hero__field {
    display: none;
  }
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(6,8,14,0.94) 35%, rgba(6,8,14,0.6) 100%);
}

.page-hero__content {
  position: relative;
  max-width: 720px;
}

.page-hero__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 5px;
  color: var(--heading-accent);
  text-transform: uppercase;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--text-heading);
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.page-hero__lead {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: .5px;
  color: var(--text-secondary);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

@media (max-width: 767px) {
  .page-hero {
    padding: 100px 0 56px;
  }
  .page-hero__lead {
    margin-top: 20px;
    font-size: 14px;
  }
}

/* ============================================================
   Generic page section
   ============================================================ */
.page-section {
  padding: 96px 0;
}

.page-section--alt {
  background: linear-gradient(180deg, var(--bg-base), var(--bg-alt));
}

@media (max-width: 767px) {
  .page-section {
    padding: 64px 0;
  }
}

/* ============================================================
   Message section with text + photo split (recruit page)
   ============================================================ */
.message-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.message-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-faint);
}

@media (max-width: 1023px) {
  .message-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .message-split__media {
    order: -1;
  }
}

.prose p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}

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

.prose h3 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.6;
  color: var(--text-heading);
}

.prose ul {
  margin: 0 0 20px;
  padding-left: 1.6em;
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}

.prose ul:last-child {
  margin-bottom: 0;
}

.prose li {
  margin-bottom: 4px;
}

.prose .policy-section + .policy-section {
  margin-top: 44px;
}

.prose .policy-section h3 {
  font-size: 18px;
}

/* ============================================================
   Feature / stat / philosophy cards (3-col reusable pattern)
   ============================================================ */
.feature-card,
.stat-card,
.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  padding: 32px 28px;
  transition: transform .5s cubic-bezier(.16,.7,.3,1), box-shadow .5s ease, border-color .5s ease;
}

.feature-card:hover,
.stat-card:hover,
.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(20, 70, 200, 0.25);
  border-color: rgba(79, 155, 255, 0.45);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid var(--border-accent);
  background: rgba(47, 123, 255, 0.08);
}

.card-icon .icon-svg {
  width: 26px;
  height: 26px;
}

.feature-card__title,
.philosophy-card__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--card-title);
}

.feature-card__desc,
.philosophy-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.stat-card__label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--heading-accent);
}

.stat-card__value {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  color: var(--text-heading);
}

.stat-card__caption {
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--text-muted);
}

/* ============================================================
   Numbered blocks (company initiatives)
   ============================================================ */
.numbered-block {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-faint);
}

.numbered-block:last-child {
  border-bottom: none;
}

.numbered-block__num {
  flex: none;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--heading-accent);
  opacity: .55;
}

.numbered-block__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 23px);
  letter-spacing: 1px;
  color: var(--text-heading);
}

.numbered-block__lead {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--heading-accent);
}

.numbered-block__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 2;
  color: var(--text-muted);
}

@media (max-width: 639px) {
  .numbered-block {
    flex-direction: column;
    gap: 16px;
  }
  .numbered-block__num {
    font-size: 40px;
  }
}

/* ============================================================
   Info table (company info / job listings)
   ============================================================ */
.info-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 13.5px;
}

.info-table th,
.info-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border-faint);
  line-height: 1.9;
}

.info-table th {
  width: 220px;
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--font-sans);
  white-space: nowrap;
  vertical-align: top;
}

.info-table td {
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: auto;
  }
  .info-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-faint);
  }
  .info-table th,
  .info-table td {
    padding: 4px 0;
    border-bottom: none;
  }
  .info-table th {
    color: var(--heading-accent);
    font-weight: 600;
  }
}

/* ============================================================
   Forms
   ============================================================ */
.form-field {
  margin-bottom: 24px;
}

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

@media (max-width: 639px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label,
.form-field > label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.required {
  color: var(--accent-3);
  font-size: 12px;
  margin-left: 4px;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-faint);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-3);
  box-shadow: 0 0 0 3px rgba(79,155,255,0.15);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.radio-option input,
.checkbox-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-3);
}

.consent-box {
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  padding: 24px;
  margin-bottom: 18px;
}

.consent-box h4 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text-heading);
}

.consent-box__scroll {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 12px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-muted);
}

.consent-box__scroll h5 {
  margin: 18px 0 8px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--card-title);
}

.consent-box__scroll h5:first-child {
  margin-top: 0;
}

.consent-box__scroll p {
  margin: 0 0 10px;
}

.consent-box__scroll ul {
  margin: 0 0 10px;
  padding-left: 1.4em;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 320px;
  max-width: 100%;
  height: 64px;
  margin: 8px auto 0;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(20,70,200,0.5);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  font-family: var(--font-sans);
}

.btn-submit:hover {
  transform: scale(1.03);
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* honeypot (bot bait field, kept off-screen but focusable/fillable) */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  display: none;
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .5px;
  line-height: 1.7;
}

.form-message.is-visible {
  display: block;
}

.form-message--success {
  background: rgba(77, 219, 142, 0.1);
  border: 1px solid rgba(77, 219, 142, 0.35);
  color: var(--success);
}

.form-message--error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.35);
  color: var(--danger);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.field-error {
  margin: 8px 0 0;
  font-size: 12.5px;
  letter-spacing: .5px;
  color: var(--danger);
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
  background: #05070d;
  padding: 46px 0 30px;
  border-top: 1px solid var(--border-faint);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-faint);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.site-footer__logo img {
  height: 46px;
  width: auto;
}

.site-footer__company {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color .3s ease;
}

.footer-nav a:hover {
  color: var(--accent-3);
}

.footer-nav__legal {
  color: var(--text-faint);
}

.site-footer__copyright {
  margin: 22px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-copyright);
}

@media (max-width: 639px) {
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Custom cursor (desktop / fine-pointer devices only)
   ============================================================ */
@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-3);
    transition: transform .15s ease, opacity .2s ease;
  }

  .cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent-3);
    opacity: .6;
    transition: width .25s ease, height .25s ease, border-color .25s ease,
      background-color .25s ease, opacity .25s ease, transform .15s ease;
  }

  .cursor-ring.is-hover {
    width: 56px;
    height: 56px;
    border-color: #fff;
    background: rgba(79, 155, 255, .12);
  }

  .cursor-ring.is-click,
  .cursor-dot.is-click {
    transform: translate(-50%, -50%) scale(.7);
  }
}
