@charset "utf-8";
:root {
      --bg: #030914;
      --bg-soft: #07111d;
      --panel: rgba(5, 15, 26, 0.86);
      --panel-strong: rgba(7, 18, 31, 0.94);
      --border: rgba(211, 151, 52, 0.42);
      --border-soft: rgba(211, 151, 52, 0.22);
      --gold: #d89b35;
      --gold-light: #f3c869;
      --gold-dark: #9f681f;
      --text: #f5f1e8;
      --muted: #b9c0c9;
      --muted-soft: #7f8997;
      --green: #70d06f;
      --red: #ff4b3a;
      --blue: #55a9ff;

      /* widened from 1320px */
      --max: 1560px;

      --radius: 14px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      background:
        radial-gradient(circle at 72% 18%, rgba(218, 156, 54, 0.12), transparent 28%),
        radial-gradient(circle at 20% 22%, rgba(28, 91, 144, 0.12), transparent 36%),
        linear-gradient(180deg, #020711 0%, #04101c 48%, #030812 100%);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      width: 100%;
      overflow: hidden;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }

    /* Header */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(3, 9, 20, 0.78);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.02em;
      font-size: 1.6rem;
      white-space: nowrap;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
    }

    .brand span span {
      color: var(--gold);
    }

    .nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  color: rgba(245, 241, 232, 0.82);
 margin-left: 94px;
}

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
	
	#import-analytics,
#education {
  scroll-margin-top: 100px;
}

#import-analytics:target .panel,
#education:target .support-card {
  animation: sectionGlow 1.9s ease-out;
}

@keyframes sectionGlow {
  0% {
    border-color: rgba(243, 200, 105, 0.95);
    box-shadow:
      0 0 0 1px rgba(243, 200, 105, 0.55),
      0 0 34px rgba(216, 155, 53, 0.42),
      0 16px 48px rgba(0, 0, 0, 0.2);
  }

  55% {
    border-color: rgba(243, 200, 105, 0.65);
    box-shadow:
      0 0 0 1px rgba(243, 200, 105, 0.34),
      0 0 24px rgba(216, 155, 53, 0.28),
      0 16px 48px rgba(0, 0, 0, 0.2);
  }

  100% {
    border-color: var(--border-soft);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  }
}

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 24px;
      border-radius: 8px;
      font-weight: 800;
      font-size: 0.92rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: #1b1204;
      background: linear-gradient(180deg, var(--gold-light), var(--gold));
      box-shadow: 0 14px 34px rgba(216, 155, 53, 0.24);
    }

    .btn-secondary {
      color: var(--gold-light);
      border: 1px solid var(--gold);
      background: rgba(4, 12, 21, 0.62);
    }

    .btn-secondary:hover {
      border-color: var(--gold-light);
      box-shadow: 0 14px 34px rgba(216, 155, 53, 0.12);
    }

    /* Hero */

    .hero {
      position: relative;
      min-height: 630px;
      display: flex;
      align-items: center;
      isolation: isolate;
      border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    }

    /* Lighter overlay so the hero image is clearer */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          90deg,
          rgba(3, 9, 20, 0.98) 0%,
          rgba(3, 9, 20, 0.88) 27%,
          rgba(3, 9, 20, 0.48) 48%,
          rgba(3, 9, 20, 0.12) 70%,
          rgba(3, 9, 20, 0.04) 100%
        ),
        linear-gradient(
          180deg,
          rgba(3, 9, 20, 0.02) 0%,
          rgba(3, 9, 20, 0.22) 68%,
          rgba(3, 9, 20, 0.64) 100%
        );
      z-index: -1;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url("/images/chartsandsetups-hero.webp");
      background-size: auto 100%;
      background-position: 65% center;
      background-repeat: no-repeat;
      opacity: 1;
      filter: saturate(1.08) contrast(1.06) brightness(1.1);
    }

    .hero-content {
      max-width: 660px;
      padding: 86px 0 106px;
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(4rem, 6.4vw, 7rem);
      line-height: 0.92;
      letter-spacing: -0.055em;
      font-weight: 500;
      max-width: 720px;
      margin-bottom: 26px;
    }

    h1 .gold {
      display: block;
      color: var(--gold-light);
      text-shadow: 0 0 32px rgba(216, 155, 53, 0.18);
    }

    .hero-copy {
      max-width: 610px;
      color: rgba(245, 241, 232, 0.86);
      font-size: 1.05rem;
      line-height: 1.65;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(245, 241, 232, 0.72);
      font-size: 0.92rem;
    }

    .hero-note-icon {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
    }

    /* Feature Cards */

    .feature-row {
      margin-top: -34px;
      position: relative;
      z-index: 4;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .feature-card,
    .panel,
    .support-card,
    .final-cta {
      background:
        linear-gradient(180deg, rgba(8, 23, 38, 0.94), rgba(3, 11, 20, 0.95));
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    }

    .feature-card {
      min-height: 118px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      padding: 20px 20px;
    }

    .icon-box {
      width: 52px;
      height: 52px;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .icon-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .feature-card h3,
    .support-card h3 {
      color: var(--gold-light);
      font-size: 0.94rem;
      line-height: 1.2;
      margin-bottom: 7px;
    }

    .feature-card p,
    .support-card p,
    .panel p {
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.55;
    }

    /* Middle Dashboard Section */

    .middle-grid {
      margin-top: 16px;
      display: grid;
      grid-template-columns: minmax(430px, 1.05fr) minmax(0, 1.35fr);
      gap: 12px;
    }

    .panel {
      padding: 24px;
    }

    .signals-panel h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2rem, 3vw, 3.1rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .signals-panel h2 span {
      color: var(--gold-light);
      display: block;
    }

    .signals-panel p {
      max-width: 480px;
      font-size: 0.92rem;
    }

    .signals-icons {
      width: 244px;
      max-width: 100%;
      margin-top: 20px;
      border-radius: 10px;
      overflow: hidden;
    }

    .dashboard-panel {
      padding: 16px;
      position: relative;
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
    }

    .panel-title {
      font-size: 0.96rem;
      font-weight: 800;
      color: var(--text);
    }

    .btn-small {
      min-height: 32px;
      padding: 0 18px;
      border-radius: 6px;
      font-size: 0.78rem;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      margin-bottom: 8px;
    }

    .metric-card,
    .mini-card {
      background: rgba(4, 12, 20, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 8px;
      padding: 12px;
    }

    .metric-label {
      color: var(--muted-soft);
      font-size: 0.73rem;
      margin-bottom: 4px;
    }

    .metric-value {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
    }

    .metric-value.green {
      color: var(--green);
    }

    .dashboard-lower {
      display: grid;
      grid-template-columns: 1fr 1.25fr 1.2fr 0.85fr;
      gap: 8px;
    }

    .recent-outcomes-img {
      width: 100%;
      height: 96px;
      object-fit: cover;
      border-radius: 8px;
    }

    .journal-list {
      display: grid;
      gap: 9px;
      font-size: 0.72rem;
      color: var(--muted);
    }

    .journal-row {
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    .journal-row span:last-child {
      color: var(--muted-soft);
      white-space: nowrap;
    }

    .setup-bars {
  display: grid;
  gap: 10px;
  margin-top: 5px;
}

.setup-bar {
  display: grid;
  grid-template-columns: 74px 1fr 42px;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 0.72rem;
}

.bar-track {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #58b969, #8fe58e);
  box-shadow: 0 0 10px rgba(112, 208, 111, 0.35);
}

    .archive-number {
      font-size: 2rem;
      font-weight: 800;
      margin: 4px 0;
    }

    .gold-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gold-light);
      font-weight: 800;
      font-size: 0.78rem;
      margin-top: 4px;
    }

    /* Import + AI */

    .insight-grid {
      margin-top: 12px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .panel-heading {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 6px;
    }

    .panel-heading h3 {
      font-size: 0.96rem;
      color: var(--text);
    }

    .heading-icon {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      
    }

    .import-grid {
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr 1fr;
      gap: 8px;
    }

    .import-history h4,
    .mini-card h4 {
      font-size: 0.78rem;
      color: var(--muted);
      margin-bottom: 8px;
      font-weight: 700;
    }
	
	.import-history .gold-link {
  white-space: nowrap;
}

    .exchange-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 0.7rem;
      padding: 3px 0;
    }

    .exchange-row strong {
      color: var(--text);
      font-weight: 700;
    }


    .sparkline {
      height: 34px;
      margin-top: 10px;
    }

    .sparkline svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .sparkline path {
      fill: none;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mini-value {
      font-size: 1.08rem;
      font-weight: 900;
      color: var(--gold-light);
    }

    .mini-value.green {
      color: var(--green);
    }

    .footnote {
      color: var(--muted-soft);
      font-size: 0.72rem;
      margin-top: 10px;
      text-align: center;
    }

    .ai-grid {
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      gap: 18px;
      align-items: center;
      margin-top: 12px;
    }

    .ai-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .ai-title img {
      width: 34px;
      height: 34px;
      border-radius: 999px;
    }

    .ai-title h3 {
      color: var(--gold-light);
      font-size: 1.1rem;
    }

    .ai-list {
      margin-top: 10px;
      list-style: none;
      display: grid;
      gap: 5px;
      color: var(--muted);
      font-size: 0.79rem;
    }

    .ai-list li::before {
      content: "•";
      color: var(--gold-light);
      margin-right: 8px;
    }

    .chart-card {
      background: rgba(4, 12, 20, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.075);
      border-radius: 8px;
      padding: 14px;
      min-height: 156px;
    }

    .chart-card h4 {
      color: var(--muted);
      font-size: 0.76rem;
      margin-bottom: 12px;
    }

    .chart-frame {
      height: 108px;
      position: relative;
      background:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 100% 25%, 20% 100%;
      border-radius: 6px;
    }

    .chart-frame svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .chart-frame path {
      fill: none;
      stroke: var(--green);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Support Cards */

    .support-row {
      margin-top: 12px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .support-card {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 18px;
      align-items: center;
      padding: 18px 20px;
      min-height: 96px;
    }

    .support-icon {
      width: 58px;
      height: 58px;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(216, 155, 53, 0.04);
    }

    .support-icon svg {
      width: 100%;
      height: 100%;
      padding: 8px;
      color: var(--gold-light);
    }

    .support-card .gold-link {
      margin-top: 3px;
    }

    /* Final CTA */

    .final-cta {
      margin: 12px auto 0;
      padding: 22px 24px;
      display: grid;
      grid-template-columns: 72px 1fr auto;
      align-items: center;
      gap: 22px;
    }

    .final-cta-icon {
      width: 66px;
      height: 66px;
      border-radius: 12px;
      overflow: hidden;
    }

    .final-cta h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.7rem, 2.8vw, 2.55rem);
      font-weight: 500;
      letter-spacing: -0.035em;
      line-height: 1.05;
    }

    .final-cta p {
      color: var(--muted);
      font-size: 0.9rem;
      margin-top: 4px;
    }
	
	.ai-summary-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ai-summary-modal.is-open {
  display: flex;
}

.ai-summary-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 6, 14, 0.78);
  backdrop-filter: blur(10px);
}

.ai-summary-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(216, 155, 53, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(8, 23, 38, 0.98), rgba(3, 11, 20, 0.98));
  border: 1px solid rgba(216, 155, 53, 0.38);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  padding: 34px;
}

.ai-summary-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 155, 53, 0.28);
  border-radius: 999px;
  background: rgba(4, 12, 20, 0.82);
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ai-summary-modal__close:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: rotate(4deg);
}

.ai-summary-modal__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ai-summary-modal__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-summary-modal__eyebrow {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ai-summary-modal__dialog h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 22px;
}

.ai-summary-modal__content {
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.ai-summary-modal__content ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.ai-summary-modal__content li {
  position: relative;
  padding-left: 24px;
}

.ai-summary-modal__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-light);
  box-shadow: 0 0 14px rgba(216, 155, 53, 0.5);
}

.ai-summary-modal__takeaway {
  border: 1px solid rgba(216, 155, 53, 0.24);
  background: rgba(216, 155, 53, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  color: rgba(245, 241, 232, 0.9);
}

.ai-summary-modal__takeaway strong {
  color: var(--gold-light);
}

.ai-summary-modal__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

body.modal-open {
  overflow: hidden;
}

.sharing-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sharing-modal.is-open {
  display: flex;
}

.sharing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 6, 14, 0.78);
  backdrop-filter: blur(10px);
}

.sharing-modal__dialog {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(216, 155, 53, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(8, 23, 38, 0.98), rgba(3, 11, 20, 0.98));
  border: 1px solid rgba(216, 155, 53, 0.38);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  padding: 34px;
}

.sharing-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 155, 53, 0.28);
  border-radius: 999px;
  background: rgba(4, 12, 20, 0.82);
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sharing-modal__close:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  transform: rotate(4deg);
}

.sharing-modal__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.sharing-modal__icon img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sharing-modal__eyebrow {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sharing-modal__dialog h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 650px;
  margin-bottom: 18px;
}

.sharing-modal__content {
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.sharing-modal__content > p {
  max-width: 720px;
  margin-bottom: 20px;
}

.sharing-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.sharing-modal__item {
  border: 1px solid rgba(216, 155, 53, 0.18);
  background: rgba(4, 12, 20, 0.56);
  border-radius: 14px;
  padding: 18px;
}

.sharing-modal__item h3 {
  color: var(--gold-light);
  font-size: 0.98rem;
  margin-bottom: 7px;
}

.sharing-modal__item p {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.sharing-modal__takeaway {
  border: 1px solid rgba(216, 155, 53, 0.24);
  background: rgba(216, 155, 53, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  color: rgba(245, 241, 232, 0.9);
}

.sharing-modal__takeaway strong {
  color: var(--gold-light);
}

.sharing-modal__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .sharing-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sharing-modal {
    padding: 14px;
  }

  .sharing-modal__dialog {
    padding: 28px 20px;
  }

  .sharing-modal__actions .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .ai-summary-modal {
    padding: 14px;
  }

  .ai-summary-modal__dialog {
    padding: 28px 20px;
  }

  .ai-summary-modal__actions .btn {
    width: 100%;
  }
}

    /* Footer */

    .site-footer {
      margin-top: 34px;
      padding: 28px 0 34px;
      border-top: 1px solid rgba(216, 155, 53, 0.18);
      background:
        linear-gradient(180deg, rgba(3, 9, 20, 0.45), rgba(2, 7, 17, 0.96));
    }

    .footer-inner {
  display: grid;
  grid-template-columns: minmax(680px, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.footer-copy {
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: none;
  white-space: nowrap;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
}

    .site-footer-links a {
      color: rgba(245, 241, 232, 0.68);
      font-size: 0.8rem;
      transition: color 0.2s ease;
    }

    .site-footer-links a:hover {
      color: var(--gold-light);
    }

    /* Responsive */

    @media (max-width: 1180px) {
      .feature-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .middle-grid,
      .insight-grid {
        grid-template-columns: 1fr;
      }

      .dashboard-lower {
        grid-template-columns: repeat(2, 1fr);
      }

      .support-row {
        grid-template-columns: 1fr;
      }

      .hero::before {
        background:
          linear-gradient(90deg, rgba(3, 9, 20, 0.98) 0%, rgba(3, 9, 20, 0.9) 42%, rgba(3, 9, 20, 0.45) 100%),
          linear-gradient(180deg, rgba(3, 9, 20, 0.05), rgba(3, 9, 20, 0.62));
      }

      .hero-image {
        background-size: cover;
      }
    }

    @media (max-width: 880px) {
      .container {
        width: min(100% - 32px, var(--max));
      }

      .nav {
        height: auto;
        padding: 18px 0;
        flex-wrap: wrap;
      }

      .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 22px;
    margin-left: 0;
  }

      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 60px 0 76px;
      }

      .feature-row,
      .metric-grid,
      .dashboard-lower,
      .import-grid,
      .ai-grid,
      .support-row {
        grid-template-columns: 1fr;
      }

      .final-cta {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .site-footer-links {
        justify-content: flex-start;
      }

      h1 {
        font-size: clamp(3.3rem, 15vw, 5.2rem);
      }
	   .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-copy {
    white-space: normal;
  }

  .site-footer-links {
    justify-content: flex-start;
  }
    }

    @media (max-width: 560px) {
      .feature-card,
      .support-card {
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .nav-actions {
        width: 100%;
      }

      .nav-actions .btn {
        width: 100%;
      }
    }

