/* ====================================================================
   FRONTLINE ENTREPRENEURSHIP STUDIOS
   Design System — Editorial Modern
   Built for production, optimized for conversion
   ==================================================================== */

:root {
  /* === BRAND COLORS (matched to physical space) === */
  --blue: #1B4D8E;
  --blue-dark: #0F3567;
  --blue-light: #2B6DB8;
  --blue-ice: #E8F1FB;

  --green: #2D7D32;
  --green-bright: #4CAF50;
  --green-light: #E8F5E9;

  --magenta: #C2185B; /* accent from chair frames */

  /* === NEUTRALS === */
  --ink: #0A0E14;
  --ink-soft: #1A1F2E;
  --char: #2D3340;
  --slate: #4A5568;
  --grey: #6B7280;
  --grey-light: #9CA3AF;
  --line: #E5E7EB;
  --bone: #F5F3EF;
  --cream: #FAF8F4;
  --paper: #FDFCFA;
  --white: #FFFFFF;

  /* === TYPOGRAPHY === */
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* === SPACE === */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-8: 3rem;
  --s-10: 4rem;
  --s-12: 6rem;
  --s-16: 8rem;
  --s-20: 10rem;

  /* === EFFECTS === */
  --radius: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(10, 14, 20, 0.06);
  --shadow: 0 4px 16px rgba(10, 14, 20, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 14, 20, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 14, 20, 0.15);
  --shadow-xl: 0 40px 100px rgba(10, 14, 20, 0.20);

  /* === ANIMATION === */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === LAYOUT === */
  --max-width: 1320px;
  --gutter: clamp(1rem, 4vw, 3rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--char);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv01';
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === SELECTION === */
::selection { background: var(--blue); color: var(--white); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; border: 3px solid var(--paper); }
::-webkit-scrollbar-thumb:hover { background: var(--grey-light); }

/* ====================================================================
   LAYOUT PRIMITIVES
   ==================================================================== */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section--compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  padding: 0.5rem 1rem;
  background: var(--green-light);
  border-radius: 100px;
}

.eyebrow::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}

.eyebrow--blue {
  color: var(--blue);
  background: var(--blue-ice);
}
.eyebrow--blue::before { background: var(--blue); }

.eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.eyebrow--light::before { background: var(--green-bright); }

.h-display {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.h-section {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h-card {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--slate);
}

.italic-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

/* ====================================================================
   BUTTONS
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 77, 142, 0.35);
}

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 125, 50, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn--text {
  padding: 0;
  background: transparent;
  color: var(--blue);
  border-radius: 0;
  border: none;
}
.btn--text:hover { color: var(--green); gap: 0.75rem; }

.btn--lg { padding: 1.125rem 2.25rem; font-size: 1rem; }

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ====================================================================
   NAVIGATION
   ==================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(253, 252, 250, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s var(--ease);
}

.nav.is-scrolled {
  padding: 0.5rem 0;
  background: rgba(253, 252, 250, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(27, 77, 142, 0.3);
  position: relative;
  overflow: hidden;
}

.brand__mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--green) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.brand:hover .brand__mark::after { opacity: 0.6; }

.brand__name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand__sub {
  font-size: 0.7rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .brand__name, .brand__sub { display: none; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--char);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover { color: var(--blue); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--blue); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.nav__cta:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45, 125, 50, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-200%);
    transition: transform 0.4s var(--ease-out);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { font-size: 1.125rem; padding: 0.5rem 0; }
  .nav__cta { width: 100%; justify-content: center; padding: 1rem; }
}

/* ====================================================================
   HERO SECTION (Homepage)
   ==================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 8rem 0 4rem;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-space.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 1;
  animation: heroSubtleZoom 20s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 20, 0.5) 0%, rgba(10, 14, 20, 0.3) 40%, rgba(10, 14, 20, 0.85) 100%),
    radial-gradient(ellipse at top left, rgba(27, 77, 142, 0.4) 0%, transparent 60%);
  z-index: 2;
}

@keyframes heroSubtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: end;
  min-height: calc(100vh - 12rem);
  min-height: calc(100svh - 12rem);
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: end;
  }
}

.hero__content {
  animation: heroSlideUp 1s var(--ease-out) both;
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green-bright) 0%, #A5D6A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__sidebar {
  display: none;
  animation: heroSlideUp 1s 0.3s var(--ease-out) both;
}

@media (min-width: 1024px) {
  .hero__sidebar { display: block; }
}

.hero__stats-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.hero__stats-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat:last-child { border-bottom: none; padding-bottom: 0; }

.hero__stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

@media (max-width: 768px) {
  .hero__scroll-hint { display: none; }
}

/* ====================================================================
   PAGE HERO (interior pages)
   ==================================================================== */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--cream);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-ice) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 1.5rem 0;
}

.page-hero__lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto;
}

/* ====================================================================
   INTRO/STATS BAR (below hero)
   ==================================================================== */
.intro-bar {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.intro-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(45, 125, 50, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(27, 77, 142, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.intro-bar__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro-bar__inner { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
}

.intro-bar__text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.intro-bar__highlight {
  font-style: italic;
  color: var(--green-bright);
}

.intro-bar__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.intro-bar__stat {
  text-align: left;
}

.intro-bar__stat-num {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  display: block;
}

.intro-bar__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ====================================================================
   FEATURE SHOWCASE (split image-text)
   ==================================================================== */
.showcase {
  background: var(--paper);
}

.showcase__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.showcase__row:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .showcase__row { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .showcase__row--reverse .showcase__visual { order: 2; }
}

.showcase__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.showcase__row:hover .showcase__visual img {
  transform: scale(1.04);
}

.showcase__visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.65rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase__visual-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.showcase__content { padding: 1rem 0; }

.showcase__number {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.showcase__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.showcase__text {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--char);
}

.showcase__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5l-3-3 1.4-1.4L6.5 8.7l4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ====================================================================
   FEATURE GRID
   ==================================================================== */
.features {
  background: var(--bone);
}

.features__header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.features__header .eyebrow { margin-bottom: 1.5rem; }
.features__header .h-section { margin-bottom: 1.25rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature:hover::before { transform: scaleX(1); }

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-ice) 0%, var(--green-light) 100%);
  color: var(--blue);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.feature__text {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ====================================================================
   PRICING
   ==================================================================== */
.pricing { background: var(--paper); }

.pricing__header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.pricing__header .eyebrow { margin-bottom: 1.5rem; }
.pricing__header .h-section { margin-bottom: 1.25rem; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}

.tier {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.tier--featured {
  background: linear-gradient(180deg, var(--ink) 0%, var(--blue-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .tier--featured { transform: none; }
}

.tier--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: transparent;
}

.tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(45, 125, 50, 0.4);
}

.tier__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.tier__tagline {
  font-size: 0.875rem;
  opacity: 0.65;
  margin-bottom: 2rem;
}

.tier__price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.tier--featured .tier__price { border-color: rgba(255, 255, 255, 0.15); }

.tier__price-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tier__price-period {
  font-size: 0.95rem;
  opacity: 0.65;
  margin-left: 0.25rem;
}

.tier__features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.tier__features li {
  padding: 0.65rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.925rem;
  line-height: 1.5;
}

.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5l-3-3 1.4-1.4L6.5 8.7l4.6-4.6 1.4 1.4z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.tier--featured .tier__features li::before { background-color: var(--green-bright); }

.tier .btn { width: 100%; }

.tier--featured .btn--primary {
  background: var(--white);
  color: var(--ink);
}

.tier--featured .btn--primary:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(45, 125, 50, 0.5);
}

/* ====================================================================
   COMMUNITY MOMENT (big photo with overlay quote)
   ==================================================================== */
.moment {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 6rem 0;
}

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

.moment__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/community-investor.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.moment__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 53, 103, 0.7) 0%, rgba(10, 14, 20, 0.5) 100%);
}

.moment__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.moment__quote {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 2rem 0;
}

.moment__cite {
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* ====================================================================
   GALLERY GRID
   ==================================================================== */
.gallery {
  background: var(--bone);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
  }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__item:nth-child(4) { grid-column: span 2; }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.gallery__item:hover { transform: translateY(-4px); }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 14, 20, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 1;
}

.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================================
   CTA BANNER
   ==================================================================== */
.cta {
  position: relative;
  padding: 6rem 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(45, 125, 50, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(27, 77, 142, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.cta__text {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__brand-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.footer__brand-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2;
}

.footer__brand-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 2px;
  font-family: var(--sans);
  font-weight: 500;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 360px;
}

.footer__heading {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__list li { margin-bottom: 0.5rem; }
.footer__list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.925rem;
  transition: color 0.2s var(--ease);
}
.footer__list a:hover { color: var(--green-bright); }

.footer__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.925rem;
  margin-bottom: 0.5rem;
}

.footer__phone {
  color: var(--green-bright);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ====================================================================
   CONTACT PAGE
   ==================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }

.contact-info__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.contact-info__text {
  color: var(--slate);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-info__row {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-info__row:last-of-type { border-bottom: none; }

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: 12px;
}

.contact-info__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.contact-info__value a { color: var(--blue); }
.contact-info__value a:hover { color: var(--green); }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 1.25rem; }

.field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field__input,
.field__textarea,
.field__select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27, 77, 142, 0.08);
}

.field__textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.field__submit { width: 100%; margin-top: 0.5rem; }

/* ====================================================================
   MAP
   ==================================================================== */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21/9;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
  .map-wrap { aspect-ratio: 4/3; }
}

/* ====================================================================
   ABOUT PAGE — values
   ==================================================================== */
.values {
  background: var(--bone);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .values__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

.value {
  text-align: center;
  padding: 2rem 1rem;
}

.value__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.value__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.value__text {
  color: var(--slate);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ====================================================================
   LIGHTBOX (click-to-expand gallery)
   ==================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  z-index: 1;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 4px;
}

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  max-width: 80vw;
  text-align: center;
}

/* Make gallery items clickable */
.gallery__item {
  cursor: zoom-in;
}

/* Lock body scroll when lightbox open */
body.lightbox-open {
  overflow: hidden;
}

/* ====================================================================
   PARTNER SECTION (SOS sponsor)
   ==================================================================== */
.partner {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.partner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 125, 50, 0.08) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.partner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .partner__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
  }
}

.partner__content { padding: 1rem 0; }

.partner__content .eyebrow { margin-bottom: 1.5rem; }

.partner__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.partner__brand {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.partner__text {
  color: var(--slate);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.partner__text:last-of-type { margin-bottom: 2rem; }

.partner__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.partner__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 125, 50, 0.15) 0%, transparent 50%);
}

.partner__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.partner__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 125, 50, 0.2);
}

/* Compact partner callout (homepage) */
.partner-callout {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.partner-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(45, 125, 50, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(27, 77, 142, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.partner-callout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .partner-callout__inner {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.partner-callout__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

.partner-callout__eyebrow::before {
  content: '···';
  letter-spacing: 0.1em;
  color: var(--green-bright);
  font-family: monospace;
}

.partner-callout__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.partner-callout__title-accent {
  color: var(--green-bright);
  font-style: italic;
  font-weight: 500;
}

.partner-callout__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.partner-callout__action {
  justify-self: start;
}

@media (min-width: 768px) {
  .partner-callout__action { justify-self: end; }
}

/* ====================================================================
   ANIMATIONS & UTILITIES
   ==================================================================== */

/* Default state: content is visible (graceful degradation if JS fails) */
.reveal {
  opacity: 1;
  transform: none;
}

/* Only when JS is ready, hide the elements for animation */
html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

.text-center { text-align: center; }
.no-padding-top { padding-top: 0 !important; }

/* Print styles */
@media print {
  .nav, .cta, .footer, .hero__scroll-hint { display: none; }
  body { color: black; background: white; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
