@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
  --bg:       #FAFAF8;
  --white:    #FFFFFF;
  --surface:  #F5F6F7;
  --bl:       #DCEEFF;
  --tl:       #DDF8F0;
  --pl:       #EEE5FF;
  --text:     #111111;
  --body:     #555555;
  --muted:    #888888;
  --border:   rgba(0,0,0,0.07);
  --r:        14px;
  --sh:       0 2px 16px rgba(0,0,0,0.06);
  --sh2:      0 8px 40px rgba(0,0,0,0.10);
  --ease:     cubic-bezier(.4,0,.2,1);
  --dur:      .28s;
  --max:      1280px;
  --pad:      40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 3% 3%,  rgba(220,238,255,.4), transparent 55%),
    radial-gradient(ellipse 50% 45% at 97% 5%,  rgba(238,229,255,.35),transparent 50%),
    radial-gradient(ellipse 55% 45% at 96% 95%, rgba(221,248,240,.4), transparent 55%),
    radial-gradient(ellipse 40% 35% at  5% 95%, rgba(220,238,255,.25),transparent 50%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  box-sizing: border-box;
}
.text-center { text-align: center; }

/* ── Cursor ── */
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: #111; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width .2s,height .2s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(17,17,17,.25); pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: width .3s,height .3s,border-color .3s;
}
.cursor-ring.hovered { width: 50px; height: 50px; border-color: rgba(17,17,17,.5); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Chapter nav dots ── */
.chapter-nav {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 100;
}
.chapter-nav a {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(17,17,17,.18); display: block; transition: var(--dur) var(--ease);
}
.chapter-nav a.active, .chapter-nav a:hover {
  background: #111; transform: scale(1.4);
}
@media (max-width: 768px) { .chapter-nav { display: none; } }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 22px 0; transition: background var(--dur) var(--ease),
    padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(250,250,248,.88); padding: 13px 0;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-text {
  font-size: 17px; font-weight: 800; letter-spacing: -.01em;
  background: linear-gradient(135deg,#6d28d9,#0284c7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex; align-items: center; flex-direction: row;
  gap: 4px; list-style: none;
}
.main-nav a {
  display: inline-flex; align-items: center; padding: 8px 14px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  color: rgba(17,17,17,.65); transition: background var(--dur),color var(--dur);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: rgba(0,0,0,.05); color: #111; }
.nav-cta {
  padding: 8px 20px !important; border-radius: 40px !important;
  background: linear-gradient(135deg,#a78bfa,#38bdf8) !important;
  color: #fff !important; font-weight: 600 !important;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(167,139,250,.35) !important; transform: translateY(-1px); }
.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px; color: #111;
}
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 99; }
.nav-overlay.show { display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-weight: 700;
  font-size: 14px; cursor: pointer; border: none;
  transition: var(--dur) var(--ease); font-family: inherit;
  white-space: nowrap; text-decoration: none;
}
.btn-dark {
  background: #111; color: #fff; box-shadow: 0 3px 16px rgba(0,0,0,.15);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline {
  background: transparent; color: #111; border: 1.5px solid rgba(17,17,17,.2);
}
.btn-outline:hover { border-color: #111; background: rgba(0,0,0,.04); }
.btn-primary {
  background: linear-gradient(135deg,#a78bfa,#38bdf8); color: #fff;
  box-shadow: 0 4px 20px rgba(167,139,250,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(167,139,250,.4); }

/* ── Utility ── */
.gradient-text {
  background: linear-gradient(135deg,#7c3aed 0%,#0ea5e9 60%,#059669 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.live-dot-sm {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; animation: lp 1.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes lp { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }
.icon { width: 20px; height: 20px; flex-shrink: 0; vertical-align: middle; }

/* ── Hero 40/60 ── */
.hero {
  padding: 140px 0 120px;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 40fr 60fr;
  gap: 64px; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.hero-left { max-width: 480px; }
.hero-eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: #999; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(44px,5.5vw,72px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.035em;
  margin-bottom: 20px; color: #111;
}
.hero-subtitle {
  font-size: 17px; color: var(--body); line-height: 1.75; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-live-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: #888;
}

/* Hero gallery — 6-card grid */
.hero-right { height: 520px; }
.content-gallery {
  width: 100%; height: 520px;
  display: grid; grid-template-columns: repeat(6,1fr);
  grid-template-rows:  repeat(6,1fr); gap: 14px;
}
.gallery-card {
  background: #fff; border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r); box-shadow: var(--sh); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.gc-main { grid-column: 1/4; grid-row: 1/5; }
.gc-cover {
  flex: 1; min-height: 180px; overflow: hidden;
  background: linear-gradient(135deg,var(--pl),var(--bl));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.gc-cover-avatar { width:100%; height:100%; object-fit:cover; }
.gc-play-btn {
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,.9); display:flex; align-items:center;
  justify-content:center; font-size:14px; box-shadow:var(--sh); padding-left:2px;
}
.gc-body { padding: 14px 18px; }
.gc-platform-badge {
  font-size:10px; font-weight:700; letter-spacing:.15em; color:#7c3aed;
  text-transform:uppercase; margin-bottom:6px; display:block;
}
.gc-title { font-size:14px; font-weight:700; color:#111; margin-bottom:4px; }
.gc-views { font-size:12px; color:#888; }
.gc-stat {
  grid-column:4/7; grid-row:1/3; padding:20px 24px;
  justify-content:center; background:linear-gradient(135deg,#fff,#f8f9fb);
}
.gc-stat-num {
  font-size:32px; font-weight:800; letter-spacing:-.03em; line-height:1;
  background:linear-gradient(135deg,#7c3aed,#0ea5e9);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.gc-stat-label { font-size:12px; color:#888; margin-top:6px; }
.gc-tag {
  grid-column:4/7; grid-row:3/4; padding:12px 20px;
  flex-direction:row; align-items:center; gap:8px;
  font-size:13px; font-weight:600; color:#111;
}
.gc-tag-dot { width:8px; height:8px; border-radius:50%; background:#a78bfa; flex-shrink:0; }
.gc-platform {
  grid-column:4/7; grid-row:4/6; padding:18px 20px;
  flex-direction:row; align-items:center; gap:14px;
  background:linear-gradient(135deg,var(--tl),#fff);
}
.gc-platform-icon { font-size:28px; flex-shrink:0; }
.gc-platform-name { font-size:14px; font-weight:700; color:#111; margin-bottom:2px; }
.gc-platform-sub { font-size:11px; color:#666; }
.gc-badge-live {
  grid-column:1/4; grid-row:5/6; padding:12px 18px;
  flex-direction:row; align-items:center; gap:7px;
  font-size:11px; font-weight:700; letter-spacing:.12em; color:#059669;
}
.gc-trend {
  grid-column:1/7; grid-row:6/7; padding:12px 20px;
  flex-direction:row; align-items:center; gap:14px;
  background:linear-gradient(90deg,var(--pl),var(--bl));
}
.gc-trend-label {
  font-size:10px; font-weight:700; letter-spacing:.18em; color:#7c3aed;
  text-transform:uppercase; padding:3px 8px;
  background:rgba(255,255,255,.7); border-radius:4px;
}
.gc-trend-text { font-size:13px; font-weight:600; color:#111; }

/* ── Chapter sections ── */
/* Normal .chapter: centered container, no full-width bg */
.chapter {
  max-width: var(--max);
  margin: 0 auto;
  padding: 128px var(--pad);
  box-sizing: border-box;
}
/* .chapter-alt: full-width bg, content centered via > * */
.chapter-alt {
  max-width: none;
  margin: 0;
  padding: 128px 0;
  background: rgba(255,255,255,.55);
}
.chapter-alt > * {
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--pad); padding-right: var(--pad);
  box-sizing: border-box;
}
.chapter-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #aaa; margin-bottom: 18px;
}
.chapter-title {
  font-size: clamp(32px,4vw,52px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 20px; color: var(--text);
}
.chapter-desc, .intro-text {
  font-size: 17px; color: var(--body);
  line-height: 1.75; margin-bottom: 56px;
  max-width: 600px;
}
.intro-text { font-size: 20px; }
.keywords-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.keyword-tag {
  padding: 9px 18px; border-radius: 40px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 600; color: #333;
  transition: var(--dur) var(--ease); cursor: default;
}
.keyword-tag:hover { border-color: #a78bfa; color: #7c3aed; background: var(--pl); }

/* ── Pillar cards ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar-card {
  background: var(--white); border-radius: 20px; padding: 40px 32px;
  box-shadow: var(--sh); border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--sh2); }
.pillar-number {
  display: block; font-size: 40px; font-weight: 800;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 22px;
  background: linear-gradient(135deg,#c4b5fd,#7dd3fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pillar-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.pillar-card p  { font-size: 15px; color: var(--body); line-height: 1.75; }

/* ── Content Universe ── */
.universe-wrap {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border); box-shadow: var(--sh);
  overflow: hidden; margin-bottom: 32px;
}
#universe-canvas { display: block; width: 100% !important; height: 420px !important; }
.universe-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.universe-stat {
  background: var(--white); border-radius: 18px; padding: 28px 24px;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--sh);
}
.count-number {
  display: block; font-size: 44px; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg,#7c3aed,#0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 13px; color: #888; margin-top: 6px; display: block; font-weight: 500; }

/* ── Channel cards ── */
.channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.channel-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: var(--sh); border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none; color: inherit; display: block;
}
.channel-card:hover { transform: translateY(-8px); box-shadow: var(--sh2); }
.channel-cover {
  height: 200px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.cc-purple { background: linear-gradient(135deg,var(--pl),var(--bl)); }
.cc-blue   { background: linear-gradient(135deg,var(--bl),var(--tl)); }
.cc-teal   { background: linear-gradient(135deg,var(--tl),rgba(220,252,231,.8)); }
.channel-avatar {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.8); box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.channel-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85); display: flex; align-items: center;
  justify-content: center; font-size: 14px; box-shadow: var(--sh); padding-left: 3px;
}
.channel-badge-live {
  position: absolute; top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  color: #059669; background: rgba(255,255,255,.9); padding: 4px 10px; border-radius: 50px;
}
.channel-info { padding: 22px 24px; }
.channel-platform {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(135deg,#7c3aed,#0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.channel-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.channel-info p  { font-size: 14px; color: var(--body); margin-bottom: 14px; line-height: 1.6; }
.channel-metrics {
  display: flex; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 14px 0;
}
.cm-item { flex: 1; text-align: center; padding: 12px 4px; border-right: 1px solid var(--border); }
.cm-item:last-child { border-right: none; }
.cm-num  { display: block; font-size: 18px; font-weight: 800; color: #111; letter-spacing: -.02em; }
.cm-lbl  { font-size: 11px; color: #999; margin-top: 2px; }
.channel-visit {
  display: inline-block; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg,#7c3aed,#0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.channel-stats { font-size: 13px; color: #888; display: flex; flex-direction: column; gap: 4px; }
.channel-soon { opacity: .7; }
.channel-soon-tag {
  font-size: 13px; font-weight: 700; color: #888;
  background: rgba(255,255,255,.7); padding: 8px 18px;
  border-radius: 50px; backdrop-filter: blur(4px);
}

/* ── Status dark section ── */
.status-section { background:#111; color:#fff; padding:112px 0; }
.status-inner { max-width:var(--max); margin:0 auto; padding:0 var(--pad); }
.status-header { text-align:center; margin-bottom:64px; }
.live-badge { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:.15em; color:#22c55e; text-transform:uppercase; margin-bottom:20px; }
.status-header h2 { font-size:clamp(32px,4vw,52px); font-weight:800; letter-spacing:-.03em; }
.status-header p { color:rgba(255,255,255,.45); font-size:16px; margin-top:10px; }
.status-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.07); }
.status-item { padding:44px 24px; border-right:1px solid rgba(255,255,255,.07); text-align:center; transition:background var(--dur) var(--ease); }
.status-item:last-child { border-right:none; }
.status-item:hover { background:rgba(255,255,255,.03); }
.status-num { display:block; font-size:52px; font-weight:800; letter-spacing:-.04em; color:#fff; line-height:1; }
.status-lbl { font-size:12px; color:rgba(255,255,255,.38); margin-top:12px; display:block; letter-spacing:.08em; text-transform:uppercase; }

/* ── BTS flow ── */
.bts-flow { display:flex; align-items:flex-start; margin-top:48px; overflow-x:auto; padding-bottom:4px; }
.bts-step { flex:1; min-width:130px; text-align:center; padding:0 12px; }
.bts-num { width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,var(--pl),var(--bl)); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; color:#7c3aed; margin:0 auto 14px; }
.bts-step h4 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:6px; }
.bts-step p { font-size:13px; color:var(--muted); line-height:1.5; }
.bts-arrow { flex-shrink:0; font-size:18px; color:#ccc; margin-top:15px; padding:0 4px; }

/* ── Ending ── */
.ending-section { padding:160px 0 128px; }
.ending-section>.container { text-align:center; }
.ending-title { font-size:clamp(36px,5vw,64px); font-weight:800; letter-spacing:-.04em; line-height:1.1; margin-bottom:18px; color:var(--text); }
.ending-sub { font-size:17px; color:#888; margin-bottom:44px; letter-spacing:.05em; }
.ending-section .btn { margin:0 8px; }

/* ── Footer ── */
.site-footer { background:var(--surface); border-top:1px solid var(--border); padding:44px 0; }
.footer-inner { display:flex; flex-direction:column; align-items:center; gap:10px; max-width:var(--max); margin:0 auto; padding:0 var(--pad); }
.footer-logo { font-size:16px; font-weight:800; background:linear-gradient(135deg,#6d28d9,#0284c7); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.footer-tagline { font-size:14px; color:#888; }
.footer-copy { font-size:12px; color:#bbb; margin-top:4px; }
.footer-copy a { color:#bbb; }
.footer-copy a:hover { color:#666; }

/* ── Inner hero pages ── */
.inner-hero { padding:180px 0 72px; }
.inner-title { font-size:clamp(40px,5.5vw,68px); font-weight:800; letter-spacing:-.04em; line-height:1.06; margin-bottom:18px; color:var(--text); }
.inner-sub { font-size:18px; color:var(--body); max-width:520px; }

/* ── Creator archive ── */
.creator-archive { display:grid; grid-template-columns:220px 1fr; gap:56px; align-items:center; background:var(--white); border-radius:24px; padding:56px; box-shadow:var(--sh2); border:1px solid var(--border); }
.ca-left { text-align:center; }
.ca-avatar { width:144px; height:144px; border-radius:50%; object-fit:cover; margin:0 auto 16px; border:4px solid #fff; box-shadow:0 8px 28px rgba(0,0,0,.12); display:block; }
.ca-live { display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:#059669; }
.ca-name { font-size:28px; font-weight:800; letter-spacing:-.02em; margin-bottom:5px; }
.ca-id { font-size:14px; color:var(--muted); margin-bottom:14px; }
.ca-sign { font-size:15px; color:var(--body); line-height:1.7; margin-bottom:22px; white-space:pre-line; }
.ca-metrics { display:flex; gap:36px; margin-bottom:26px; }
.ca-num { display:block; font-size:30px; font-weight:800; letter-spacing:-.02em; background:linear-gradient(135deg,#7c3aed,#0ea5e9); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.ca-lbl { font-size:13px; color:var(--muted); }
.ca-updated { font-size:12px; color:#bbb; margin-top:14px; }

/* ── Method / Values ── */
.method-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.method-card { background:var(--white); border-radius:20px; padding:40px 32px; box-shadow:var(--sh); border:1px solid var(--border); transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease); }
.method-card:hover { transform:translateY(-8px); box-shadow:var(--sh2); }
.method-icon { font-size:36px; margin-bottom:18px; display:block; }
.method-card h3 { font-size:20px; font-weight:700; margin-bottom:12px; }
.method-card p { font-size:15px; color:var(--body); line-height:1.75; }
.direction-grid { display:flex; flex-wrap:wrap; gap:12px; }
.direction-tag { padding:12px 24px; border-radius:50px; font-size:15px; font-weight:600; background:var(--white); border:1.5px solid var(--border); color:var(--text); box-shadow:var(--sh); transition:var(--dur) var(--ease); }
.direction-tag:hover { border-color:#a78bfa; color:#7c3aed; transform:translateY(-2px); background:var(--pl); }
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.value-item { background:var(--white); border-radius:20px; padding:40px 32px; box-shadow:var(--sh); border:1px solid var(--border); transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease); }
.value-item:hover { transform:translateY(-6px); box-shadow:var(--sh2); }
.value-num { display:block; font-size:36px; font-weight:800; letter-spacing:-.04em; margin-bottom:16px; background:linear-gradient(135deg,#c4b5fd,#7dd3fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.value-item h3 { font-size:20px; font-weight:700; margin-bottom:12px; }
.value-item p { font-size:15px; color:var(--body); line-height:1.75; }

/* ── Timeline new ── */
.timeline-new { max-width:720px; }
.tl-item { display:grid; grid-template-columns:110px 1fr; gap:32px; padding:24px 0; border-top:1px solid var(--border); align-items:start; }
.tl-item:last-child { border-bottom:1px solid var(--border); }
.tl-year { font-size:26px; font-weight:800; letter-spacing:-.02em; background:linear-gradient(135deg,#7c3aed,#0ea5e9); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.tl-content h4 { font-size:19px; font-weight:700; margin-bottom:8px; }
.tl-content p { font-size:15px; color:var(--body); line-height:1.7; }
.brand-statement { max-width:800px; }
.bs-lead { font-size:clamp(22px,3vw,36px); font-weight:700; line-height:1.5; letter-spacing:-.02em; margin-bottom:28px; }
.bs-body { font-size:17px; color:var(--body); line-height:1.85; }

/* ── Page loader ── */
#page-loader { position:fixed; inset:0; background:var(--bg); z-index:10000; display:flex; align-items:center; justify-content:center; transition:opacity .6s ease,visibility .6s ease; }
#page-loader.hidden { opacity:0; visibility:hidden; }
.loader-dot { width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,#a78bfa,#7dd3fc); animation:lp 1s ease-in-out infinite; }

/* ── Responsive ── */
@media (max-width:1100px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-right, .content-gallery { display:none; }
  .pillars-grid, .channels-grid, .method-grid { grid-template-columns:repeat(2,1fr); }
  .universe-stats, .status-grid { grid-template-columns:repeat(2,1fr); }
  .status-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.07); }
  .chapter { padding:96px var(--pad); }
  .chapter-alt { padding:96px 0; }
  .creator-archive { grid-template-columns:1fr; text-align:center; padding:40px 32px; }
  .ca-metrics { justify-content:center; }
}
@media (max-width:768px) {
  :root { --pad:20px; }
  .hero { padding:108px 0 72px; }
  .hero-title { font-size:44px; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { width:100%; justify-content:center; }
  .chapter, .chapter-alt>* { padding-left:20px; padding-right:20px; }
  .chapter { padding-top:80px; padding-bottom:80px; }
  .chapter-alt { padding:80px 0; }
  .chapter-title { font-size:30px; }
  .pillars-grid, .channels-grid, .method-grid, .values-grid { grid-template-columns:1fr; gap:16px; }
  .universe-stats { grid-template-columns:repeat(2,1fr); gap:12px; }
  .status-grid { grid-template-columns:repeat(2,1fr); }
  .bts-flow { flex-wrap:wrap; gap:20px; }
  .bts-arrow { display:none; }
  .ending-section { padding:96px 0 80px; }
  .inner-hero { padding:140px 0 56px; }
  .inner-title { font-size:40px; }
  .timeline-new .tl-item { grid-template-columns:1fr; gap:8px; }
  .main-nav {
    display:none; position:absolute; top:100%; right:12px;
    background:rgba(255,255,255,.98); backdrop-filter:blur(16px);
    padding:12px; border-radius:12px; box-shadow:0 8px 32px rgba(0,0,0,.08);
    min-width:200px;
  }
  .main-nav.open { display:block; }
  .main-nav.open ul { flex-direction:column; align-items:stretch; gap:4px; }
  .main-nav.open a { display:block; padding:10px 14px; color:var(--text); }
  .mobile-toggle { display:inline-flex; }
}
@media (max-width:480px) {
  .hero-title { font-size:38px; }
  .chapter-title { font-size:28px; }
  .ending-title { font-size:34px; }
  .universe-stats, .status-grid { grid-template-columns:1fr; }
  .ca-metrics { gap:20px; }
}

/* ═══════════════════════════════════════════
   NEWS PAGE — Magazine layout
   ═══════════════════════════════════════════ */
.news-page { padding-top: 88px; }

/* Page header */
.news-page-header {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(238,229,255,.25) 0%, transparent 100%);
}
.news-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
}
.news-breadcrumb a { color: var(--muted); transition: color .2s; }
.news-breadcrumb a:hover { color: #7c3aed; }
.news-breadcrumb span:not(:last-child) { color: #ccc; }
.news-page-title {
  font-size: clamp(40px,5vw,64px); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.05;
  margin-bottom: 12px; color: var(--text);
}
.news-page-sub { font-size: 17px; color: var(--body); }

/* Filter bar (sticky-ish) */
.news-filter-bar {
  border-bottom: 1px solid var(--border);
  background: rgba(250,250,248,.9);
  backdrop-filter: blur(10px);
  position: sticky; top: 70px; z-index: 50;
}
.news-filter-nav {
  display: flex; gap: 4px; padding: 12px 0; overflow-x: auto;
  scrollbar-width: none;
}
.news-filter-nav::-webkit-scrollbar { display: none; }
.nf-tab {
  padding: 9px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  transition: all .25s var(--ease); white-space: nowrap;
  border: 1px solid transparent;
}
.nf-tab:hover { color: #111; background: rgba(0,0,0,.04); }
.nf-tab.active {
  background: #111; color: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

.news-container { padding-top: 56px; padding-bottom: 96px; }

/* Featured article — large horizontal card */
.news-featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 48px; align-items: center;
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: var(--sh);
  border: 1px solid var(--border);
  margin-bottom: 64px; text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.news-featured:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.nf-image {
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg,var(--pl),var(--bl));
}
.nf-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.news-featured:hover .nf-image img { transform: scale(1.03); }
.nf-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#c4b5fd 0%,#7dd3fc 100%);
  color: rgba(255,255,255,.6); position: relative;
}
.nf-cat-bg {
  font-size: clamp(48px,7vw,88px); font-weight: 800;
  letter-spacing: -.04em; color: rgba(255,255,255,.35);
}
.nf-body { padding: 48px 48px 48px 8px; }
.nf-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.nf-cat-tag {
  padding: 5px 12px; border-radius: 20px;
  background: linear-gradient(135deg,var(--pl),var(--bl));
  color: #7c3aed; font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
}
.nf-time { font-size: 13px; color: var(--muted); }
.nf-title {
  font-size: clamp(24px,2.6vw,32px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.25;
  margin-bottom: 16px; color: var(--text);
}
.nf-summary {
  font-size: 16px; color: var(--body); line-height: 1.75;
  margin-bottom: 24px; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nf-cta {
  font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg,#7c3aed,#0ea5e9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Grid cards */
.news-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.ng-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ng-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
.ng-image {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(135deg,var(--pl),var(--tl));
}
.ng-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.ng-card:hover .ng-image img { transform: scale(1.06); }
.ng-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#a78bfa 0%,#7dd3fc 100%);
}
.ng-placeholder span {
  font-size: 44px; font-weight: 800; letter-spacing: -.02em;
  color: rgba(255,255,255,.85);
}
.ng-cat {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  color: #7c3aed; font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.ng-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.ng-time {
  font-size: 12px; color: var(--muted);
  letter-spacing: .06em; margin-bottom: 10px;
}
.ng-title {
  font-size: 18px; font-weight: 700; line-height: 1.4;
  margin-bottom: 10px; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.ng-summary {
  font-size: 14px; color: var(--body); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}

/* Pagination */
.news-pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin-top: 72px;
}
.np-btn {
  min-width: 40px; height: 40px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--white);
  border: 1px solid var(--border); font-size: 14px; font-weight: 600;
  color: var(--text); transition: var(--dur) var(--ease);
}
.np-btn:hover { border-color: #111; background: #f5f5f5; }
.np-btn.active {
  background: #111; color: #fff; border-color: #111;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

.news-empty { text-align: center; padding: 96px 0; color: var(--muted); font-size: 15px; }

/* Responsive */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .news-featured { grid-template-columns: 1fr; gap: 0; }
  .nf-body { padding: 32px; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-page-header { padding: 48px 0 32px; }
  .news-container { padding-top: 40px; }
  .news-filter-bar { top: 60px; }
}

/* ═══════════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════════ */
.article-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 56px;
  padding-top: 40px; padding-bottom: 96px;
}
.article-main {
  background: var(--white); border-radius: 20px;
  padding: 56px 64px; border: 1px solid var(--border);
  box-shadow: var(--sh);
}
.article-head { padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.article-cat {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: linear-gradient(135deg,var(--pl),var(--bl));
  color: #7c3aed; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 20px;
}
.article-title {
  font-size: clamp(28px,3.4vw,40px); font-weight: 800;
  letter-spacing: -.025em; line-height: 1.25;
  margin-bottom: 20px; color: var(--text);
}
.article-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.am-dot { color: #ddd; }
.article-cover {
  margin: 0 0 40px; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/9; background: linear-gradient(135deg,var(--pl),var(--bl));
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-content {
  font-size: 16px; line-height: 1.9; color: #333;
}
.article-content p { margin-bottom: 20px; }
.article-content h2 {
  font-size: 24px; font-weight: 800; margin: 40px 0 16px;
  color: var(--text); letter-spacing: -.02em;
}
.article-content h3 {
  font-size: 20px; font-weight: 700; margin: 32px 0 14px;
  color: var(--text);
}
.article-content img {
  max-width: 100%; border-radius: 12px; margin: 20px 0;
}
.article-content ul, .article-content ol {
  padding-left: 24px; margin-bottom: 20px;
}
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 4px solid #a78bfa; padding: 14px 20px;
  margin: 24px 0; background: rgba(238,229,255,.3);
  border-radius: 0 12px 12px 0; color: #555; font-style: italic;
}
.article-content a { color: #7c3aed; text-decoration: underline; }
.article-content code {
  background: rgba(0,0,0,.05); padding: 2px 8px; border-radius: 4px;
  font-size: 90%; font-family: ui-monospace, monospace;
}
.article-footer {
  display: flex; justify-content: space-between; gap: 12px;
  padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* Sidebar */
.article-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; align-self: start; }
.side-card {
  background: var(--white); border-radius: 16px; padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--sh);
}
.side-title {
  font-size: 15px; font-weight: 800; letter-spacing: -.01em;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
  color: var(--text);
}
.side-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.side-list a {
  display: block; padding: 10px 0; border-radius: 6px;
  transition: color .2s; text-decoration: none;
}
.side-list a:hover .sl-title { color: #7c3aed; }
.sl-title {
  display: block; font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.5; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sl-time { font-size: 12px; color: var(--muted); }
.side-cta p { font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }

@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-side { position: static; }
  .article-main { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .article-main { padding: 32px 20px; }
  .article-content { font-size: 15px; }
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════ */
.services-page .inner-hero { padding: 152px 0 56px; }
.services-section {
  padding: 40px 0 96px;
}
.services-grid-new {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.svc-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 40px 36px; background: var(--white);
  border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--sh); align-items: start;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
.svc-num {
  font-size: 44px; font-weight: 800; letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg,#c4b5fd,#7dd3fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-title {
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
  color: var(--text); letter-spacing: -.01em;
}
.svc-desc {
  font-size: 15px; color: var(--body); line-height: 1.75;
}
.svc-detail {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--border);
}

/* Process */
.process-section {
  padding: 112px 0; background: rgba(255,255,255,.55);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.process-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.process-title {
  font-size: clamp(28px,3.8vw,44px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; margin: 14px 0 14px;
}
.process-sub { font-size: 16px; color: var(--body); }
.process-flow {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative;
}
.pf-step { position: relative; padding: 0 16px; text-align: center; }
.pf-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 2px solid #a78bfa;
  font-size: 15px; font-weight: 800; color: #7c3aed;
  margin: 0 auto 20px; position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(167,139,250,.25);
}
.pf-line {
  position: absolute; top: 28px; left: 50%; right: -50%; height: 2px;
  background: linear-gradient(90deg,#a78bfa,#7dd3fc);
  z-index: 1;
}
.pf-step:last-child .pf-line { display: none; }
.pf-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.pf-content p { font-size: 14px; color: var(--body); line-height: 1.7; }

/* Services CTA */
.svc-cta { padding: 128px 0; }
.svc-cta-inner {
  text-align: center; max-width: 720px; margin: 0 auto;
  padding: 72px 56px; background: linear-gradient(135deg,#111 0%,#1e1b2e 100%);
  border-radius: 24px; color: #fff; position: relative; overflow: hidden;
}
.svc-cta-inner::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle,rgba(167,139,250,.35),transparent 70%);
}
.svc-cta-title {
  font-size: clamp(28px,3.4vw,40px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px;
  position: relative;
}
.svc-cta-sub { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; position: relative; }
.svc-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.svc-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); }
.svc-cta .btn-outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-page .inner-hero { padding: 152px 0 56px; }
.contact-section { padding: 40px 0 128px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px;
  align-items: start;
}
.ci-block { margin-bottom: 40px; }
.ci-heading {
  font-size: 30px; font-weight: 800; letter-spacing: -.025em;
  margin-bottom: 18px; color: var(--text);
}
.ci-lead { font-size: 16px; color: var(--body); line-height: 1.8; }
.ci-cards { display: flex; flex-direction: column; gap: 14px; }
.ci-card {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px; background: var(--white);
  border: 1px solid var(--border); border-radius: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ci-card:hover { transform: translateX(4px); box-shadow: var(--sh); border-color: rgba(167,139,250,.3); }
.ci-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--pl),var(--bl));
}
.ci-content { flex: 1; }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--text); }

/* Contact form */
.contact-form-wrap {
  background: var(--white); border-radius: 20px;
  padding: 44px 40px; border: 1px solid var(--border);
  box-shadow: var(--sh2);
}
.cf-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.cf-title { font-size: 22px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 6px; color: var(--text); }
.cf-sub { font-size: 14px; color: var(--muted); }
.cf-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field label { font-size: 13px; font-weight: 600; color: var(--body); }
.cf-field input, .cf-field select, .cf-field textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; background: #fafafa;
  font-size: 14px; font-family: inherit; color: var(--text);
  transition: border-color var(--dur), background var(--dur);
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: #a78bfa;
  background: #fff; box-shadow: 0 0 0 3px rgba(167,139,250,.12);
}
.cf-field textarea { min-height: 130px; resize: vertical; }
.cf-submit {
  padding: 14px 24px; border: none; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg,#7c3aed,#0ea5e9);
  color: #fff; font-size: 15px; font-weight: 700; font-family: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.4); }
.form-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; font-weight: 500; display: none; }
.form-alert.show, .form-alert.success, .form-alert.error, .form-alert.loading { display: block; }
.form-alert.success { background: rgba(34,197,94,.1); color: #059669; border: 1px solid rgba(34,197,94,.3); }
.form-alert.error { background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid rgba(239,68,68,.3); }
.form-alert.loading { background: rgba(59,130,246,.08); color: #2563eb; border: 1px solid rgba(59,130,246,.25); }

@media (max-width: 1024px) {
  .services-grid-new { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: repeat(2,1fr); gap: 32px 0; }
  .pf-step:nth-child(2) .pf-line,
  .pf-step:nth-child(4) .pf-line { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .svc-card { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .process-flow { grid-template-columns: 1fr; gap: 32px; }
  .pf-line { display: none !important; }
  .svc-cta-inner { padding: 48px 28px; }
  .contact-form-wrap { padding: 32px 24px; }
  .cf-row { grid-template-columns: 1fr; }
  .ci-heading { font-size: 26px; }
}
