﻿:root {
  --bg: #f8f7f4;
  --deep: #13234c;
  --navy: #0d1d44;
  --card: #ffffff;
  --primary: #1769e0;
  --primary-dark: #0c53bd;
  --orange: #ff754c;
  --yellow: #ffb000;
  --soft: #eef3ff;
  --border: #dde3ee;
  --muted: #5f6e89;
  --soft-white: rgba(255,255,255,0.8);
  --shadow: 0 18px 35px rgba(19, 35, 76, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--deep);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}
button, input, select {
  font: inherit;
}
button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-padding { padding-top: 105px; padding-bottom: 105px; }

.announcement-bar {
  position: relative;
  z-index: 30;
  background: var(--orange);
  color: #fff;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 42px;
}
.announcement-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffdf70;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}
.announcement-text,
.announcement-copy {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.announcement-copy {
  display: none;
  letter-spacing: 0.12em;
}
.announcement-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.3);
  display: none;
}
.announcement-link {
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e8eaf0;
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  gap: 14px;
  padding-top: 18px;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.ga-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.ga-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
.ga-top a,
.ga-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo {
  display: block;
  max-width: 100%;
  height: auto;
}
.logo.left {
  width: 140px;
}
.logo.center {
  width: 140px;
}
.logo.right {
  width: 140px;
}
.divider {
  width: 2px;
  height: 120px;
  background: #d7dbe6;
}
.ga-logo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.with-line {
  display: block;
  width: 120px;
  height: 2px;
  background: #202f47;
  opacity: 0.9;
}
.ga-logo-line p {
  margin: 0;
  font-size: clamp(22px, 2vw, 18px);
  line-height: 1;
  font-weight: 500;
  color: #1d2333;
}
.ga-logo-line p a {
  color: #000;
  text-decoration: none;
}
.ga-title {
  display: flex;
  justify-content: center;
  width: 100%;
}
.ga-line {
  width: 100%;
  height: 2px;
  background: #d7dbe6;
  margin-top: 12px;
}
.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
}
.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: auto;
  padding-top: 0;
}
.desktop-nav button,
.footer-links button {
  position: relative;
  color: #44516d;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.18s ease;
}
.desktop-nav button::after, .footer-links button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.desktop-nav button:hover, .footer-links button:hover { color: var(--primary); }
.desktop-nav button:hover::after, .footer-links button:hover::after { transform: scaleX(1); }

.primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.primary-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}
.primary-btn:hover { background: var(--primary-dark); }
.secondary-btn {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 14px 20px;
}
.secondary-btn:hover { background: rgba(255,255,255,0.1); }
.primary-btn.alt {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
}
.primary-btn:active, .secondary-btn:active, .announcement-link:active, .workshop-link:active, .text-link:active { transform: scale(.98); }

.mobile-only { display: inline-flex; }
.desktop-only { display: none; }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  padding: 0 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--deep);
  border-radius: 999px;
}
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  z-index: 15;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 25px rgba(19, 35, 76, 0.1);
  padding: 18px 24px 22px;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  font-size: 18px;
  line-height: 1;
}
.mobile-menu.open { display: grid; gap: 6px; }
.mobile-menu button {
  padding: 12px 0;
  text-align: left;
  font-weight: 700;
  color: #35425e;
}
.mobile-menu-btn { margin-top: 6px; }

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 26%, #2478ec 0%, #1259cd 24%, transparent 49%),
              linear-gradient(118deg, #08163d 0%, #122d72 60%, #123f98 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}
.hero-sunburst {
  position: absolute;
  right: -280px;
  top: -80px;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  border: 1px solid rgba(217,229,255,0.6);
  box-shadow: 0 0 0 76px rgba(255,255,255,0.04), 0 0 0 152px rgba(255,255,255,0.03), 0 0 0 228px rgba(255,255,255,0.02);
  opacity: 0.2;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.9;
}
.orb-one {
  width: 15rem;
  height: 15rem;
  left: -6rem;
  bottom: -7rem;
  background: var(--orange);
}
.orb-two {
  width: 8rem;
  height: 8rem;
  right: 9%;
  bottom: -3.5rem;
  background: var(--yellow);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-copy {
  max-width: 680px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255,255,255,.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.eyebrow-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.hero-copy h1 {
  margin: 20px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #fff;
  font-weight: 400;
}
.hero-copy h1 em {
  color: var(--yellow);
  font-style: italic;
}
.hero-copy p {
  margin: 25px 0 0;
  max-width: 570px;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-btn { min-width: 210px; }
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 18px;
  margin-top: 26px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 600;
}
.feature-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feature-row svg {
  width: 14px;
  height: 14px;
  color: var(--yellow);
}
.hero-visual {
  position: relative;
  width: min(100%, 470px);
  min-height: 420px;
  margin: 0 auto;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 1%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(175,217,255,0.24) 0 12%, transparent 12% 100%),
              url("assets/images/isf-growth-hero_d23e3882.jpg") center / cover no-repeat,
              linear-gradient(135deg, rgba(255,126,90,0.12), rgba(255,196,0,0.09));
  opacity: .6;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}
.orbit-one { width: 350px; height: 350px; }
.orbit-two { width: 455px; height: 455px; border-style: dashed; opacity: .55; }
.phone-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  width: 205px;
  height: 400px;
  padding: 8px;
  border: 7px solid #f2f4fa;
  border-radius: 35px;
  background: #0e1428;
  box-shadow: -18px 28px 43px rgba(0,0,0,0.33);
  z-index: 5;
}
.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 76px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 13px 13px;
  background: #0e1428;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  color: #182344;
}
.screen-status {
  display: flex;
  justify-content: space-between;
  padding: 12px 12px 5px;
  font-size: 7px;
  font-weight: 800;
}
.screen-profile {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px 8px;
  font-size: 7px;
  font-weight: 800;
}
.screen-avatar {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: #fff;
  font-size: 8px;
}
.check-mark {
  color: var(--primary);
  margin-left: 2px;
}
.screen-photo {
  position: relative;
  height: 194px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ff774c, #e93958 52%, #bd2765);
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-align: center;
}
.flower {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, #ffcd31 0 18deg, #fff1af 18deg 36deg);
  filter: drop-shadow(1px 3px 3px rgba(0,0,0,0.12));
}
.flower::after {
  content: "";
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: #ee6353;
}
.flower-a { top: -15px; right: -12px; transform: rotate(24deg); }
.flower-b { left: -10px; bottom: -21px; transform: scale(0.8); }
.flower-c { right: 4px; bottom: 19px; transform: scale(0.48); }
.screen-lines {
  display: grid;
  gap: 5px;
  padding: 10px 11px 7px;
}
.screen-lines i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #dce2ed;
}
.screen-lines i:nth-child(1) { width: 72%; background: #7482a0; }
.screen-lines.bottom { padding-top: 2px; }
.screen-lines.bottom i { height: 3px; width: 78%; }
.screen-actions {
  display: flex;
  gap: 14px;
  padding: 0 11px;
  color: #4d5873;
  font-size: 13px;
}
.growth-card {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 173px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.66);
  border-radius: 13px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 24px rgba(4,20,66,0.16);
  backdrop-filter: blur(14px);
}
.growth-card span {
  display: block;
  color: #65718c;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.growth-card strong {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.1;
}
.growth-card-top { top: 12%; left: 0; }
.growth-card-bottom { right: -10px; bottom: 9%; }
.mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
  color: var(--primary);
}
.social-blue { background: var(--soft); }
.social-green { background: #e6faef; }
.growth-badge {
  position: absolute;
  top: 31%;
  right: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--deep);
  box-shadow: 0 10px 18px rgba(0,0,0,0.13);
  transform: rotate(-5deg);
}
.badge-spark {
  font-size: 19px;
}
.growth-badge small {
  display: block;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.growth-badge strong {
  display: block;
  font-size: 12px;
  line-height: 1;
}
.visual-dot {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--primary);
}
.dot-one { top: 17%; right: 19%; }
.dot-two { left: 17%; bottom: 10%; border-color: #fff; }
.dot-three { right: 14%; bottom: 31%; border-color: var(--orange); }
.hero-bottom-glow {
  position: relative;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--yellow) 48%, #33c68c);
}

.impact-section {
  background: #fff;
  border-bottom: 1px solid #e6e8ed;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid #dfe4f0;
}
.impact-box {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid #dfe4f0;
  border-bottom: 1px solid #dfe4f0;
}
.impact-number {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.05rem, 3vw, 3.4rem);
  color: var(--primary);
  letter-spacing: -0.05em;
  line-height: 1;
}
.impact-box p {
  margin: 10px auto 0;
  max-width: 185px;
  font-size: 12px;
  line-height: 1.5;
  color: #53607c;
}
.impact-note {
  padding-top: 12px;
  padding-bottom: 18px;
  text-align: center;
  color: #77829a;
  font-size: 10px;
}

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.section-label.orange { color: var(--orange); }
.section-label.amber { color: var(--yellow); }
.section-title {
  margin: 18px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.6rem, 4.3vw, 4.35rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  font-weight: 400;
  color: var(--deep);
}
.section-title em {
  color: var(--primary);
  font-style: italic;
}
.section-title.white { color: #fff; }
.section-title.white em { color: var(--yellow); }

.section-header {
  display: grid;
  gap: 20px;
}
.section-header p {
  max-width: 570px;
  color: #52607d;
  font-size: 18px;
  line-height: 1.7;
}

.campaign-section { background: var(--bg); }
.workshop-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.workshop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: 25px;
  border: 1px solid #e2e4e9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(19,35,76,0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.workshop-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--workshop-accent);
}
.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(19,35,76,0.1);
}
.workshop-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: #cbd1df;
  font-size: 12px;
  font-weight: 800;
}
.workshop-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location-pin {
  color: var(--primary);
  font-size: 18px;
}
.workshop-city {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f5ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
}
.workshop-card h3 {
  margin-top: 28px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 400;
}
.workshop-date {
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.workshop-card p {
  margin: 18px 0 0;
  color: #59657f;
  font-size: 14px;
  line-height: 1.55;
}
.workshop-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}
.fine-print {
  margin-top: 18px;
  text-align: center;
  color: #64708b;
  font-size: 14px;
}

.academy-section {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}
.academy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(#5a98ff 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.academy-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
}
.academy-copy p {
  max-width: 615px;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
}
.journey-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.line-arrow { color: #7995cb; font-size: 14px; }
.academy-diagram {
  position: relative;
  min-height: 360px;
  height: 390px;
}
.diagram-line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
}
.line-1 { left: 12%; top: 46%; width: 60%; height: 1px; }
.line-2 { right: 18%; top: 30%; height: 46%; width: 1px; }
.line-3 { left: 32%; bottom: 14%; width: 42%; height: 1px; }
.diagram-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255,255,255,0.02);
}
.diagram-center-inner {
  text-align: center;
  color: #fff;
}
.diagram-center-inner span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.diagram-center-inner strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.06em;
}
.diagram-center-inner small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.diagram-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(15,25,52,0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.node-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.node-discover { left: 2%; top: 10%; }
.node-connect { right: 10%; top: 18%; }
.node-sell { left: 8%; bottom: 12%; }
.node-grow { right: 6%; bottom: 14%; }

.learn-section { background: #fff; }
.learn-header p {
  max-width: 610px;
  margin-top: 18px;
  color: #52607d;
  font-size: 18px;
  line-height: 1.7;
}
.learning-grid {
  display: grid;
  gap: 22px 28px;
  margin-top: 38px;
}
.learning-card {
  position: relative;
  padding: 22px 4px 28px;
  border-top: 1px solid #dde2ec;
}
.learning-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.learning-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eff5ff;
  color: var(--primary);
  font-size: 18px;
}
.learning-top span:last-child {
  color: #a4adbd;
  font-size: 11px;
  font-weight: 900;
}
.learning-card h3 {
  margin-top: 24px;
  color: var(--deep);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.learning-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.agenda-section { background: #f2f4f7; }
.agenda-layout {
  display: grid;
  gap: 30px;
}
.agenda-copy p {
  max-width: 360px;
  margin-top: 18px;
  color: #52607d;
  font-size: 17px;
  line-height: 1.7;
}
.text-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}
.agenda-list {
  border-top: 1px solid #d4dae4;
}
.agenda-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #d4dae4;
}
.agenda-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}
.agenda-number {
  display: inline-block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.agenda-item h3 {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--deep);
}
.agenda-item p {
  margin-top: 8px;
  max-width: 470px;
  color: #66718a;
  font-size: 13px;
  line-height: 1.55;
}

.journey-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #0e1d43, #173e8f);
}
.journey-section::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -190px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.journey-head {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}
.journey-head p {
  max-width: 590px;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.7;
}
.journey-stats {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: 38px;
}
.journey-stat {
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.journey-stat strong {
  display: block;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  color: var(--yellow);
  font-weight: 400;
}
.journey-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  line-height: 1.5;
}
.journey-strip {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
}
.journey-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.strip-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--deep);
  font-size: 22px;
}
.journey-strip p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}
.journey-strip strong { color: #fff; }
.secondary-btn.light {
  border-color: rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
}

.speaker-section { background: #fff; }
.speaker-layout {
  display: grid;
  gap: 12px;
}
.speaker-layout p {
  max-width: 575px;
  color: #52607d;
  font-size: 18px;
  line-height: 1.7;
}
.speaker-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.speaker-card {
  padding: 22px 18px 22px;
  border: 1px solid #e5e7ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(19,35,76,0.02);
}
.speaker-card span {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.speaker-avatar {
  margin-top: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #edf3ff;
  color: #1769e0;
  font-size: 18px;
}
.speaker-card h3 {
  margin-top: 16px;
  color: var(--deep);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.speaker-card p {
  margin-top: 12px;
  color: #64708a;
  font-size: 13px;
  line-height: 1.6;
}

.registration-section {
  background: linear-gradient(180deg, #f8f7f4 0, #f3f5f8 100%);
}
.register-wrap {
  display: grid;
  gap: 24px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.registration-copy {
  background: linear-gradient(115deg, #13234c, #173e8f);
  border-radius: 28px;
  padding: 36px 26px;
}
.register-title {
  margin: 18px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #fff;
  font-weight: 400;
}
.register-title em { color: var(--yellow); font-style: italic; }
.registration-copy p {
  max-width: 420px;
  margin-top: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
}
.register-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
}
.register-check span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.registration-form-wrap {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 28px;
  padding: 28px 22px 32px;
  box-shadow: 0 4px 15px rgba(19,35,76,0.03);
}
.form-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.form-label-small {
  margin: 0;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.form-top h3 {
  margin: 8px 0 0;
  color: var(--deep);
  font-size: 30px;
  letter-spacing: -0.04em;
}
.step-tag {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.field {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 13px;
  font-weight: 700;
}
.field-full { grid-column: 1 / -1; }
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9dfeb;
  border-radius: 14px;
  background: #f8f9fc;
  color: var(--deep);
  font-size: 15px;
}
.field input::placeholder { color: #808ca5; }
.select-field {
  position: relative;
}
.select-field select {
  appearance: none;
  padding-right: 42px;
}
.select-caret {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--muted);
  font-size: 17px;
}
.form-error {
  min-height: 24px;
  margin: 14px 0 0;
  color: #d33d2d;
  font-size: 14px;
  font-weight: 600;
}
.submit-btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
}
.legal-copy {
  margin: 18px 0 0;
  color: #6e7890;
  font-size: 11px;
  line-height: 1.6;
}
.form-status {
  display: none;
}
.form-status.visible {
  display: block;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23,105,224,0.08);
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
}
.success-label {
  margin-top: 16px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.form-status h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--deep);
}
.form-status p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.small-link {
  margin-top: 18px;
  font-size: 14px;
  color: var(--primary);
  text-decoration: underline;
}

.footer {
  background: #0d1d44;
  color: #fff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.footer-brand {
  color: #fff;
}
.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer-links button {
  color: rgba(255,255,255,0.65);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 16px 18px;
  background: rgba(7,14,33,0.92);
  backdrop-filter: blur(10px);
}
.mobile-cta .primary-btn {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .page-shell { padding-left: 34px; padding-right: 34px; }
  .announcement-copy, .announcement-divider { display: block; }
  .announcement-text { display: inline-block; }
  .hero-layout { padding-top: 90px; padding-bottom: 80px; }
  .impact-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .impact-box { border-bottom: 0; }
  .journey-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .journey-strip { grid-template-columns: 1fr auto; align-items: center; }
  .register-wrap { grid-template-columns: 0.9fr 1.1fr; }
  .registration-copy, .registration-form-wrap { padding: 46px; }
  .field-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .speaker-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .workshop-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .learning-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-inner { flex-direction: row; align-items: center; }
}

@media (min-width: 1024px) {
  .desktop-nav, .desktop-only { display: flex; }
  .mobile-only, .mobile-cta { display: none; }
  .hero-layout { grid-template-columns: 1.05fr 0.95fr; }
  .academy-layout { grid-template-columns: 1.08fr 0.92fr; align-items: center; }
  .agenda-layout { grid-template-columns: 0.8fr 1.2fr; align-items: end; }
  .learn-header, .section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
  .learn-header p, .section-header p { margin: 0; }
  .journey-head { grid-template-columns: 0.85fr 1.15fr; align-items: end; }
  .journey-stats { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .learning-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 639px) {
  .page-shell { padding-left: 20px; padding-right: 20px; }
  .section-padding { padding-top: 72px; padding-bottom: 72px; }
  .announcement-text { letter-spacing: 0.12em; }
  .hero-copy p, .section-header p, .journey-head p, .academy-copy p, .speaker-layout p { font-size: 16px; }
  .hero-visual { min-height: 345px; margin-top: -5px; transform: scale(0.9); transform-origin: top center; margin-bottom: -35px; }
  .phone-frame { width: 180px; height: 350px; }
  .growth-card { width: 147px; }
  .growth-card-top { left: -9px; }
  .growth-card-bottom { right: -9px; }
  .growth-badge { right: -8px; }
  .journey-line { gap: 7px; }
  .agenda-item { grid-template-columns: 66px 1fr; gap: 10px; }
  .registration-copy { padding: 38px 27px; }
  .registration-form-wrap { padding: 30px 23px 34px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual { animation: visualFloat 6s ease-in-out infinite; }
  .orb-one { animation: orbPulse 5s ease-in-out infinite; }
  .workshop-card, .learning-card, .speaker-card { transition-duration: 180ms; }
}

@keyframes visualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0.95; }
}

.brand-lockup.footer-brand.brand-reference img {
    height: 70px;
}

.brand-lockup.footer-brand.brand-reference {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    align-items: flex-end !important;
}

.meta-lockup img {
    width: auto;
    height: 20px !important;
}

.meta-lockup {
    border-left: 1px solid #000;
    padding-left: 3px;
}

span.meta-word {
    color: #000;
}
.main-logo img {
    width: 330px;
}
.brand-lockup.footer-brand.brand-reference .ga-title img {
    height: 40px;
    width: auto;
}

.brand-lockup.footer-brand.brand-reference .ga-top .divider {
    height: 60px;
    background: #202f47;
}

.brand-lockup.footer-brand.brand-reference .ga-line {
    display: none;
}