/* =========================================
   TOKEN
========================================= */
:root {
  --black:       #0a0a0a;
  --off-white:   #f7f6f4;
  --white:       #ffffff;
  --green:       #00C896;
  --green-dark:  #00a87e;
  --green-dim:   rgba(0,200,150,0.12);
  --mid:         #888;
  --border-d:    rgba(255,255,255,0.1);
  --border-l:    rgba(0,0,0,0.08);
  --r: 1120px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--off-white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* =========================================
   TYPOGRAPHY HELPERS
========================================= */
.f-editorial {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
}
.f-ui { font-family: 'DM Sans', sans-serif; }

.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================
   LAYOUT
========================================= */
.wrap { max-width: var(--r); margin: 0 auto; padding: 0 48px; }
@media (max-width: 767px) { .wrap { padding: 0 24px; } }

/* =========================================
   HEADER
========================================= */
#hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-d);
}
.hd-inner {
  max-width: var(--r); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.hd-logo {
  display: flex; align-items: center; gap: 10px;
}
.hd-logo-mark {
  width: 42px; height: 42px;
  background: var(--green);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px; font-weight: 900;
  color: var(--black);
  border-radius: 9px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.hd-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}
.hd-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 9px 22px; border-radius: 100px;
  transition: background 0.2s;
}
.hd-cta:hover { background: var(--green-dark); color: #fff; }
@media (max-width: 767px) {
  .hd-inner { padding: 0 16px; }
  .hd-logo-text br,
  .hd-logo-text span { display: none; }
  .hd-logo-text { font-size: 14px; }
  .hd-cta { font-size: 11px; padding: 7px 12px; white-space: nowrap; }
}

/* =========================================
   HERO
========================================= */
#hero {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  padding-top: 64px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-monogram {
  position: absolute;
  right: -40px; bottom: -20px;
  width: min(560px, 52vw);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  .hero-monogram {
    width: 90vw;
    right: 50%; bottom: -10px;
    transform: translateX(50%);
    opacity: 0.15;
  }
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: min(700px, 90vw); height: min(700px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 100px 0 120px;
  width: 100%;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green);
  margin-bottom: 32px;
}
.hero-label-line {
  width: 24px; height: 1px; background: var(--green);
}
.hero-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 880px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 56px;
}
.hero-cta-group {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 16px 36px; border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.hero-cta-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 767px) {
  .hero-inner { padding: 56px 0 72px; }
  .hero-label { flex-wrap: wrap; gap: 6px; }
  .hero-h1 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 24px; }
  .hero-sub { font-size: 14px; line-height: 1.8; margin-bottom: 36px; }
  .hero-cta-group { gap: 16px; }
  .hero-cta-note { font-size: 11px; }
  .section-h2 { font-size: 26px; }
  .cta-final-h { font-size: 34px; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* =========================================
   SECTION COMMON
========================================= */
.section-label-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-label-row .label { color: var(--mid); }
.section-label-row .label.on-dark { color: rgba(255,255,255,0.4); }
.section-num {
  font-family: 'Fraunces', serif;
  font-size: 11px; font-weight: 700;
  color: var(--green); letter-spacing: 0.1em;
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-h2.light { color: var(--white); }
.section-h2 em { font-style: italic; color: var(--green); }
.section-intro {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 560px;
}
.section-intro.light { color: rgba(255,255,255,0.5); }

/* =========================================
   PAIN SECTION
========================================= */
#pain {
  background: var(--off-white);
  padding: 112px 0;
}
.pain-header { margin-bottom: 64px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}
.pain-item {
  background: var(--off-white);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s;
}
.pain-item:hover { background: #fff; }
.pain-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700;
  color: var(--green); letter-spacing: 0.08em;
}
.pain-text {
  font-size: 15px; font-weight: 700; line-height: 1.55;
  letter-spacing: -0.01em;
}
.pain-cta { text-align: center; }
@media (max-width: 1023px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

/* =========================================
   WHY SECTION
========================================= */
#why {
  background: var(--black);
  color: var(--white);
  padding: 112px 0;
}
.why-header { margin-bottom: 72px; }
.why-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border-d);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 64px;
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-d);
  transition: background 0.2s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: rgba(255,255,255,0.03); }
.why-num-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 700;
  color: var(--green); line-height: 1;
  letter-spacing: -0.02em;
}
.why-title-cell {
  padding: 40px 36px;
  border-right: 1px solid var(--border-d);
  display: flex; align-items: center;
}
.why-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.why-desc-cell {
  padding: 40px 36px;
  display: flex; align-items: center;
}
.why-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; }
.why-cta { text-align: center; }
@media (max-width: 767px) {
  .why-item { grid-template-columns: 48px 1fr; }
  .why-num-cell { padding: 24px 16px; }
  .why-title-cell { border-right: none; grid-column: 2; padding: 24px 20px 8px; border-bottom: none; }
  .why-desc-cell { grid-column: 1 / -1; padding: 0 20px 24px; border-right: none; }
  .why-num { font-size: 22px; }
}

/* =========================================
   PR NOTICE
========================================= */
.pr-notice {
  display: inline-block;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.2);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-top: 16px;
}

/* =========================================
   RANKING SECTION
========================================= */
#ranking {
  background: var(--white);
  padding: 112px 0;
}
.ranking-header { margin-bottom: 48px; }
.ranking-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; }

.r-card {
  border: 1px solid var(--border-l);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  transition: box-shadow 0.25s, transform 0.2s;
  background: #fff;
}
.r-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.r-bar { width: 5px; flex-shrink: 0; }
.r-bar-1 { background: var(--green); }
.r-bar-2 { background: #c0c0c0; }
.r-bar-3 { background: #cd7c43; }

.r-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.r-body {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 0;
}

.r-meta {
  padding: 36px 32px;
  border-right: 1px solid var(--border-l);
  display: flex; flex-direction: column; justify-content: center;
  gap: 8px;
}
.r-badge {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid);
}
.r-pr-badge {
  display: inline-block;
  background: rgba(0,200,150,0.1);
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
}
.r-medal { font-size: 18px; }
.r-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.r-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--mid);
  margin-top: 2px;
  line-height: 1.5;
}
.r-stars { color: #f59e0b; font-size: 13px; margin-top: 4px; }

.r-features {
  padding: 36px 40px;
  border-right: 1px solid var(--border-l);
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
.r-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13.5px; line-height: 1.6;
}
.r-feature:last-child { border-bottom: none; }
.r-feature::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.r-cta {
  padding: 36px 28px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 10px;
  text-align: center;
}
.r-btn {
  display: block; width: 100%;
  background: var(--black); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 14px 16px; border-radius: 10px;
  transition: background 0.2s;
  text-align: center;
}
.r-btn:hover { background: var(--green); color: var(--black); }
.r-card:first-child .r-btn { background: var(--green); color: var(--black); }
.r-card:first-child .r-btn:hover { background: var(--green-dark); color: #fff; }
.r-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--mid);
}

.r-testimonial {
  border-top: 1px solid var(--border-l);
  padding: 20px 36px 24px;
  background: #fafafa;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.r-t-icon {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -4px;
}
.r-t-inner { flex: 1; }
.r-t-text {
  font-size: 13px;
  font-style: italic;
  color: #666;
  line-height: 1.85;
  margin-bottom: 6px;
}
.r-t-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #aaa;
}

.r-card:first-child {
  border-color: rgba(0,200,150,0.25);
  box-shadow: 0 4px 24px rgba(0,200,150,0.08);
}

@media (max-width: 1023px) {
  .r-body { grid-template-columns: 1fr 160px; }
  .r-features { border-right: none; grid-column: 1; }
  .r-cta { border-top: 1px solid var(--border-l); grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
  .r-btn { width: auto; }
  .r-testimonial { padding: 16px 24px 20px; }
}
@media (max-width: 767px) {
  .r-body { grid-template-columns: 1fr; }
  .r-meta { padding: 24px 20px 16px; border-right: none; border-bottom: 1px solid var(--border-l); }
  .r-features { padding: 20px 20px; border-right: none; border-bottom: 1px solid var(--border-l); }
  .r-cta { flex-direction: column; padding: 20px; }
  .r-btn { width: 100%; }
  .r-testimonial { padding: 16px 20px 20px; }
}

/* Banner ad inside ranking card */
.r-banner {
  border-top: 1px solid var(--border-l);
  padding: 24px;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}
.r-banner a { display: block; border-radius: 8px; overflow: hidden; line-height: 0; }
.r-banner img { max-width: 300px; width: 100%; height: auto; border-radius: 8px; }

.ranking-cta { text-align: center; }

/* =========================================
   FLOW SECTION
========================================= */
#flow {
  background: var(--off-white);
  padding: 112px 0;
}
.flow-header { margin-bottom: 72px; }
.flow-list {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 64px;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0%, rgba(0,200,150,0.2) 100%);
  z-index: 0;
}
.flow-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}
.flow-num-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.flow-item:first-child .flow-num-wrap { background: var(--green); }
.flow-num {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green); line-height: 1;
}
.flow-item:first-child .flow-num { color: var(--black); }
.flow-title {
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.flow-desc {
  font-size: 12.5px; color: var(--mid);
  line-height: 1.75;
}
.flow-cta { text-align: center; }
@media (max-width: 767px) {
  .flow-list { flex-direction: column; gap: 0; }
  .flow-list::before { top: 32px; left: 32px; right: auto; bottom: 32px; width: 1px; height: auto; }
  .flow-item { flex-direction: row; text-align: left; padding: 16px 0; gap: 20px; align-items: flex-start; }
  .flow-num-wrap { flex-shrink: 0; margin-bottom: 0; width: 56px; height: 56px; }
}

/* =========================================
   TESTIMONIALS (Swiper)
========================================= */
#testimonials {
  background: var(--black);
  color: var(--white);
  padding: 112px 0;
  overflow: hidden;
}
.testimonials-header { margin-bottom: 64px; }
.swiper-testimonials {
  overflow: visible;
  padding-bottom: 48px;
}
.t-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-d);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  height: auto;
  transition: background 0.2s, border-color 0.2s;
}
.t-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(0,200,150,0.3);
}
.t-quote {
  font-family: 'Fraunces', serif;
  font-size: 56px; font-weight: 700;
  line-height: 1;
  color: var(--green);
  opacity: 0.6;
}
.t-result {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-d);
}
.t-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
.t-text strong { color: var(--white); font-weight: 700; }
.t-author {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.t-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white);
}
.t-role { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.t-stars { color: #f59e0b; font-size: 13px; margin-top: 3px; }
.swiper-testimonials .swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; }
.swiper-testimonials .swiper-pagination-bullet-active { background: var(--green) !important; }
.t-nav { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.t-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-d);
  background: transparent; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.t-nav-btn:hover { border-color: var(--green); background: var(--green-dim); }
.t-pagination { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}
.t-dot.active { background: var(--green); width: 20px; border-radius: 3px; }

/* =========================================
   FAQ
========================================= */
#faq { background: var(--white); padding: 112px 0; }
.faq-header { margin-bottom: 64px; }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border-l);
  overflow: hidden;
  max-height: 72px;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.faq-item.open { max-height: 400px; }
.faq-q {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 0;
}
.faq-q-letter {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green); flex-shrink: 0;
  width: 24px;
}
.faq-q-text {
  flex: 1;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.5;
}
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--green); }
.faq-a {
  display: flex; gap: 18px;
  padding: 0 0 28px;
}
.faq-a-letter {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  color: var(--mid); flex-shrink: 0; width: 24px;
}
.faq-a-text { font-size: 14px; color: var(--mid); line-height: 1.9; }
.faq-cta { margin-top: 56px; }

/* =========================================
   FINAL CTA
========================================= */
#cta-final {
  background: var(--black);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; top: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 48px;
}
.cta-final-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-final-h em { font-style: italic; color: var(--green); }
.cta-final-right {
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
  max-width: 300px;
}
.cta-final-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
@media (max-width: 767px) {
  .cta-final-inner { flex-direction: column; align-items: flex-start; }
  .cta-final-right { max-width: 100%; width: 100%; }
  .btn-primary.full { width: 100%; justify-content: center; }
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: #060606;
  padding: 48px 0;
  border-top: 1px solid var(--border-d);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.2);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 12px;
}
.footer-pr {
  font-size: 11px; color: rgba(255,255,255,0.15);
  margin-top: 6px; line-height: 1.6;
}

/* =========================================
   FADE-IN
========================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
