:root {
  --color-primary: #071d33;
  --color-primary-2: #0b2948;
  --color-charcoal: #151a1f;
  --color-ivory: #f7f2ea;
  --color-footer-bg: #103f36;
  --color-footer-panel: #00835f;
  --color-footer-accent: #16b36b;
  --color-footer-text: #f5f7f4;
  --color-footer-muted: rgba(245, 247, 244, 0.72);
  --color-footer-border: rgba(255, 255, 255, 0.18);
  --color-text-light: #f8f4ec;
  --color-text-muted: rgba(248, 244, 236, 0.68);
  --color-border-dark: rgba(255, 255, 255, 0.14);
  --color-accent: #1d9e75;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  background: var(--color-ivory);
  color: var(--color-primary);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-left: clamp(1.1rem, 2.5vw, 2.5rem);
  padding-right: clamp(1.1rem, 2.5vw, 2.5rem);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.nav.scrolled {
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 12px 28px rgba(23, 50, 79, 0.08);
}

.nav .container {
  width: min(100%, 1440px);
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brandmark-logo,
.brandmark img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  transition: filter 220ms ease, transform 220ms ease;
}

.nav.scrolled .brandmark-logo {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.nav-home,
.nav-direct,
.mega-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
  transition: color 180ms ease;
}

.nav-home::after,
.nav-direct::after,
.mega-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #c8a464;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-home:hover::after,
.nav-direct:hover::after,
.mega-trigger:hover::after,
.nav-home.active::after,
.nav-direct.active::after,
.nav-mega.is-active .mega-trigger::after,
.mega-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-home.active,
.nav-direct.active,
.nav-mega.is-active .mega-trigger,
.mega-trigger[aria-expanded="true"] {
  color: rgba(255, 255, 255, 0.98);
}

.nav.scrolled .nav-home,
.nav.scrolled .nav-direct,
.nav.scrolled .mega-trigger {
  color: #102a43;
  text-shadow: none;
}

.nav.scrolled .nav-home.active,
.nav.scrolled .nav-direct.active,
.nav.scrolled .nav-mega.is-active .mega-trigger,
.nav.scrolled .mega-trigger[aria-expanded="true"] {
  color: var(--color-primary);
}

.nav-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: var(--mega-left, 0px);
  right: auto;
  width: min(var(--mega-width, 920px), calc(100vw - 48px));
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 238, 0.98)),
    radial-gradient(circle at top right, rgba(200, 164, 100, 0.12), transparent 28%);
  box-shadow: 0 24px 56px rgba(16, 42, 67, 0.16);
  display: grid;
  grid-template-columns: repeat(var(--mega-columns, 4), minmax(0, 1fr));
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.mega-panel--about {
  top: calc(100% + 12px);
  width: min(var(--mega-width, 620px), calc(100vw - 40px));
  padding: 22px 24px;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  box-shadow: 0 18px 42px rgba(15, 28, 42, 0.14);
}

.mega-panel--planning {
  width: min(var(--mega-width, 920px), calc(100vw - 48px));
}

.mega-panel--insights {
  width: min(var(--mega-width, 700px), calc(100vw - 48px));
}

.nav-mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mega-col-title {
  display: inline-block;
  color: #a17e49;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-mega--about .mega-col {
  gap: 10px;
}

.nav-mega--about .mega-col-title {
  margin-bottom: 2px;
}

.nav-mega--about .mega-link {
  gap: 0;
  padding: 10px 12px;
  border-radius: 14px;
}

.nav-mega--about .mega-link-title {
  font-size: 0.92rem;
  line-height: 1.35;
}

.nav-mega--about .mega-link-copy {
  display: none;
}

.mega-link {
  display: grid;
  gap: 7px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mega-link:hover,
.mega-link:focus-visible,
.mega-link.is-current {
  background: rgba(16, 42, 67, 0.05);
  border-color: rgba(16, 42, 67, 0.08);
  transform: translateY(-1px);
}

.mega-link.is-compact {
  gap: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mega-link-title {
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.mega-link-copy {
  color: rgba(16, 42, 67, 0.7);
  font-size: 0.84rem;
  line-height: 1.5;
  max-width: 25ch;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 10px;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.nav-login:hover,
.nav-login:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
  text-shadow: none;
  box-shadow: 0 16px 30px rgba(23, 50, 79, 0.08);
}

.nav.scrolled .nav-login {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 42, 67, 0.12);
  color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.08);
  text-shadow: none;
}

.nav.scrolled .nav-login:hover,
.nav.scrolled .nav-login:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 42, 67, 0.18);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.nav.scrolled .mobile-menu summary {
  color: var(--color-primary);
  border-color: rgba(16, 42, 67, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.08);
  text-shadow: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 50;
  width: min(360px, calc(100vw - 34px));
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  background: rgba(247, 242, 234, 0.98);
  box-shadow: 0 24px 56px rgba(16, 42, 67, 0.16);
  display: grid;
  gap: 4px;
}

.mobile-menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 0.94rem;
  font-weight: 700;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: rgba(16, 42, 67, 0.06);
}

.mobile-menu-heading {
  margin-top: 10px;
  padding: 8px 14px 4px;
  color: rgba(16, 42, 67, 0.5);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu-panel .mobile-menu-cta {
  margin-top: 12px;
  background: rgba(16, 42, 67, 0.05);
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 24px;
  }

  .mega-panel {
    width: min(var(--mega-width, 920px), calc(100vw - 60px));
  }

  .mega-panel--planning,
  .mega-panel--insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-primary);
  min-height: auto;
  overflow: hidden;
}

.hero__stage {
  position: relative;
  width: 100%;
  max-width: none;
  height: clamp(560px, 52vw, 760px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  min-height: auto;
  background: var(--color-primary);
  overflow: hidden;
  isolation: isolate;
}

.hero__stage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(9rem, 18vw, 13.5rem);
  background: linear-gradient(
    180deg,
    rgba(7, 29, 51, 0.82) 0%,
    rgba(7, 29, 51, 0.46) 46%,
    rgba(7, 29, 51, 0.12) 78%,
    rgba(7, 29, 51, 0) 100%
  );
  pointer-events: none;
}

.hero__image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.hero__placeholder {
  display: none;
  place-items: center;
  gap: 0.5rem;
  min-height: 100%;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: rgba(248, 244, 236, 0.8);
  background:
    var(--color-primary)
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.04) 14px,
      rgba(255, 255, 255, 0.02) 14px,
      rgba(255, 255, 255, 0.02) 28px
    );
}

.hero__placeholder.is-visible {
  display: grid;
}

.hero__placeholder p {
  margin: 0;
  font-size: 1rem;
}

.serif {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.eyebrow {
  display: inline-block;
  color: #143f80;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tla-insights-section {
  background: #f5f3ee;
  padding: 78px 0 72px;
}

.tla-insights-shell {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
}

.tla-insights-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tla-insights-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #1a2234;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tla-insights-heading {
  margin: 0;
  color: #1a2234;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.tla-insights-subheading {
  max-width: 42ch;
  margin: 16px auto 0;
  color: #777777;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.tla-insights-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.tla-insights-chip {
  border: 1px solid #1a2234;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: #1a2234;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.tla-insights-chip[aria-pressed="true"] {
  background: #1a2234;
  color: #ffffff;
}

.tla-insights-chip:hover,
.tla-insights-chip:focus-visible {
  border-color: #1a2234;
  transform: translateY(-1px);
}

.tla-insights-grid-root {
  margin-top: 34px;
}

.tla-insights-hero-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #1a2234;
  color: #ffffff;
  box-shadow: 0 26px 56px rgba(26, 34, 52, 0.16);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.tla-insights-hero-card:hover,
.tla-insights-hero-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 32px 68px rgba(26, 34, 52, 0.22);
  border-color: rgba(255, 255, 255, 0.14);
}

.tla-insights-editor-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e1f5ee;
  color: #085041;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tla-insights-hero-category,
.tla-insights-support-category {
  display: inline-block;
  color: rgba(255, 255, 255, 0.76);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tla-insights-hero-title {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.tla-insights-hero-description {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.8;
}

.tla-insights-hero-meta,
.tla-insights-support-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tla-insights-read-pill,
.tla-insights-topic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.tla-insights-read-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tla-insights-read-link {
  color: inherit;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.tla-insights-supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.tla-insights-support-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  padding: 26px 24px;
  border: 1px solid #e2ddd5;
  border-radius: 24px;
  background: #ffffff;
  color: #1a2234;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.tla-insights-support-card:hover,
.tla-insights-support-card:focus-visible {
  transform: translateY(-2px);
  border-color: #1a2234;
  box-shadow: 0 18px 38px rgba(26, 34, 52, 0.08);
}

.tla-insights-support-category {
  color: #777777;
}

.tla-insights-support-title {
  margin: 0;
  color: #1a2234;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.tla-insights-support-description {
  margin: 0;
  color: #777777;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.tla-insights-support-meta {
  margin-top: auto;
}

.tla-insights-topic-pill-amber {
  background: #faeeda;
  color: #633806;
}

.tla-insights-topic-pill-teal {
  background: #e1f5ee;
  color: #085041;
}

.tla-insights-topic-pill-purple {
  background: #eeedfe;
  color: #26215c;
}

.tla-insights-empty-state {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px dashed #d4cdc2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.tla-insights-empty-copy {
  margin: 0;
  color: #777777;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.tla-insights-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.tla-insights-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a2234;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.tla-insights-view-all:hover,
.tla-insights-view-all:focus-visible {
  color: #085041;
}

@media (max-width: 1024px) {
  .tla-insights-section {
    padding: 72px 0 66px;
  }

  .tla-insights-shell {
    width: min(100% - 40px, 1220px);
  }

  .tla-insights-supporting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tla-insights-support-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .tla-insights-section {
    padding: 62px 0 56px;
  }

  .tla-insights-shell {
    width: min(100% - 28px, 1220px);
  }

  .tla-insights-header {
    text-align: left;
  }

  .tla-insights-subheading {
    margin-left: 0;
  }

  .tla-insights-chip-row {
    justify-content: flex-start;
  }

  .tla-insights-hero-card {
    padding: 28px 22px 24px;
  }

  .tla-insights-editor-badge {
    position: static;
    justify-self: start;
    margin-bottom: 4px;
  }

  .tla-insights-hero-title {
    max-width: none;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .tla-insights-hero-description {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .tla-insights-supporting-grid {
    grid-template-columns: 1fr;
  }

  .tla-insights-support-card:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tla-insights-chip,
  .tla-insights-hero-card,
  .tla-insights-support-card {
    transition: none;
  }
}

.home-blog-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 68px;
  background:
    radial-gradient(circle at top left, rgba(175, 138, 80, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ef 72%, #efe6da 100%);
}

.home-blog-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 74px;
  border-top: 1px solid rgba(16, 42, 67, 0.06);
  background: linear-gradient(180deg, rgba(248, 245, 239, 0) 0%, rgba(235, 227, 216, 0.86) 100%);
  pointer-events: none;
}

.home-blog-section .container {
  position: relative;
  z-index: 1;
}

.home-blog-copy {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-blog-copy .eyebrow {
  margin-bottom: 14px;
}

.home-blog-copy h2 {
  max-width: none;
  margin: 0 auto;
  color: #102a43;
  font-size: clamp(2.18rem, 3.1vw, 3rem);
  line-height: 1.04;
}

.home-blog-copy p {
  max-width: 46ch;
  margin: 14px auto 0;
  color: #52616b;
  font-size: 1rem;
  line-height: 1.74;
}

.home-blog-rail {
  position: relative;
  display: grid;
  gap: 20px;
}

.home-blog-viewport {
  overflow: hidden;
}

.home-blog-viewport:focus-visible {
  outline: 1px solid rgba(16, 42, 67, 0.14);
  outline-offset: 6px;
  border-radius: 28px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-blog-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 290px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 18px 46px rgba(16, 42, 67, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.insight-card:hover,
.insight-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(16, 42, 67, 0.12);
  border-color: rgba(16, 42, 67, 0.12);
}

.insight-card--loading {
  justify-content: center;
  color: #52616b;
}

.insight-card-body {
  display: grid;
  gap: 14px;
}

.insight-card-body h3 {
  margin: 0;
  color: #102a43;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.22;
}

.insight-card-body p {
  margin: 0;
  color: #52616b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.insight-card-cta,
.home-blog-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #143f80;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-blog-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1120px) {
  .home-blog-section {
    padding: 88px 0 60px;
  }

  .insights-grid,
  .home-blog-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .home-blog-section {
    padding: 78px 0 52px;
  }

  .home-blog-copy {
    text-align: left;
  }

  .home-blog-copy {
    margin-bottom: 28px;
  }

  .home-blog-copy p {
    max-width: 30ch;
    margin-left: 0;
  }

  .insights-grid,
  .home-blog-track {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card,
  .insight-card-cta,
  .home-blog-footer a {
    transition: none;
  }
}

.pre-footer-cta {
  background: #f8f5ee;
  color: #123f37;
  padding: 56px 20px 58px;
}

.pre-footer-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.pre-footer-cta h2 {
  margin: 0 0 26px;
  color: #123f37;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.pre-footer-cta h2 span {
  display: block;
}

.pre-footer-cta h2 span + span {
  margin-top: 0.38rem;
}

.pre-footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border: 1px solid #123f37;
  border-radius: 999px;
  background: #123f37;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(18, 63, 55, 0.16);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.pre-footer-cta-button:hover,
.pre-footer-cta-button:focus-visible {
  background: #0e332c;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(18, 63, 55, 0.22);
}

.site-footer {
  border-top: 1px solid var(--color-footer-border);
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.site-footer__inner {
  padding-top: clamp(1.7rem, 3vw, 2.25rem);
  padding-bottom: 1rem;
}

.footer-highlight {
  display: grid;
  gap: 1.1rem 1.5rem;
  margin-bottom: 1.55rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--color-footer-panel);
}

.footer-highlight__intro {
  display: grid;
  gap: 0.35rem;
}

.footer-highlight__title {
  margin: 0;
  color: var(--color-footer-text);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.footer-highlight__copy {
  margin: 0;
  max-width: 42rem;
  color: rgba(245, 247, 244, 0.88);
  font-size: 0.93rem;
  line-height: 1.55;
}

.footer-highlight__items {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-highlight__item {
  position: relative;
  padding-left: 1rem;
}

.footer-highlight__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: rgba(245, 247, 244, 0.46);
}

.footer-highlight__item h3,
.footer-highlight__item p {
  margin: 0;
}

.footer-highlight__item h3 {
  color: var(--color-footer-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-highlight__item p,
.footer-highlight__item a {
  margin-top: 0.28rem;
  color: rgba(245, 247, 244, 0.88);
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-footer__columns {
  display: grid;
  gap: 1.25rem 1.6rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
}

.footer-column {
  min-width: 0;
}

.footer-column--brand {
  padding-right: 0.35rem;
}

.footer-title {
  margin: 0 0 0.82rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--color-footer-border);
  color: rgba(245, 247, 244, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brandline {
  margin: 0.8rem 0 0.9rem;
  max-width: 18rem;
  color: var(--color-footer-text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.16;
}

.footer-contact,
.footer-copy,
.footer-compliance p {
  color: var(--color-footer-muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 0.38rem;
}

.footer-contact p,
.footer-copy,
.footer-compliance p {
  margin: 0;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list--dense {
  gap: 0.44rem;
}

.footer-list a {
  color: var(--color-footer-muted);
  font-size: 0.87rem;
  line-height: 1.4;
}

.footer-compliance {
  display: grid;
  gap: 0.42rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-footer-border);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-footer-border);
  color: rgba(245, 247, 244, 0.62);
  font-size: 0.8rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.42rem 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  color: rgba(245, 247, 244, 0.74);
  font-size: 0.8rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-inner {
    min-height: 82px;
  }

  .nav-links {
    display: none;
  }

  .nav-login {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.84rem;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .brandmark-logo,
  .brandmark img {
    height: 36px;
    max-width: 155px;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    gap: 12px;
    min-height: 76px;
  }

  .nav-actions {
    gap: 10px;
    margin-left: auto;
  }

  .mobile-menu summary {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .nav-login {
    display: none;
  }

  .site-footer__columns,
  .footer-highlight__items {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-highlight {
    padding: 1rem;
    border-radius: 0.9rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .pre-footer-cta-inner {
    max-width: 1180px;
  }

  .pre-footer-cta h2 {
    font-size: clamp(1.7rem, 7vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 22px;
  }

  .pre-footer-cta-button {
    min-width: 100%;
  }
}
/* =========================================================
   Goalchi Footer
   ========================================================= */

.gc-footer {
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-text-strong: rgba(255, 255, 255, 0.92);
  --footer-divider: rgba(255, 255, 255, 0.2);
  background: #123f37;
  color: var(--footer-text);
  font-family: inherit;
  padding: 0 0 22px;
}

.gc-footer h1,
.gc-footer h2,
.gc-footer h3,
.gc-footer p,
.gc-footer a,
.gc-footer span,
.gc-footer input,
.gc-footer button {
  font-family: inherit;
}

.gc-footer a,
.gc-footer p,
.gc-footer li {
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-footer sup {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 0.58em;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
  top: -0.55em;
  letter-spacing: 0;
}

.gc-security-strip-inner,
.gc-footer-inner {
  width: min(100% - 180px, 1500px);
  margin: 0 auto;
}

.gc-footer-inner {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gc-security-strip {
  margin: 0;
  padding: 60px 0 40px;
  border: 0;
  border-radius: 0;
  background: #123f37;
  box-shadow: none;
}

.gc-security-copy {
  margin: 0 0 28px;
  padding-left: 0;
}

.gc-security-copy h2 {
  margin: 0 0 8px;
  color: var(--footer-text-strong);
  font-family: inherit;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.gc-security-copy p {
  margin: 0;
  max-width: 680px;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.gc-security-item {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.gc-security-item:first-child {
  padding-left: 0;
}

.gc-security-item:last-child {
  padding-right: 0;
}

.gc-security-item + .gc-security-item {
  border-left: 1px solid var(--footer-divider);
}

.gc-security-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  flex-shrink: 0;
}

.gc-security-item h3 {
  margin: 0 0 10px;
  color: var(--footer-text-strong);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.gc-security-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.gc-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  padding: 0 0 32px;
}

.gc-footer-col h3 {
  margin: 0 0 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--footer-divider);
  color: var(--footer-text-strong);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gc-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-footer-col li + li {
  margin-top: 9px;
}

.gc-footer-col a {
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-footer-col a:hover,
.gc-footer-col a:focus-visible,
.gc-social-links a:hover,
.gc-social-links a:focus-visible,
.gc-regulatory-row a:hover,
.gc-regulatory-row a:focus-visible {
  color: var(--footer-text-strong);
}

.gc-footer-utility {
  display: grid;
  grid-template-columns: 520px 460px;
  justify-content: space-between;
  align-items: start;
  gap: 80px;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--footer-divider);
}

.gc-newsletter-block h3,
.gc-app-block h3 {
  margin: 0 0 14px;
  color: var(--footer-text-strong);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.gc-newsletter-block,
.gc-app-block {
  display: flex;
  flex-direction: column;
}

.gc-app-block {
  text-align: right;
}

.gc-app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.gc-app-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gc-app-badge-link img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
}

.gc-newsletter-form {
  display: grid;
  grid-template-columns: 330px 125px;
  width: fit-content;
  max-width: 100%;
  gap: 14px;
  align-items: center;
}

.gc-newsletter-form input {
  width: 330px;
  max-width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 0 14px;
  color: #102a43;
  background: #ffffff;
  font: inherit;
  font-size: 14px;
}

.gc-newsletter-form input::placeholder {
  color: rgba(16, 42, 67, 0.6);
}

.gc-newsletter-form input:focus-visible {
  outline: 2px solid #19bd72;
  outline-offset: 2px;
}

.gc-newsletter-form button {
  width: 125px;
  height: 44px;
  border: 0;
  border-radius: 3px;
  padding: 0 18px;
  background: #19bd72;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gc-newsletter-form button:hover,
.gc-newsletter-form button:focus-visible {
  background: #14985b;
}

.gc-newsletter-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.gc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.gc-newsletter-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  min-height: 18px;
  color: var(--footer-text);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-newsletter-status.is-success {
  color: #d8ffe7;
}

.gc-newsletter-status.is-error {
  color: #ffe1e1;
}

.gc-equal-opportunity {
  padding: 22px 0;
  border-bottom: 1px solid var(--footer-divider);
}

.gc-equal-opportunity p {
  margin: 0;
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
}

.gc-regulatory-row {
  padding: 28px 0 26px;
  border-top: 1px solid var(--footer-divider);
}

.gc-amfi-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.gc-amfi-logo {
  width: 42px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.gc-amfi-copy {
  display: grid;
  gap: 8px;
}

.gc-amfi-line {
  margin: 0;
  color: var(--footer-text-strong);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.gc-amfi-line span {
  color: #19bd72;
}

.gc-risk-line {
  margin: 0;
  color: var(--footer-text-strong);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.gc-footer-address-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 18px 0 20px;
  border-top: 1px solid var(--footer-divider);
}

.gc-footer-address-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--footer-text-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gc-footer-address-strip p {
  margin: 0;
  color: var(--footer-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-regulatory-row a {
  color: var(--footer-text);
  border-bottom: 0;
}

.gc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-right: 92px;
}

.gc-footer-bottom p {
  margin: 0;
  color: var(--footer-text);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-footer-platform-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

.gc-footer-bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

.gc-footer-bottom a:hover,
.gc-footer-bottom a:focus-visible {
  color: inherit;
  text-decoration: none;
}

.gc-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}

.gc-social-links a {
  color: var(--footer-text);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
}

.gc-footer-col h3,
.gc-footer-utility,
.gc-equal-opportunity,
.gc-regulatory-row,
.gc-footer-address-strip {
  border-color: var(--footer-divider);
}

.gc-meeting-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #19bd72;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  text-decoration: none;
}

.gc-meeting-float:hover,
.gc-meeting-float:focus-visible {
  background: #14985b;
}

@media (max-width: 1320px) {
  .gc-security-strip-inner,
  .gc-footer-inner {
    width: min(100% - 120px, 1500px);
  }

  .gc-footer-columns {
    gap: 34px;
  }

  .gc-footer-utility {
    grid-template-columns: 500px 360px;
  }

  .gc-newsletter-form {
    grid-template-columns: 320px 125px;
  }

  .gc-newsletter-form input {
    width: 320px;
  }

  .gc-newsletter-form button {
    width: 125px;
  }
}

@media (max-width: 1120px) {
  .gc-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
  }

  .gc-footer-utility {
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: start;
    gap: 24px;
  }

  .gc-newsletter-form {
    grid-template-columns: 320px 125px;
  }

  .gc-newsletter-form input {
    width: 320px;
  }

  .gc-newsletter-form button {
    width: 125px;
  }

  .gc-app-block {
    text-align: left;
  }

  .gc-app-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .gc-footer {
    padding: 0 0 18px;
  }

  .gc-security-strip-inner,
  .gc-footer-inner {
    width: min(100% - 40px, 1500px);
  }

  .gc-footer-inner {
    padding-top: 20px;
  }

  .gc-security-strip {
    padding: 48px 0 40px;
  }

  .gc-amfi-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .gc-footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 28px;
  }

  .gc-newsletter-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gc-newsletter-form input,
  .gc-newsletter-form button {
    width: 100%;
  }

  .gc-footer-utility {
    gap: 22px;
  }

  .gc-app-block {
    text-align: left;
  }

  .gc-app-buttons {
    justify-content: flex-start;
  }

  .gc-footer-address-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

}

@media (max-width: 1024px) {
  .hero__stage {
    height: clamp(480px, 60vw, 660px);
  }
}

@media (max-width: 768px) {
  .hero__stage {
    height: auto;
  }

  .hero__image {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .pre-footer-cta {
    padding: 42px 18px 44px;
  }

  .gc-equal-opportunity p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .gc-security-strip {
    padding: 40px 0 36px;
  }

  .gc-security-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gc-security-item {
    padding: 0;
  }

  .gc-security-item + .gc-security-item {
    border-left: 0;
  }

  .gc-app-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .gc-app-badge-link img {
    max-width: 100%;
    height: auto;
  }

  .gc-meeting-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
