/* ============================================================
   ENERLYSIS — Design System
   Colors extracted from logo:
     Fire orange  #FF6800
     Cosmic blue  #0EA5E9
     Nature green #4ADE80
     Navy         #1A2B6B
   ============================================================ */

/* ===== Tokens ===== */
:root {
  /* Dark backgrounds */
  --bg:          #050E1A;
  --bg-soft:     #081422;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-h:   rgba(255,255,255,0.07);

  /* Text */
  --text:        #D8E8F5;
  --text-muted:  #6888A0;
  --text-white:  #FFFFFF;

  /* Logo accent palette */
  --fire:        #FF6800;
  --fire-dim:    rgba(255,104,0,0.16);
  --fire-glow:   rgba(255,104,0,0.28);
  --cosmic:      #0EA5E9;
  --cosmic-dim:  rgba(14,165,233,0.14);
  --nature:      #4ADE80;
  --nature-dim:  rgba(74,222,128,0.13);
  --navy-accent: #5B7AE8;
  --navy-dim:    rgba(91,122,232,0.15);

  /* Borders */
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(255,255,255,0.16);

  /* Light sections */
  --paper:       #F4F7FC;
  --ink:         #0D1E30;
  --ink-muted:   #4A607A;

  /* Shape */
  --r:           16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --max:         1200px;
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --dur:         0.22s;
  --shadow:      0 20px 60px rgba(0,0,0,0.4);
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.28);
}

/* ===== Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
p, h1, h2, h3, h4 { margin-top: 0; }
p { color: var(--text-muted); }

/* ===== Layout ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 104px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.align-start { align-items: flex-start; }

/* ===== Typography ===== */
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.055em;
  color: var(--text-white);
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 16px;
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 10px;
}
.ink-heading { color: var(--ink) !important; }
.ink-muted   { color: var(--ink-muted) !important; }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fire);
  margin-bottom: 18px;
}
.eyebrow-ink { color: var(--navy-accent) !important; }
.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.small-lead { font-size: 1rem; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.narrow {
  max-width: 540px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-sub { color: var(--text-muted); font-size: 1.02rem; margin-top: 8px; }
.rich-text p { font-size: 1.04rem; line-height: 1.8; }
.rich-text p + p { margin-top: 18px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,14,26,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  transition: opacity var(--dur) var(--ease);
}
.brand-logo-wrap:hover { opacity: 0.88; }
.brand-logo { height: 40px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a { color: var(--text-muted); transition: color var(--dur); }
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
  background: var(--fire) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease) !important;
  box-shadow: 0 4px 16px var(--fire-dim);
}
.nav-cta:hover {
  background: #ff8830 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px var(--fire-glow) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

/* ===== Buttons ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.button.primary {
  background: var(--fire);
  color: #fff;
  box-shadow: 0 4px 20px var(--fire-dim);
}
.button.primary:hover {
  background: #ff8830;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--fire-glow);
}
.button.ghost {
  border: 1px solid var(--border-h);
  color: var(--text);
  background: transparent;
}
.button.ghost:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-2px);
}
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid var(--border-h);
  color: var(--text);
  background: transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  margin-top: auto;
}
.outline-btn:hover {
  border-color: var(--fire);
  color: var(--fire);
  transform: translateY(-1px);
}
.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  margin-top: auto;
}
.white-btn:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Ambient blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 14s ease-in-out infinite;
}
.blob-fire {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255,104,0,0.55) 0%, transparent 68%);
  top: -260px; right: -80px;
  animation-delay: 0s;
}
.blob-cosmic {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(14,165,233,0.35) 0%, transparent 68%);
  bottom: -160px; right: 18%;
  animation-delay: -5s;
}
.blob-nature {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(74,222,128,0.22) 0%, transparent 68%);
  top: 30%; left: -140px;
  animation-delay: -9s;
}
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-18px) scale(1.04); }
  66%      { transform: translate(-18px,14px) scale(0.97); }
}
/* Subtle grid overlay */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { padding-bottom: 20px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 30px;
}
.trust-strip { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Panel */
.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 14px;
  background: linear-gradient(155deg,rgba(255,255,255,0.06),rgba(255,255,255,0.02));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.panel-card {
  border-radius: 20px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}
.panel-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
}
.panel-card.large {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg,rgba(255,104,0,0.2) 0%,rgba(14,165,233,0.08) 60%,rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,104,0,0.22);
}
.panel-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 14px;
}
.panel-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 8px;
}
.panel-card p { font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* ===== Problem ===== */
.problem { background: var(--paper); }
.problem h2 { color: var(--ink); }

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease);
}
.service-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.fire-icon   { background: var(--fire-dim);   color: var(--fire); }
.cosmic-icon { background: var(--cosmic-dim); color: var(--cosmic); }
.nature-icon { background: var(--nature-dim); color: var(--nature); }
.navy-icon   { background: var(--navy-dim);   color: var(--navy-accent); }
.service-card p { font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ===== Alt Background ===== */
.alt { background: var(--bg-soft); }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  position: relative;
  transition: all var(--dur) var(--ease);
}
.price-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: linear-gradient(148deg, #FF6800 0%, #e04a00 55%, #b83800 100%);
  border-color: transparent;
  transform: translateY(-14px);
  box-shadow: 0 28px 72px rgba(255,104,0,0.38);
}
.price-card.featured:hover { transform: translateY(-18px); }
.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-white);
  color: var(--fire);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.price-timeline {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fire);
  margin-bottom: 10px;
}
.price-card.featured .price-timeline { color: rgba(255,255,255,0.65); }
.price-card h3 { color: var(--text-white); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.price-card.featured h3 { color: #fff; }
.price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-white);
  margin: 18px 0;
}
.price-amount span { font-size: 0.88rem; font-weight: 400; opacity: 0.55; letter-spacing: 0; }
.price-card.featured .price-amount { color: #fff; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 18px;
  margin-bottom: 11px;
  position: relative;
  line-height: 1.45;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fire);
}
.price-card.featured .price-list li { color: rgba(255,255,255,0.82); }
.price-card.featured .price-list li::before { background: rgba(255,255,255,0.55); }

/* ===== Markets ===== */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.tag-cloud span:hover {
  border-color: var(--fire);
  color: var(--fire);
  background: var(--fire-dim);
}

/* ===== Method ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 22px;
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}
.step:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-3px);
}
.step-num-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fire-dim);
  border: 1px solid rgba(255,104,0,0.28);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.step-num-circle span { color: var(--fire); font-weight: 800; font-size: 0.88rem; }
.step h3 { font-size: 1rem; color: var(--text-white); margin-bottom: 10px; }
.step p  { font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ===== Case Study ===== */
.case-study { background: var(--paper); }
.case-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.case-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.case-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fire);
  background: rgba(255,104,0,0.1);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.case-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.case-card p  { font-size: 0.92rem; line-height: 1.7; }
.case-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--fire);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform var(--dur) var(--ease);
}
.case-link:hover { transform: translateX(5px); }

/* ===== Contact ===== */
.contact-section { background: var(--paper); }
.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl);
  padding: 56px 52px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.09);
}
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.microcopy {
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-wrap {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin-bottom: 16px;
}
.footer-logo { height: 44px; width: auto; object-fit: contain; }
.footer-brand-col p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-white);
  margin-bottom: 14px;
}
.footer a, .footer-nav span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 9px;
  transition: color var(--dur);
}
.footer a:hover { color: var(--fire); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== Responsive: 1024px ===== */
@media (max-width: 1024px) {
  .service-grid  { grid-template-columns: repeat(2,1fr); }
  .steps-grid    { grid-template-columns: repeat(2,1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}

/* ===== Responsive: 900px ===== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 80px; padding-bottom: 72px; }
  .hero-layout, .two-col, .case-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .contact-box { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
  .footer-top { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 90;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .panel-row { grid-template-columns: 1fr; }
}

/* ===== Responsive: 640px ===== */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding-top: 64px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .contact-box  { padding: 32px 22px; }
  .section-head { margin-bottom: 38px; }
  .footer-nav   { grid-template-columns: 1fr; }
}

/* ============================================================
   SPRINT DETAIL PAGES
   ============================================================ */

/* Back bar */
.back-bar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.back-link:hover { color: var(--fire); }

/* Sprint hero */
.sprint-hero {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
}
.sprint-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 16s ease-in-out infinite;
}
.sh-fire       { width:520px; height:520px; background: radial-gradient(circle,rgba(255,104,0,0.45) 0%,transparent 70%); top:-160px; right:-60px; }
.sh-cosmic     { width:400px; height:400px; background: radial-gradient(circle,rgba(14,165,233,0.25) 0%,transparent 70%); bottom:-100px; left:10%; animation-delay:-6s; }
.sh-cosmic-main{ width:560px; height:560px; background: radial-gradient(circle,rgba(14,165,233,0.42) 0%,transparent 70%); top:-180px; right:-80px; }
.sh-fire-soft  { width:380px; height:380px; background: radial-gradient(circle,rgba(255,104,0,0.2) 0%,transparent 70%);  bottom:-80px; left:15%; animation-delay:-7s; }
.sh-nature-main{ width:540px; height:540px; background: radial-gradient(circle,rgba(74,222,128,0.35) 0%,transparent 70%); top:-160px; right:-60px; }
.sh-cosmic-soft{ width:360px; height:360px; background: radial-gradient(circle,rgba(14,165,233,0.18) 0%,transparent 70%); bottom:-80px; left:20%; animation-delay:-8s; }

.sprint-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.sprint-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fire);
  background: var(--fire-dim);
  border: 1px solid rgba(255,104,0,0.25);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.sprint-badge--cosmic { color: var(--cosmic); background: var(--cosmic-dim); border-color: rgba(14,165,233,0.25); }
.sprint-badge--nature { color: var(--nature); background: var(--nature-dim); border-color: rgba(74,222,128,0.25); }

.sprint-hero h1 { margin-bottom: 20px; }
.sprint-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.sprint-price {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--text-white);
}
.sprint-price-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.sprint-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Sprint body layout */
.sprint-body { padding: 72px 0 100px; }
.sprint-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

/* Detail column */
.sprint-detail-col { display: flex; flex-direction: column; gap: 52px; }
.detail-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-list > li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.detail-list > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--fire);
  flex-shrink: 0;
}
.detail-list.check-list > li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--nature);
  border-radius: 50%;
}
.detail-sub {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-sub li {
  position: relative;
  padding-left: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.detail-sub li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Outcome cards */
.outcome-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.outcome-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 20px;
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}
.outcome-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
}
.outcome-card .service-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 40px; height: 40px;
}
.outcome-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.outcome-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* Quote list */
.quote-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
blockquote {
  margin: 0;
  padding: 16px 20px 16px 20px;
  border-left: 3px solid var(--fire);
  background: var(--bg-card);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Meta info */
.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  background: var(--bg-card);
}
.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.meta-item svg { flex-shrink: 0; margin-top: 2px; color: var(--fire); }
.meta-item strong { color: var(--text-white); }

/* Form column */
.sprint-form-col { position: sticky; top: 88px; }
.form-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.form-card--cosmic { border-color: rgba(14,165,233,0.18); }
.form-card--nature  { border-color: rgba(74,222,128,0.15); }

.form-card-head { margin-bottom: 28px; }
.form-card-head h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.form-card-head p { font-size: 0.88rem; margin: 0; }

/* Form elements */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.req { color: var(--fire); }
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-h);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-white);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
input:focus,
textarea:focus,
select:focus {
  border-color: var(--fire);
  box-shadow: 0 0 0 3px var(--fire-dim);
}
textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236888A0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--text-muted);
}
select:focus { color: var(--text-white); }

.form-submit-btn {
  width: 100%;
  margin-top: 6px;
  min-height: 52px;
  font-size: 0.95rem;
}
.form-submit-btn--cosmic { background: var(--cosmic); box-shadow: 0 4px 20px var(--cosmic-dim); }
.form-submit-btn--cosmic:hover { background: #38bdf8; box-shadow: 0 10px 32px rgba(14,165,233,0.35); }
.form-submit-btn--nature  { background: #16a34a; box-shadow: 0 4px 20px rgba(22,163,74,0.25); }
.form-submit-btn--nature:hover { background: #15803d; box-shadow: 0 10px 32px rgba(22,163,74,0.35); }
button:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin: 12px 0 0;
}
.form-note a { color: var(--fire); }
.form-note a:hover { text-decoration: underline; }

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 12px;
}
.success-icon-wrap { margin-bottom: 4px; }
.form-success h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}
.form-success p { font-size: 0.9rem; margin: 0; }

/* Form error state */
.form-error {
  border: 1px solid rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.08);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-top: 12px;
}
.form-error p { font-size: 0.88rem; margin: 0; color: #fca5a5; }
.form-error a { color: #fca5a5; text-decoration: underline; }

/* Sprint page responsive */
@media (max-width: 1024px) {
  .sprint-layout { grid-template-columns: 1fr; }
  .sprint-form-col { position: static; }
  .form-card { max-width: 640px; }
}
@media (max-width: 640px) {
  .sprint-hero { padding: 64px 0 56px; }
  .sprint-body  { padding: 48px 0 72px; }
  .form-card    { padding: 28px 22px; }
  .form-row     { grid-template-columns: 1fr; }
  .detail-block h2 { font-size: 1.2rem; }
}

/* ============================================================
   CAREERS TEASER (index.html)
   ============================================================ */
.careers-teaser { position: relative; overflow: hidden; }
.careers-teaser-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  background: var(--bg-soft);
  overflow: hidden;
}
.careers-teaser-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ct-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 18s ease-in-out infinite;
}
.ct-fire  { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,104,0,0.22) 0%, transparent 70%); top: -120px; left: -80px; }
.ct-nature { width: 360px; height: 360px; background: radial-gradient(circle, rgba(74,222,128,0.15) 0%, transparent 70%); bottom: -80px; right: -60px; animation-delay: -9s; }

.careers-teaser-content { position: relative; z-index: 1; }
.careers-teaser-content h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 16px;
}
.small-lead { font-size: 0.97rem; margin-bottom: 28px; max-width: 480px; }

.careers-teaser-roles { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.role-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
}
.role-item:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateX(4px);
}
.role-item.role-open { border-style: dashed; }
.role-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fire-icon   { background: var(--fire-dim);   color: var(--fire);   border: 1px solid rgba(255,104,0,0.2); }
.cosmic-icon { background: var(--cosmic-dim); color: var(--cosmic); border: 1px solid rgba(14,165,233,0.2); }
.nature-icon { background: var(--nature-dim); color: var(--nature); border: 1px solid rgba(74,222,128,0.2); }
.navy-icon   { background: rgba(26,43,107,0.25); color: #a5b4fc; border: 1px solid rgba(165,180,252,0.18); }

.role-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-white); margin-bottom: 3px; }
.role-item span   { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.career-hero {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
}
.career-hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.ch-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 18s ease-in-out infinite;
}
.ch-fire   { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,104,0,0.38) 0%, transparent 70%); top: -140px; right: -60px; }
.ch-nature { width: 380px; height: 380px; background: radial-gradient(circle, rgba(74,222,128,0.2) 0%, transparent 70%); bottom: -80px; left: 10%; animation-delay: -8s; }

.career-hero-inner { position: relative; z-index: 1; max-width: 740px; }
.career-hero-inner h1 { margin-bottom: 20px; }
.career-hero-inner .lead { max-width: 580px; margin-bottom: 0; }

.career-body { padding: 72px 0 100px; }
.career-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

/* Roles section */
.roles-section { margin-bottom: 52px; }
.roles-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.role-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  background: var(--bg-card);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.role-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-2px);
}
.role-card-left { display: flex; align-items: center; gap: 16px; }
.role-card-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.role-card-info span { font-size: 0.82rem; color: var(--text-muted); }
.role-card-arrow { color: var(--text-muted); transition: transform var(--dur) var(--ease), color var(--dur); }
.role-card:hover .role-card-arrow { color: var(--fire); transform: translateX(4px); }

/* Values section */
.values-section { border-top: 1px solid var(--border); padding-top: 40px; }
.values-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-white); margin-bottom: 20px; letter-spacing: -0.03em; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
  background: var(--bg-card);
}
.value-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-white); margin-bottom: 5px; }
.value-card p { font-size: 0.82rem; line-height: 1.55; margin: 0; }

/* Career form card */
.form-card--career { border-color: rgba(255,104,0,0.2); }
.career-form-col { position: sticky; top: 88px; }

/* CV attachment notice */
.cv-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255,104,0,0.25);
  background: var(--fire-dim);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 22px;
}
.cv-notice-icon { flex-shrink: 0; color: var(--fire); margin-top: 2px; }
.cv-notice-text { font-size: 0.82rem; line-height: 1.5; color: var(--text); }
.cv-notice-text strong { color: var(--fire); display: block; margin-bottom: 3px; }

/* Career page responsive */
@media (max-width: 1024px) {
  .career-layout { grid-template-columns: 1fr; }
  .career-form-col { position: static; }
  .careers-teaser-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 36px; }
}
@media (max-width: 640px) {
  .career-hero { padding: 64px 0 56px; }
  .career-body { padding: 48px 0 72px; }
  .careers-teaser-inner { padding: 36px 22px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2), .price-card:nth-child(2), .step:nth-child(2) { transition-delay: 0.07s; }
.service-card:nth-child(3), .price-card:nth-child(3), .step:nth-child(3) { transition-delay: 0.14s; }
.service-card:nth-child(4), .step:nth-child(4) { transition-delay: 0.21s; }

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid var(--fire);
  outline-offset: 3px;
  border-radius: 4px;
}
