/* ═══════════════════════════════════════════════
   STILLPEAK — hero.css
   Theme  : WHITE background + ICE BLUE accents
   Fonts  : Cormorant Garamond + Outfit
═══════════════════════════════════════════════ */

:root {
  --ice:         #A8D8EA;
  --ice-light:   #D6EFF8;
  --ice-mid:     #7BBFD8;
  --ice-dark:    #4A9BBF;
  --navy:        #0A1628;
  --white:       #FAFCFF;
  --bg:          #FAFCFF;
  --text-dark:   #0D1B2A;
  --text-mid:    #2C4A6E;
  --text-muted:  #6B8BA4;
  --border:      rgba(168, 216, 234, 0.4);
  --nav-h:       58px;
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Outfit', sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Background — white with subtle ice glow ─ */
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Subtle grid texture */
.hero-bg__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,216,234,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,216,234,0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Ice-blue ambient glow — top right */
.hero-bg__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(168,216,234,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(74,155,191,0.10) 0%, transparent 60%);
}

/* ── Mountain SVG silhouette ─────────────────── */
.hero-mountain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  pointer-events: none;
  line-height: 0;
}
.hero-mountain svg {
  width: 100%;
  display: block;
}

/* ── Layout ──────────────────────────────────── */
.hero-container {
  position: relative; z-index: 2;
  width: 92%; max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 60px 0 120px;
}

/* ══════════════════════════════════════════════
   LEFT — Text  (dark text on white bg)
══════════════════════════════════════════════ */
.hero-left { display: flex; flex-direction: column; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,216,234,0.15);
  border: 0.5px solid var(--ice);
  color: var(--ice-dark);
  font-size: 10px; font-weight: 300; letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 7px 16px; width: fit-content;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 7px #22c55e;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

/* Title */
.hero-title-wrap {
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 300; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 11vw, 96px);
  font-weight: 300; line-height: 0.9;
}
.hero-title__still { color: var(--text-dark); }
.hero-title__peak  { color: var(--ice-dark); font-style: italic; }
.hero-title__line  {
  width: 60px; height: 0.5px;
  background: var(--ice-dark); margin-top: 16px;
}

/* Fading role */
.hero-role {
  font-size: 14px; font-weight: 300; letter-spacing: 0.15em;
  color: var(--text-mid);
  margin-bottom: 24px; height: 22px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-role__dash { color: var(--ice-dark); font-size: 18px; }
#fadingRole { transition: opacity 0.4s ease, transform 0.4s ease; }

/* Bio */
.hero-bio {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: var(--text-mid);
  max-width: 400px; margin-bottom: 36px;
  border-left: 1px solid var(--ice-dark);
  padding-left: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
}

/* Buttons */
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.btn-primary, .btn-outline, .btn-ghost {
  font-family: var(--ff-body);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 13px 26px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; border: none;
  transition: all 0.3s var(--ease);
}

/* Solid ice-blue button */
.btn-primary {
  background: var(--ice-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy);
  letter-spacing: 0.42em;
}
.btn-primary i { font-size: 9px; }

/* Outline button */
.btn-outline {
  background: transparent;
  color: var(--ice-dark);
  border: 0.5px solid var(--ice-dark);
}
.btn-outline:hover {
  background: var(--ice-light);
  color: var(--navy);
}

/* Ghost text button */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--ice-dark); }

/* Socials */
.hero-socials {
  display: flex; gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.95s forwards;
}
.hero-social {
  width: 38px; height: 38px;
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px;
  transition: all 0.3s var(--ease);
}
.hero-social:hover {
  border-color: var(--ice-dark);
  color: var(--ice-dark);
  background: var(--ice-light);
}

/* ══════════════════════════════════════════════
   RIGHT — Orb  (ice-blue on white)
══════════════════════════════════════════════ */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.5s forwards;
}

.orb-wrapper { position: relative; width: 300px; height: 300px; }

.orb-core {
  position: absolute; inset: 25%;
  display: flex; align-items: center; justify-content: center;
}

.orb-center {
  position: relative; z-index: 3;
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-light) 0%, var(--ice) 100%);
  border: 1px solid var(--ice-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--ice-dark);
  box-shadow:
    0 0 0 8px rgba(168,216,234,0.12),
    0 0 30px rgba(168,216,234,0.25);
}

.orb-ring {
  position: absolute; border-radius: 50%;
  border: 0.5px solid rgba(74,155,191,0.25);
}
.orb-ring--1 { inset: -22px; animation: spin 12s linear infinite; }
.orb-ring--2 { inset: -44px; transform: rotateX(65deg); border-color: rgba(74,155,191,0.15); animation: spin 18s linear infinite reverse; }
.orb-ring--3 { inset: -66px; transform: rotateY(65deg); border-color: rgba(74,155,191,0.09); animation: spin 26s linear infinite; }
@keyframes spin { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

.orb-particle {
  position: absolute; top: 50%; left: 50%;
  font-size: 15px; color: var(--ice-mid);
  opacity: 0.7; cursor: pointer;
  transition: opacity 0.3s, color 0.3s;
}
.orb-particle:hover { opacity: 1; color: var(--ice-dark); }

/* Outer orbit */
.orb-orbit--outer .p1 { animation: orbitCW  14s linear infinite 0s; }
.orb-orbit--outer .p2 { animation: orbitCW  14s linear infinite -2.3s; }
.orb-orbit--outer .p3 { animation: orbitCW  14s linear infinite -4.7s; }
.orb-orbit--outer .p4 { animation: orbitCW  14s linear infinite -7s; }
.orb-orbit--outer .p5 { animation: orbitCW  14s linear infinite -9.3s; }
.orb-orbit--outer .p6 { animation: orbitCW  14s linear infinite -11.7s; }
/* Inner orbit */
.orb-orbit--inner .p7 { animation: orbitCCW 10s linear infinite 0s; }
.orb-orbit--inner .p8 { animation: orbitCCW 10s linear infinite -5s; }

@keyframes orbitCW  {
  from { transform: rotate(0deg)    translateX(148px) rotate(0deg); }
  to   { transform: rotate(360deg)  translateX(148px) rotate(-360deg); }
}
@keyframes orbitCCW {
  from { transform: rotate(0deg)    translateX(104px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(104px) rotate(360deg); }
}

/* Floating info tags — ice blue card on white */
.orb-tag {
  position: absolute;
  background: var(--white);
  border: 0.5px solid var(--ice);
  box-shadow: 0 4px 20px rgba(168,216,234,0.25);
  padding: 8px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.orb-tag--top    { top: -8px; right: -24px; animation: floatTag 4s ease-in-out infinite; }
.orb-tag--bottom { bottom: -8px; left: -24px; animation: floatTag 4s ease-in-out infinite 2s; }
@keyframes floatTag { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

.orb-tag__num {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 400; color: var(--ice-dark); line-height: 1;
}
.orb-tag__label {
  font-size: 8px; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── Scroll indicator ────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll__line {
  width: 0.5px; height: 44px;
  background: linear-gradient(to bottom, var(--ice-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.2;} 50%{opacity:1;} }
.hero-scroll__text {
  font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-muted);
}

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center; gap: 40px; padding: 40px 0 120px;
  }
  .hero-badge, .hero-title__line { margin-left: auto; margin-right: auto; }
  .hero-bio {
    border-left: none; padding-left: 0;
    border-top: 0.5px solid var(--ice); padding-top: 16px;
    text-align: left;
  }
  .hero-actions  { justify-content: center; }
  .hero-socials  { justify-content: center; }
  .hero-right    { order: -1; }
  .orb-wrapper   { width: 240px; height: 240px; }
  .orb-center    { width: 56px; height: 56px; font-size: 22px; }
  @keyframes orbitCW  {
    from { transform: rotate(0deg)   translateX(112px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(112px) rotate(-360deg); }
  }
  @keyframes orbitCCW {
    from { transform: rotate(0deg)   translateX(78px) rotate(0deg); }
    to   { transform: rotate(-360deg) translateX(78px) rotate(360deg); }
  }
  .orb-tag--top    { right: -10px; }
  .orb-tag--bottom { left: -10px;  }
}

@media (max-width: 400px) {
  .btn-outline, .btn-ghost { display: none; }
  .hero-title { font-size: 52px; }
}






/* ═══════════════════════════════════════════════
   STILLPEAK — about.css
   Theme  : WHITE background + ICE BLUE accents
   Fonts  : Cormorant Garamond + Outfit
═══════════════════════════════════════════════ */

:root {
  --ice:         #A8D8EA;
  --ice-light:   #D6EFF8;
  --ice-mid:     #7BBFD8;
  --ice-dark:    #4A9BBF;
  --navy:        #0A1628;
  --white:       #FAFCFF;
  --bg:          #FAFCFF;
  --bg-alt:      #F0F8FC;
  --text-dark:   #0D1B2A;
  --text-mid:    #2C4A6E;
  --text-muted:  #6B8BA4;
  --border:      rgba(168, 216, 234, 0.4);
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Outfit', sans-serif;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text-dark); }

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about {
  background: var(--bg);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle bg glow — bottom left */
.about::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,234,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Section Header ──────────────────────────── */
.about-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ice-dark);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  color: var(--ice-dark);
  font-style: italic;
}

.section-line {
  width: 48px;
  height: 0.5px;
  background: var(--ice-dark);
}

/* ── Main Grid ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: start;
}

/* ── Story Text ──────────────────────────────── */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
}

.about-text--lead {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}

/* Value pills */
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.value-pill {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ice-dark);
  border: 0.5px solid var(--ice);
  padding: 6px 14px;
  background: rgba(168,216,234,0.08);
  transition: background 0.25s ease, color 0.25s ease;
  cursor: default;
}

.value-pill:hover {
  background: var(--ice-light);
  color: var(--navy);
}

/* ── Right: Stats + Quote ────────────────────── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Stats grid — 2x2 */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.stat-card {
  background: var(--white);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ice);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.stat-card:hover { background: rgba(168,216,234,0.06); }
.stat-card:hover::after { transform: scaleX(1); }

.stat-icon {
  font-size: 18px;
  color: var(--ice-mid);
  margin-bottom: 4px;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--ice-dark);
  line-height: 1;
}

.stat-plus {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--ice-mid);
  line-height: 1;
  margin-top: -4px;
}

.stat-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Brand Quote */
.about-quote {
  border-left: 2px solid var(--ice);
  padding: 16px 20px;
  background: rgba(168,216,234,0.06);
}

.about-quote__text {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-quote__attr {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice-dark);
}

/* ── Three Pillars ───────────────────────────── */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  background: var(--bg-alt);
}

.pillar {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}

.pillar:hover {
  background: rgba(168,216,234,0.08);
}

.pillar-divider {
  width: 0.5px;
  background: var(--border);
  align-self: stretch;
}

.pillar-icon {
  font-size: 20px;
  color: var(--ice-dark);
  margin-bottom: 4px;
}

.pillar-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.pillar-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL  (added via JS)
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }
  .pillar-divider {
    width: auto;
    height: 0.5px;
  }
  .pillar { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .about { padding: 72px 0 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-text--lead { font-size: 18px; }
}






/* ═══════════════════════════════════════════════
   STILLPEAK — mission.css
   Theme : WHITE bg + ICE BLUE accents
═══════════════════════════════════════════════ */

:root {
  --ice:        #A8D8EA;
  --ice-light:  #D6EFF8;
  --ice-mid:    #7BBFD8;
  --ice-dark:   #4A9BBF;
  --navy:       #0A1628;
  --white:      #FAFCFF;
  --bg:         #FAFCFF;
  --bg-alt:     #F0F8FC;
  --text-dark:  #0D1B2A;
  --text-mid:   #2C4A6E;
  --text-muted: #6B8BA4;
  --border:     rgba(168,216,234,0.4);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Outfit', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--text-dark); }

.mission {
  background: var(--bg-alt);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.mission::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,216,234,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.mission-container {
  width: 92%; max-width: 1100px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 60px;
}

.section-label {
  font-size: 10px; font-weight: 300; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--ice-dark);
  display: block; margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 300; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 20px;
}
.section-title em { color: var(--ice-dark); font-style: italic; }
.section-line { width: 48px; height: 0.5px; background: var(--ice-dark); margin-bottom: 20px; }
.mission-intro {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 560px;
}

/* PURPOSE CARDS */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.purpose-card {
  background: var(--white);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background 0.3s ease;
}
.purpose-card:hover { background: rgba(168,216,234,0.05); }
.purpose-icon { font-size: 24px; color: var(--ice-dark); }
.purpose-body { flex: 1; }
.purpose-title {
  font-family: var(--ff-display);
  font-size: 24px; font-weight: 300;
  color: var(--text-dark); margin-bottom: 10px;
}
.purpose-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); margin-bottom: 14px;
}
.purpose-amount {
  font-family: var(--ff-display);
  font-size: 32px; font-weight: 300; color: var(--ice-dark);
}
.purpose-progress { margin-top: auto; }
.bar-track {
  height: 2px; background: var(--ice-light);
  position: relative; margin-bottom: 8px; overflow: hidden;
}
.bar-fill {
  height: 100%; background: var(--ice-dark);
  transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.bar-meta {
  display: flex; justify-content: space-between;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.bar-earned { color: var(--text-muted); }
.bar-pct    { color: var(--ice-dark); font-weight: 400; }

/* VAULT */
.vault {
  background: var(--white);
  border: 0.5px solid var(--border);
  padding: 40px 36px;
  position: relative; overflow: hidden;
}
.vault::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  border-bottom: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
  background: rgba(168,216,234,0.04);
}
.vault-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 28px;
  flex-wrap: wrap; gap: 16px;
}
.vault-title {
  font-family: var(--ff-display);
  font-size: 36px; font-weight: 300; color: var(--text-dark);
}
.vault-total { text-align: right; }
.vault-total__num {
  font-family: var(--ff-display);
  font-size: 40px; font-weight: 300;
  color: var(--ice-dark); display: block; line-height: 1;
}
.vault-total__of {
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.master-track {
  height: 3px; background: var(--ice-light);
  position: relative; margin-bottom: 10px;
}
.master-fill {
  height: 100%;
  background: linear-gradient(to right, var(--ice-mid), var(--ice-dark));
  transition: width 1.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.master-dot {
  position: absolute; top: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ice-dark);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--ice-dark);
  transition: left 1.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.master-labels {
  display: flex; justify-content: space-between;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 36px;
}
.sources {
  display: flex; flex-direction: column;
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); margin-bottom: 20px;
}
.source-row {
  background: var(--white);
  padding: 18px 20px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transition: background 0.25s ease;
}
.source-row:hover { background: rgba(168,216,234,0.05); }
.source-left {
  display: flex; align-items: center;
  gap: 16px; flex: 1; min-width: 180px;
}
.source-icon { font-size: 18px; color: var(--ice-mid); width: 20px; flex-shrink: 0; }
.source-name { font-size: 13px; font-weight: 400; color: var(--text-dark); margin-bottom: 2px; }
.source-sub  { font-size: 11px; font-weight: 300; color: var(--text-muted); }
.source-right {
  display: flex; align-items: center;
  gap: 16px; min-width: 180px; flex: 1;
}
.source-bar { flex: 1; height: 2px; background: var(--ice-light); position: relative; }
.source-fill {
  height: 100%; background: var(--ice-dark);
  transition: width 1.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.source-amount {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 300; color: var(--ice-dark);
  white-space: nowrap; min-width: 80px; text-align: right;
}
.vault-note {
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.vault-note i { color: var(--ice-mid); }

/* REVEAL */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) { .purpose-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .purpose-grid { grid-template-columns: 1fr; }
  .vault { padding: 28px 20px; }
  .vault-top { flex-direction: column; align-items: flex-start; }
  .vault-total { text-align: left; }
  .source-row { flex-direction: column; align-items: flex-start; }
  .source-right { width: 100%; }
}






/* ═══════════════════════════════════════════════
   STILLPEAK — journey.css
═══════════════════════════════════════════════ */

.journey {
  position: relative;
  background: var(--bg);
  padding: 120px 0 100px;
  overflow: hidden;
}

/* Ambient Glow */
.journey-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(168,216,234,0.12),
      transparent 40%),
    radial-gradient(circle at 80% 70%,
      rgba(74,155,191,0.08),
      transparent 40%);
  pointer-events: none;
}

.journey-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.journey-header {
  margin-bottom: 80px;
}

.journey-intro {
  max-width: 580px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-mid);
}

/* STATUS */
.journey-status {
  margin-bottom: 90px;
  padding: 28px 32px;
  border: 0.5px solid var(--border);
  background: rgba(168,216,234,0.04);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice-dark);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}

.status-title {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.status-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
}

/* TIMELINE */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-left: 80px;
}

/* ROUTE LINE */
.timeline-line {
  position: absolute;
  top: 0;
  left: 18px;
  width: 1px;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(168,216,234,0.2),
      var(--ice-dark),
      rgba(168,216,234,0.2)
    );
}

/* ITEM */
.timeline-item {
  position: relative;
}

/* NODE */
.timeline-node {
  position: absolute;
  left: -80px;
  top: 20px;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: 1px solid var(--ice);

  background: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;
}

.timeline-node span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ice-mid);
}

.timeline-node.active span {
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
}

.timeline-node.summit {
  border-color: var(--ice-dark);
  box-shadow:
    0 0 25px rgba(74,155,191,0.3);
}

.timeline-node.summit span {
  background: var(--ice-dark);
  box-shadow:
    0 0 12px rgba(74,155,191,0.7);
}

/* CARD */
.timeline-card {
  position: relative;

  padding: 34px;
  border: 0.5px solid var(--border);

  background: rgba(255,255,255,0.72);

  backdrop-filter: blur(10px);

  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-4px);
  border-color: var(--ice-dark);
  background: rgba(168,216,234,0.05);
}

.summit-card {
  border-color: rgba(74,155,191,0.5);
}

/* TAG */
.timeline-tag {
  margin-bottom: 16px;

  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

/* TITLE */
.timeline-title {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;

  margin-bottom: 18px;

  color: var(--text-dark);
}

/* TEXT */
.timeline-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;

  color: var(--text-mid);

  max-width: 560px;

  margin-bottom: 24px;
}

/* META */
.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-meta span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  border: 0.5px solid var(--ice);
  padding: 7px 12px;

  color: var(--ice-dark);

  background: rgba(168,216,234,0.05);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .timeline {
    padding-left: 55px;
    gap: 50px;
  }

  .timeline-node {
    left: -55px;
    width: 28px;
    height: 28px;
  }

  .timeline-node span {
    width: 8px;
    height: 8px;
  }

  .timeline-title {
    font-size: 30px;
  }

  .timeline-card {
    padding: 26px;
  }

  .journey-status {
    padding: 24px;
  }

}








.portfolio {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.portfolio-container {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;
}

/* HEADER */
.portfolio-header {
  text-align: center;
  margin-bottom: 70px;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.project-card {
  position: relative;

  padding: 34px 32px;

  border: 0.5px solid rgba(168,216,234,0.16);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.7),
      rgba(168,216,234,0.04)
    );

  backdrop-filter: blur(14px);

  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);

  border-color: var(--ice-dark);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.8),
      rgba(168,216,234,0.08)
    );
}

/* CATEGORY */
.project-category {
  width: fit-content;

  padding: 8px 14px;

  margin-bottom: 24px;

  border-radius: 999px;

  background: rgba(168,216,234,0.08);

  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

/* TITLE */
.project-title {
  font-family: var(--ff-display);

  font-size: 42px;
  font-weight: 300;
  line-height: 1.05;

  margin-bottom: 22px;

  color: var(--text-dark);
}

/* SKILLS */
.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 26px;
}

.project-skills span {
  padding: 8px 12px;

  border: 0.5px solid rgba(168,216,234,0.22);

  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--ice-dark);

  background: rgba(168,216,234,0.04);
}

/* DESCRIPTION */
.project-description {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;

  color: var(--text-mid);

  margin-bottom: 38px;
}

/* LINK */
.project-link {
  position: relative;

  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: var(--ice-dark);

  transition: 0.3s ease;
}

.project-link::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 100%;
  height: 1px;

  background: var(--ice-dark);

  transform: scaleX(0.4);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.project-link:hover::after {
  transform: scaleX(1);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1000px) {

  .projects-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .project-card {
    padding: 28px 24px;
  }

  .project-title {
    font-size: 34px;
  }

}







/* ═══════════════════════════════════════════════
   STILLPEAK — PRICING
═══════════════════════════════════════════════ */

.pricing-section {
  margin-top: 120px;
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 70px;
}

.pricing-label {
  margin-bottom: 18px;

  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

.pricing-title {
  font-family: var(--ff-display);

  font-size: clamp(48px, 7vw, 82px);
  font-weight: 300;
  line-height: 1;

  color: var(--text-dark);

  margin-bottom: 22px;
}

.pricing-title em {
  color: var(--ice-dark);
  font-style: italic;
}

.pricing-subtitle {
  max-width: 620px;

  margin: 0 auto;

  font-size: 15px;
  line-height: 1.9;

  color: var(--text-mid);
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

/* CARD */
.pricing-card {
  position: relative;

  padding: 42px 34px;

  border: 0.5px solid rgba(168,216,234,0.18);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.72),
      rgba(168,216,234,0.04)
    );

  backdrop-filter: blur(12px);

  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);

  border-color: var(--ice-dark);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.82),
      rgba(168,216,234,0.08)
    );
}

/* FEATURED */
.pricing-card.featured {
  border-color: rgba(74,155,191,0.45);

  box-shadow:
    0 0 30px rgba(168,216,234,0.12);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;

  padding: 8px 12px;

  border-radius: 999px;

  background: rgba(168,216,234,0.08);

  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

/* TOP */
.pricing-top {
  margin-bottom: 26px;
}

.pricing-plan {
  margin-bottom: 14px;

  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

.pricing-price {
  font-family: var(--ff-display);

  font-size: 54px;
  font-weight: 300;
  line-height: 1;

  color: var(--text-dark);
}

/* DESCRIPTION */
.pricing-desc {
  margin-bottom: 30px;

  font-size: 14px;
  line-height: 1.8;

  color: var(--text-mid);
}

/* FEATURES */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-bottom: 38px;
}

.pricing-features li {
  position: relative;

  padding-left: 22px;

  font-size: 13px;
  line-height: 1.7;

  color: var(--text-mid);
}

.pricing-features li::before {
  content: '';

  position: absolute;
  left: 0;
  top: 10px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--ice-dark);
}

/* BUTTON */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 24px;

  border: 0.5px solid rgba(168,216,234,0.22);

  color: var(--ice-dark);

  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    letter-spacing 0.35s var(--ease);
}

.pricing-btn:hover {
  background: var(--ice-dark);
  color: white;

  letter-spacing: 0.35em;
}

/* RESPONSIVE */
@media (max-width: 1000px) {

  .pricing-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .pricing-card {
    padding: 34px 26px;
  }

  .pricing-title {
    font-size: 54px;
  }

  .pricing-price {
    font-size: 44px;
  }

}


/* ═══════════════════════════════════════════════
   STILLPEAK — FINAL CTA
═══════════════════════════════════════════════ */

.final-cta {
  position: relative;

  margin-top: 120px;

  padding: 100px 60px;

  overflow: hidden;

  border: 0.5px solid rgba(168,216,234,0.18);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.78),
      rgba(168,216,234,0.06)
    );

  text-align: center;
}

/* GLOW */
.final-cta-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(168,216,234,0.14),
      transparent 60%
    );

  pointer-events: none;
}

/* CONTENT */
.final-cta-content {
  position: relative;
  z-index: 2;
}

/* LABEL */
.final-cta-label {
  margin-bottom: 18px;

  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

/* TITLE */
.final-cta-title {
  font-family: var(--ff-display);

  font-size: clamp(46px, 7vw, 84px);
  font-weight: 300;
  line-height: 1;

  margin-bottom: 24px;

  color: var(--text-dark);
}

.final-cta-title em {
  color: var(--ice-dark);
  font-style: italic;
}

/* TEXT */
.final-cta-text {
  max-width: 720px;

  margin: 0 auto 42px;

  font-size: 15px;
  line-height: 1.9;

  color: var(--text-mid);
}

/* BUTTONS */
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* BTN */
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;

  padding: 16px 28px;

  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;

  transition: all 0.35s var(--ease);
}

/* PRIMARY */
.final-cta-btn.primary {
  background: var(--ice-dark);
  color: white;
}

.final-cta-btn.primary:hover {
  background: var(--navy);

  letter-spacing: 0.38em;
}

/* SECONDARY */
.final-cta-btn.secondary {
  border: 0.5px solid rgba(168,216,234,0.24);

  color: var(--ice-dark);

  background: rgba(168,216,234,0.03);
}

.final-cta-btn.secondary:hover {
  background: rgba(168,216,234,0.08);

  letter-spacing: 0.38em;
}

/* MOBILE */
@media (max-width: 700px) {

  .final-cta {
    padding: 80px 26px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-btn {
    width: 100%;
  }

}








/* ═══════════════════════════════════════════════
   STILLPEAK — GOALS
═══════════════════════════════════════════════ */

.goals {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* BG GLOW */
.goals-bg-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 20%,
      rgba(168,216,234,0.12),
      transparent 40%),

    radial-gradient(circle at 80% 70%,
      rgba(74,155,191,0.08),
      transparent 40%);

  pointer-events: none;
}

.goals-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1050px;
  margin: 0 auto;
}

/* HEADER */
.goals-header {
  margin-bottom: 90px;
}

.goals-intro {
  max-width: 580px;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;

  color: var(--text-mid);
}

/* TIMELINE */
.goals-timeline {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 70px;

  padding-left: 70px;
}

/* LINE */
.goals-line {
  position: absolute;
  top: 0;
  left: 16px;

  width: 1px;
  height: 100%;

  background:
    linear-gradient(
      to bottom,
      rgba(168,216,234,0.2),
      var(--ice-dark),
      rgba(168,216,234,0.15)
    );
}

/* ITEM */
.goal-item {
  position: relative;
}

/* NODE */
.goal-node {
  position: absolute;
  left: -70px;
  top: 18px;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  border: 1px solid var(--ice);

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;
}

.goal-node span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--ice-mid);
}

.goal-node.active span {
  background: #22c55e;

  box-shadow: 0 0 12px #22c55e;
}

.goal-node.summit {
  border-color: var(--ice-dark);

  box-shadow:
    0 0 24px rgba(74,155,191,0.24);
}

.goal-node.summit span {
  background: var(--ice-dark);
}

/* CONTENT */
.goal-content {
  display: flex;
  gap: 40px;
}

/* NUMBER */
.goal-number {
  min-width: 70px;

  font-family: var(--ff-display);

  font-size: 46px;
  font-weight: 300;

  color: rgba(74,155,191,0.24);
}

/* MAIN */
.goal-main {
  flex: 1;

  padding-bottom: 40px;

  border-bottom: 0.5px solid rgba(168,216,234,0.14);
}

/* TOP */
.goal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

/* TITLE */
.goal-title {
  font-family: var(--ff-display);

  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  line-height: 1;

  color: var(--text-dark);
}

/* ALTITUDE */
.goal-altitude {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

/* DESCRIPTION */
.goal-description {
  max-width: 640px;

  margin-bottom: 24px;

  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;

  color: var(--text-mid);
}

/* STATUS */
.goal-status {
  width: fit-content;

  padding: 10px 16px;

  border: 0.5px solid rgba(168,216,234,0.2);

  background: rgba(168,216,234,0.05);

  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

.goal-status.current {
  border-color: rgba(34,197,94,0.28);

  color: #22c55e;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {

  .goals-timeline {
    padding-left: 50px;
  }

  .goal-node {
    left: -50px;

    width: 26px;
    height: 26px;
  }

  .goal-node span {
    width: 7px;
    height: 7px;
  }

  .goal-content {
    flex-direction: column;
    gap: 12px;
  }

  .goal-number {
    font-size: 34px;
  }

  .goal-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .goal-title {
    font-size: 38px;
  }

}






/* ═══════════════════════════════════════════════
   STILLPEAK — CONNECT
═══════════════════════════════════════════════ */

.connect {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* BG GLOW */
.connect-bg-glow {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 15% 20%,
      rgba(168,216,234,0.12),
      transparent 35%),

    radial-gradient(circle at 80% 70%,
      rgba(74,155,191,0.08),
      transparent 40%);

  pointer-events: none;
}

.connect-container {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;

  align-items: start;
}

/* LEFT */
.connect-text {
  max-width: 540px;

  margin-bottom: 50px;

  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;

  color: var(--text-mid);
}

/* INFO */
.connect-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.connect-item span {
  display: block;

  margin-bottom: 10px;

  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: var(--ice-dark);
}

.connect-item a,
.connect-item p {
  font-size: 15px;
  line-height: 1.8;

  color: var(--text-mid);

  transition: color 0.3s ease;
}

.connect-item a:hover {
  color: var(--ice-dark);
}

/* FORM */
.connect-form-wrap {
  padding: 42px;

  border: 0.5px solid rgba(168,216,234,0.18);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.75),
      rgba(168,216,234,0.05)
    );

  backdrop-filter: blur(12px);
}

/* FORM */
.connect-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* GROUP */
.form-group {
  width: 100%;
}

/* INPUTS */
.connect-form input,
.connect-form select,
.connect-form textarea {
  width: 100%;

  padding: 18px 0;

  border: none;
  border-bottom: 0.5px solid rgba(168,216,234,0.2);

  background: transparent;

  font-size: 14px;
  font-family: inherit;

  color: var(--text-dark);

  outline: none;

  transition: border-color 0.3s ease;
}

/* PLACEHOLDER */
.connect-form input::placeholder,
.connect-form textarea::placeholder {
  color: var(--text-muted);
}

/* FOCUS */
.connect-form input:focus,
.connect-form select:focus,
.connect-form textarea:focus {
  border-color: var(--ice-dark);
}

/* SELECT */
.connect-form select {
  appearance: none;
  cursor: pointer;
}

/* TEXTAREA */
.connect-form textarea {
  resize: none;
}

/* BUTTON */
.connect-btn {
  width: fit-content;

  margin-top: 12px;

  padding: 16px 30px;

  background: var(--ice-dark);
  color: white;

  border: none;

  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.35s var(--ease),
    letter-spacing 0.35s var(--ease);
}

.connect-btn:hover {
  background: var(--navy);

  letter-spacing: 0.38em;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 950px) {

  .connect-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

}

@media (max-width: 600px) {

  .connect {
    padding: 90px 0;
  }

  .connect-form-wrap {
    padding: 32px 24px;
  }

}






/* ═══════════════════════════════════════════════
   STILLPEAK — FOOTER
═══════════════════════════════════════════════ */

.footer {
  position: relative;

  padding: 70px 0 34px;

  overflow: hidden;
}

/* TOP LINE */
.footer-line {
  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(168,216,234,0.2),
      transparent
    );

  margin-bottom: 60px;
}

/* CONTAINER */
.footer-container {
  width: 92%;
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;

  align-items: start;
}

/* LEFT */
.footer-logo {
  display: inline-block;

  margin-bottom: 18px;

  font-family: var(--ff-display);

  font-size: 28px;
  letter-spacing: 0.12em;

  color: var(--text-dark);
}

.footer-text {
  max-width: 260px;

  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;

  color: var(--text-mid);
}

/* CENTER + RIGHT */
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LINKS */
.footer-center a,
.footer-right a {
  width: fit-content;

  position: relative;

  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  color: var(--text-mid);

  transition: color 0.3s ease;
}

.footer-center a::after,
.footer-right a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: var(--ice-dark);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.35s ease;
}

.footer-center a:hover,
.footer-right a:hover {
  color: var(--ice-dark);
}

.footer-center a:hover::after,
.footer-right a:hover::after {
  transform: scaleX(1);
}

/* BOTTOM */
.footer-bottom {
  width: 92%;
  max-width: 1150px;

  margin: 70px auto 0;

  padding-top: 26px;

  border-top: 0.5px solid rgba(168,216,234,0.14);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 850px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 600px) {

  .footer {
    padding: 50px 0 30px;
  }

  .footer-line {
    margin-bottom: 50px;
  }

  .footer-bottom {
    margin-top: 50px;
  }

}