/* ============================================
   MANIFESTE — Brutalist Grid System (Lenstra Inspired)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');

:root {
  /* Core Colors */
  --bg: #FFFFFF;
  --bg-warm: #F9F9F9;
  --surface: #FFFFFF;
  --surface-hover: #F3F3F3;
  --border: #E5E5E5;
  --border-light: #F3F3F3;

  /* Text Colors */
  --cream: #000000;
  --text: #0F0F0F;
  --text-secondary: #606060;
  --text-muted: #ACACAC;

  /* Accents */
  --gold: #000000;
  --gold-light: #272727;
  --gold-dark: #141414;
  --gold-glow: rgba(0, 0, 0, 0.05);
  --gold-gradient: #000000;

  /* Typography */
  --font-heading: 'Satoshi', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Radii */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-full: 999px;

  /* Layout */
  --max-width: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.4s;
  --duration-fast: 0.2s;
}

/* --- Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  /* Brutalist grid lines */
  background-image:
    linear-gradient(to right, var(--border-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
  background-size: 6.25% 6.25%;
  background-attachment: fixed;
}

@media (max-width: 1024px) {
  body {
    background-size: 12.5% 12.5%;
  }
}

@media (max-width: 768px) {
  body {
    background-size: 25% 25%;
  }
}

::selection {
  background: #E5E5E5;
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.1s;
  transform: translate(-50%, -50%);
}

.cursor.cursor--hover {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-color: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.t-display {
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1;
}

.t-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.t-subheading {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.t-body-lg {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-secondary);
}

.t-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: inline-block;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  background: var(--bg);
  border-radius: var(--radius-full);
}

.t-italic {
  font-style: normal;
}

.t-gold {
  color: var(--gold);
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  display: inline;
}

.t-muted {
  color: var(--text-muted);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.section--large {
  padding: var(--space-2xl) 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

.divider--gold {
  background: var(--border);
}

/* Reveal Animations */
.reveal,
.reveal--left,
.reveal--right {
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.reveal {
  transform: translateY(20px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--duration-fast);
}

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

.nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--text);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.nav__cta:hover {
  background: var(--text-secondary);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-bottom: var(--space-xl);
  padding-top: 12rem;
  border-bottom: 1px solid var(--border);
}

.hero__bg {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__eyebrow {
  margin-bottom: var(--space-md);
}

.hero__title {
  max-width: 1100px;
  margin-bottom: var(--space-lg);
}

.hero__title em {
  font-style: normal;
  color: var(--text-muted);
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.hero__desc {
  max-width: 580px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 1.5rem;
  position: relative;
  letter-spacing: -0.01em;
}

.hero__desc::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.hero__desc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--cream);
  z-index: 1;
  animation: drawLine 1.5s var(--ease-out) forwards;
  animation-delay: 0.8s;
}

@keyframes drawLine {
  to {
    height: 100%;
  }
}

.hero__desc strong {
  color: var(--cream);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.hero__desc strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out);
}

.hero__desc:hover strong::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--cream);
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
}

.btn-primary:hover {
  background: var(--text-secondary);
  color: var(--bg);
}

.btn-primary .btn-arrow {
  transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg);
  transition: all var(--duration-fast);
}

.btn-outline:hover {
  background: var(--surface-hover);
}

/* --- Marquee --- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.marquee__item::after {
  content: '•';
  color: var(--text-muted);
  font-size: 1.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Problem --- */
.problem {
  background: var(--bg);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.problem__left {
  position: sticky;
  top: 8rem;
}

.problem__number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--cream);
  line-height: 0.8;
  margin-bottom: var(--space-md);
}

.problem__subtitle {
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  max-width: 440px;
}

.problem__stats {
  display: flex;
  flex-direction: column;
}

.stat {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.stat:first-child {
  padding-top: 0;
}

.stat:last-child {
  border-bottom: none;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  background: none;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat__label {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 380px;
  font-weight: 400;
}

/* --- Approach --- */
.approach__header {
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

.approach__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.pillar {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: var(--surface-hover);
}

.pillar__index {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.pillar__desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Results --- */
.results {
  background: var(--bg);
}

.results__header {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.result-block {
  padding: var(--space-xl) var(--space-md);
  text-align: left;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.result-block:last-child {
  border-right: none;
}

.result-block__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: none;
}

.result-block__number .accent {
  color: var(--text-muted);
}

.result-block__label {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 280px;
  font-weight: 400;
}

/* --- Offer --- */
.offer__wrapper {
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.offer__wrapper::before {
  display: none;
}

.offer__header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.offer__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

.offer__details {
  padding: var(--space-lg);
  border-right: 1px solid var(--border);
}

.offer__list {
  margin-top: var(--space-md);
}

.offer__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 400;
}

.offer__list-item:last-child {
  border-bottom: none;
}

.offer__check {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.offer__pricing {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--surface-hover);
}

.offer__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--cream);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.offer__price-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  max-width: 280px;
}

/* --- Process --- */
.process__header {
  margin-bottom: var(--space-xl);
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.process__step {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--duration-fast);
}

.process__step:nth-child(3n) {
  border-right: none;
}

.process__step:hover {
  background: var(--surface-hover);
}

.process__step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color var(--duration-fast);
}

.process__step:hover .process__step-num {
  color: var(--cream);
}

.process__step-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.process__step-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Blog --- */
.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.blog-post {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}

.blog-post:hover {
  transform: translateY(-8px);
}

.blog-post--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.blog-post__image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.blog-post--featured .blog-post__image {
  aspect-ratio: 4/3;
}

.blog-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  border-radius: 0;
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.2);
}

.blog-post:hover .blog-post__image img {
  transform: scale(1.02);
}

.blog-post__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.blog-post__category,
.blog-post__date {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-post__category {
  color: var(--cream);
}

.blog-post__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-post--featured .blog-post__title {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.blog-post__excerpt {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  font-weight: 400;
}

.blog-post__readmore {
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

/* --- Contact & Footer --- */
.contact {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  backdrop-filter: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact__left {
  position: sticky;
  top: 10rem;
  align-self: start;
}

.contact__info {
  margin-top: var(--space-xl);
}

.contact__info-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}

.contact__info-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact__info-value {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__label {
  font-family: var(--font-heading);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1.25rem;
  transition: border-color var(--duration-fast);
  outline: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--cream);
}

.form__textarea {
  min-height: 180px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-md);
  background: var(--bg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.footer__brand-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 340px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.footer__col-link {
  display: block;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  font-weight: 500;
  transition: color var(--duration-fast);
}

.footer__col-link:hover {
  color: var(--cream);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {

  .problem__grid,
  .offer__body,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .approach__pillars,
  .results__grid,
  .process__timeline {
    grid-template-columns: 1fr;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .pillar,
  .result-block,
  .process__step {
    border-right: none;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog-post--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .offer__details {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    z-index: 999;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero__bottom,
  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}

/* Fix missing article css */
.article-header {
  padding-top: 10rem;
  padding-bottom: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

.article-header__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.article-header__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-md);
}

.article-header__intro {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding-bottom: var(--space-2xl);
}

.article-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--cream);
  font-family: var(--font-heading);
}

.article-content h3 {
  font-size: 1.5rem;
  margin: var(--space-lg) 0 var(--space-md);
  color: var(--cream);
  font-family: var(--font-heading);
}

.article-content p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

.article-content strong {
  color: var(--cream);
  font-weight: 700;
}

.article-content blockquote {
  border-left: 2px solid var(--cream);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 500;
}

.article-content ul {
  margin: var(--space-md) 0;
  padding-left: 1.5rem;
}

.article-content li {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.article-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cream);
  font-weight: 700;
}