/* ==========================================================================
   ATG HOMEPAGE STYLES — v3 (April 26, 2026)
   CORRECTED BRAND PALETTE: 5 colors only per ATG brand kit
   - Ice Blue #DCF2F7
   - Clarity Teal #4A9AB0
   - Deep Navy-Plum #33254C
   - Bloom Rose-Crimson #CB295C
   - Bloom Amber #EF9834
   Fonts: Montserrat (display + UI), Nunito (body + italics)
   Upload to: Assets folder. Replaces existing atg_homepage.css.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

.atg-home {
  --clarity-teal: #4A9AB0;
  --clarity-teal-dark: #3A7E92;
  --ice-blue: #DCF2F7;
  --deep-plum: #33254C;
  --deep-plum-dark: #251A39;
  --bloom-rose: #CB295C;
  --bloom-rose-dark: #A52049;
  --bloom-amber: #EF9834;
  --ice-mist: #EEF7F9;
  --teal-wash: #DBEDF2;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --slate: #4A5568;

  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}

.atg-home * { box-sizing: border-box; }

.atg-home__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FOG DIVIDER */
.atg-home__fog-divider {
  position: relative;
  height: 100px;
  margin-top: -100px;
  pointer-events: none;
  z-index: 3;
}
.atg-home__fog-divider--to-mist { background: linear-gradient(to bottom, transparent 0%, rgba(238, 247, 249, 0.3) 50%, var(--ice-mist) 100%); }
.atg-home__fog-divider--to-white { background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.4) 50%, var(--white) 100%); }
.atg-home__fog-divider--to-cream { background: linear-gradient(to bottom, transparent 0%, rgba(250, 247, 242, 0.4) 50%, var(--cream) 100%); }

/* IMAGE ZONES */
.atg-home__image-zone {
  background-color: rgba(255, 255, 255, 0.03);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.atg-home__image-zone--placeholder {
  border: 1px dashed rgba(74, 85, 104, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(74, 85, 104, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.atg-home__image-zone--placeholder::before { content: attr(data-zone); }

/* HERO */
.atg-home__hero {
  background: radial-gradient(ellipse at 70% 30%, rgba(74, 154, 176, 0.20) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(239, 152, 52, 0.12) 0%, transparent 55%),
              var(--deep-plum);
  color: var(--white);
  padding: 140px 24px 180px;
  position: relative;
  overflow: hidden;
}
.atg-home__hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 1;
}
.atg-home__hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 2; }

.atg-home__hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clarity-teal);
  font-weight: 700;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(74, 154, 176, 0.5);
}
.atg-home__hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 28px;
  max-width: 900px;
}
.atg-home__hero-subhead {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ice-blue);
  margin: 0 0 48px;
  max-width: 680px;
}

.atg-home__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

.atg-home__btn-primary {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clarity-teal);
  color: var(--white);
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: none;
}
.atg-home__btn-primary:hover { background: var(--clarity-teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(74, 154, 176, 0.4); color: var(--white); }
.atg-home__btn-primary::after { content: "→"; font-size: 16px; transition: transform 0.2s ease; }
.atg-home__btn-primary:hover::after { transform: translateX(4px); }

.atg-home__link {
  font-family: 'Montserrat', sans-serif;
  color: var(--ice-blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 242, 247, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.atg-home__link:hover { border-bottom-color: var(--clarity-teal); color: var(--ice-blue); }

/* BELIEF BAR */
.atg-home__belief {
  background: var(--ice-mist);
  padding: 100px 24px;
  text-align: center;
  position: relative;
}
.atg-home__belief-mark { width: 80px; height: 80px; margin: 0 auto 32px; }
.atg-home__belief-quote {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.5;
  color: var(--charcoal);
  font-style: italic;
  max-width: 920px;
  margin: 0 auto 24px;
  font-weight: 400;
}
.atg-home__belief-accent { display: inline-block; width: 60px; height: 2px; background: var(--clarity-teal); margin: 24px auto 0; }

/* PATTERN */
.atg-home__pattern { background: var(--white); padding: 100px 24px; position: relative; }
.atg-home__pattern-bg { position: absolute; inset: 0; opacity: 0.4; z-index: 1; pointer-events: none; }
.atg-home__pattern .atg-home__container { position: relative; z-index: 2; }

.atg-home__eyebrow {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clarity-teal);
  font-weight: 700;
  margin-bottom: 20px;
}
.atg-home__h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.atg-home__pattern-intro { max-width: 680px; margin-bottom: 56px; }
.atg-home__pattern-intro p { font-size: 17px; color: var(--slate); margin: 0; line-height: 1.65; }

.atg-home__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 64px;
  position: relative;
}
.atg-home__flow-step {
  background: var(--ice-mist);
  border-left: 3px solid var(--clarity-teal);
  padding: 28px 24px;
  position: relative;
}
.atg-home__flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clarity-teal);
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
  background: var(--white);
  padding: 0 4px;
}
.atg-home__flow-num { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--clarity-teal); font-weight: 800; margin-bottom: 8px; letter-spacing: 1px; }
.atg-home__flow-label { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; line-height: 1.3; }
.atg-home__flow-desc { font-size: 14px; color: var(--slate); line-height: 1.5; margin: 0; }

.atg-home__vantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.atg-home__vantage { padding: 32px; background: var(--cream); border-top: 4px solid; }
.atg-home__vantage--hr { border-top-color: var(--clarity-teal); }
.atg-home__vantage--leader { border-top-color: var(--bloom-amber); }
.atg-home__vantage--team { border-top-color: var(--bloom-rose); }
.atg-home__vantage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.atg-home__vantage-body { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0; }

.atg-home__pattern-close { text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(74, 85, 104, 0.15); }
.atg-home__pattern-close p { font-family: 'Nunito', sans-serif; font-size: 22px; font-style: italic; color: var(--charcoal); margin: 0; font-weight: 400; }

/* STATS */
.atg-home__stats { background: var(--teal-wash); padding: 100px 24px; }
.atg-home__stats-header { text-align: center; margin-bottom: 56px; }
.atg-home__stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.atg-home__stat {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(51, 37, 76, 0.06);
  border-top: 3px solid;
}
.atg-home__stat--direction { border-top-color: var(--clarity-teal); }
.atg-home__stat--decision { border-top-color: var(--bloom-amber); }
.atg-home__stat--boundary { border-top-color: var(--bloom-rose); }

.atg-home__stat-fog {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.atg-home__stat--direction .atg-home__stat-fog { color: var(--clarity-teal); }
.atg-home__stat--decision .atg-home__stat-fog { color: var(--bloom-amber); }
.atg-home__stat--boundary .atg-home__stat-fog { color: var(--bloom-rose); }

.atg-home__stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.atg-home__stat-number em { font-style: normal; }
.atg-home__stat--direction .atg-home__stat-number em { color: var(--clarity-teal); }
.atg-home__stat--decision .atg-home__stat-number em { color: var(--bloom-amber); }
.atg-home__stat--boundary .atg-home__stat-number em { color: var(--bloom-rose); }

.atg-home__stat-body { font-size: 15px; color: var(--slate); line-height: 1.6; margin-bottom: 24px; }
.atg-home__stat-source {
  font-size: 12px;
  color: var(--slate);
  opacity: 0.75;
  border-top: 1px solid rgba(74, 85, 104, 0.1);
  padding-top: 16px;
  line-height: 1.5;
  font-style: italic;
}

.atg-home__stat-list { list-style: none; padding: 0; margin: 0 0 24px; }
.atg-home__stat-list li {
  font-family: 'Nunito', sans-serif;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(74, 85, 104, 0.1);
  font-style: italic;
}
.atg-home__stat-list li:last-child { border-bottom: none; }
.atg-home__stat-list li::before { content: "→ "; color: var(--bloom-amber); font-style: normal; font-weight: 700; }

/* FRAMEWORK */
.atg-home__framework {
  background: var(--deep-plum);
  color: var(--white);
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.atg-home__framework::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 152, 52, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.atg-home__framework::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(203, 41, 92, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.atg-home__framework-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
.atg-home__framework-eyebrow {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bloom-amber);
  font-weight: 700;
  margin-bottom: 24px;
}
.atg-home__framework-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.atg-home__framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.atg-home__framework-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 56px 36px 48px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atg-home__framework-bloom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  opacity: 0.95;
}

.atg-home__framework-fog {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.atg-home__framework-card--direction .atg-home__framework-fog { color: var(--clarity-teal); }
.atg-home__framework-card--decision .atg-home__framework-fog { color: var(--bloom-amber); }
.atg-home__framework-card--boundary .atg-home__framework-fog { color: var(--bloom-rose); }

.atg-home__framework-fog-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  margin: 0;
  line-height: 1.45;
  font-weight: 400;
  max-width: 240px;
}

.atg-home__framework-arrow { display: flex; align-items: center; justify-content: center; margin: 28px 0; position: relative; width: 100%; }
.atg-home__framework-arrow::before { content: ""; width: 60px; height: 1px; background: rgba(255, 255, 255, 0.2); position: absolute; left: 50%; transform: translateX(-50%); }
.atg-home__framework-arrow span {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--deep-plum);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.atg-home__framework-clarity-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clarity-teal);
  margin-bottom: 12px;
}
.atg-home__framework-clarity {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  line-height: 1.25;
  color: var(--white);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.atg-home__framework-clarity-desc {
  font-size: 16px;
  color: rgba(220, 242, 247, 0.85);
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

/* PORTRAITS */
.atg-home__portraits { background: var(--white); padding: 100px 24px; }
.atg-home__portraits-header { text-align: center; margin-bottom: 64px; }
.atg-home__portraits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(74, 85, 104, 0.12); }
.atg-home__portrait { position: relative; display: flex; flex-direction: column; }
.atg-home__portrait--team { background: var(--ice-mist); border-right: 1px solid rgba(74, 85, 104, 0.12); }
.atg-home__portrait--leader { background: var(--cream); }

.atg-home__portrait-image { width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.atg-home__portrait-content { padding: 56px 48px; display: flex; flex-direction: column; flex-grow: 1; }

.atg-home__portrait-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--clarity-teal);
  margin-bottom: 16px;
}
.atg-home__portrait--leader .atg-home__portrait-label { color: var(--deep-plum); }

.atg-home__portrait-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0 0 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.atg-home__portrait-list { list-style: none; padding: 0; margin: 0 0 40px; flex-grow: 1; }
.atg-home__portrait-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
  border-bottom: 1px solid rgba(74, 85, 104, 0.08);
}
.atg-home__portrait-list li:last-child { border-bottom: none; }
.atg-home__portrait-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 14px; height: 1px; background: var(--clarity-teal); }
.atg-home__portrait--leader .atg-home__portrait-list li::before { background: var(--deep-plum); }

.atg-home__portrait-cta {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--clarity-teal);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.atg-home__portrait--leader .atg-home__portrait-cta { background: var(--deep-plum); }
.atg-home__portrait-cta:hover { background: var(--clarity-teal-dark); color: var(--white); }
.atg-home__portrait--leader .atg-home__portrait-cta:hover { background: var(--deep-plum-dark); color: var(--white); }
.atg-home__portrait-cta::after { content: "→"; transition: transform 0.2s ease; }
.atg-home__portrait-cta:hover::after { transform: translateX(3px); }

/* COURSES */
.atg-home__courses { background: var(--cream); padding: 100px 24px; }
.atg-home__courses-header { text-align: center; margin-bottom: 64px; }
.atg-home__courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.atg-home__course {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid rgba(74, 85, 104, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.atg-home__course-tag {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid;
  align-self: flex-start;
}
.atg-home__course--navigate .atg-home__course-tag { color: var(--clarity-teal); border-color: var(--clarity-teal); }
.atg-home__course--lead .atg-home__course-tag { color: var(--deep-plum); border-color: var(--deep-plum); }

.atg-home__course-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.atg-home__course-price { font-family: 'Montserrat', sans-serif; font-size: 22px; color: var(--clarity-teal); font-weight: 700; margin-bottom: 8px; }
.atg-home__course--lead .atg-home__course-price { color: var(--deep-plum); }
.atg-home__course-meta { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--slate); margin-bottom: 24px; letter-spacing: 0.3px; }
.atg-home__course-for { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--charcoal); font-weight: 700; margin-bottom: 20px; }
.atg-home__course-desc { font-size: 16px; color: var(--slate); line-height: 1.65; margin: 0 0 32px; flex-grow: 1; }
.atg-home__course-cta {
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.atg-home__course-cta:hover { background: var(--deep-plum); color: var(--white); }
.atg-home__course-cta::after { content: "→"; transition: transform 0.2s ease; }
.atg-home__course-cta:hover::after { transform: translateX(3px); }

/* TEAM */
.atg-home__team { background: var(--ice-mist); padding: 100px 24px; }
.atg-home__team-inner { max-width: 820px; margin: 0 auto; }
.atg-home__team-bloom { width: 100%; height: 100px; margin: 48px 0 0; background-size: contain; background-position: center; background-repeat: no-repeat; }
.atg-home__team-body p { font-size: 17px; color: var(--charcoal); line-height: 1.75; margin: 0 0 24px; }
.atg-home__team-body p:last-of-type { margin-bottom: 0; }
.atg-home__team-divider { width: 60px; height: 1px; background: var(--clarity-teal); margin: 56px auto 0; }

/* VALUES */
.atg-home__values { background: var(--white); padding: 100px 24px; }
.atg-home__values-header { text-align: center; margin-bottom: 72px; }
.atg-home__values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.atg-home__value { padding: 32px 20px; text-align: center; position: relative; }
.atg-home__value-num { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; margin-bottom: 16px; letter-spacing: 1.5px; }
.atg-home__value:nth-child(1) .atg-home__value-num { color: var(--clarity-teal); }
.atg-home__value:nth-child(2) .atg-home__value-num { color: var(--bloom-amber); }
.atg-home__value:nth-child(3) .atg-home__value-num { color: var(--bloom-rose); }
.atg-home__value:nth-child(4) .atg-home__value-num { color: var(--deep-plum); }
.atg-home__value:nth-child(5) .atg-home__value-num { color: var(--clarity-teal); }
.atg-home__value-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.atg-home__value-desc { font-size: 17px; color: var(--slate); line-height: 1.6; margin: 0; }

/* FINAL CTA */
.atg-home__final {
  background: radial-gradient(ellipse at 50% 100%, rgba(203, 41, 92, 0.20) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(74, 154, 176, 0.15) 0%, transparent 50%),
              var(--deep-plum);
  color: var(--white);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.atg-home__final-bg { position: absolute; inset: 0; opacity: 0.25; mix-blend-mode: screen; z-index: 1; }
.atg-home__final-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.atg-home__final-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.atg-home__final-sub { font-size: 18px; color: var(--ice-blue); line-height: 1.6; margin: 0 auto 48px; max-width: 600px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .atg-home__flow { grid-template-columns: repeat(2, 1fr); }
  .atg-home__flow-step:nth-child(2n)::after { display: none; }
  .atg-home__values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .atg-home__hero { padding: 100px 20px 120px; }
  .atg-home__belief, .atg-home__pattern, .atg-home__stats, .atg-home__portraits,
  .atg-home__courses, .atg-home__team, .atg-home__values { padding: 72px 20px; }
  .atg-home__framework, .atg-home__final { padding: 100px 20px; }
  .atg-home__flow { grid-template-columns: 1fr; }
  .atg-home__flow-step::after { display: none !important; }
  .atg-home__vantage-grid, .atg-home__stats-grid, .atg-home__framework-grid,
  .atg-home__portraits-grid, .atg-home__courses-grid { grid-template-columns: 1fr; }
  .atg-home__portrait--team { border-right: none; border-bottom: 1px solid rgba(74, 85, 104, 0.12); }
  .atg-home__portrait-content { padding: 40px 28px; }
  .atg-home__values-grid { grid-template-columns: 1fr 1fr; }
  .atg-home__cta-row { flex-direction: column; align-items: flex-start; }
  .atg-home__stat-number { font-size: 44px; }
  .atg-home__fog-divider { height: 60px; margin-top: -60px; }
}
