/* ============================================================
   LiveLendLA — Tesla × Apple Design System
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-300: #d2d2d7;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --gray-700: #1d1d1f;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-light: rgba(0,113,227,.08);
  --blue-border: rgba(0,113,227,.2);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.25,.1,.25,1);
  --nav-height: 52px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 980px; }
.container--wide { max-width: 1400px; }

/* ── Navigation (Apple frosted glass) ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background var(--transition);
}
.nav--dark {
  background: rgba(0,0,0,.72);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--gray-700);
  z-index: 10;
}
.nav--dark .nav__brand { color: var(--white); }
.nav__brand img {
  width: 28px; height: 28px;
  border-radius: 8px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 999px;
  transition: all var(--transition);
  letter-spacing: -.01em;
}
.nav--dark .nav__link { color: rgba(255,255,255,.85); }
.nav__link:hover {
  background: rgba(0,0,0,.05);
}
.nav--dark .nav__link:hover {
  background: rgba(255,255,255,.1);
}
.nav__link--cta {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--blue-hover) !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav--dark .nav__toggle span { background: var(--white); }
body.nav-open .nav__toggle span:first-child {
  transform: rotate(45deg) translate(2px, 2px);
}
body.nav-open .nav__toggle span:last-child {
  transform: rotate(-45deg) translate(2px, -2px);
}

/* Mobile nav panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: calc(var(--nav-height) + 40px) 24px 40px;
  flex-direction: column;
  gap: 4px;
}
body.nav-open .nav__mobile {
  display: flex;
}
.nav__mobile a {
  display: block;
  padding: 16px 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ── Hero Sections (Tesla full-bleed) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}
.hero--short {
  min-height: 70vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__overlay--dark {
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.6) 100%);
}
.hero__overlay--bottom {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
}
.hero__overlay--gradient {
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__content--left {
  text-align: left;
  max-width: 1200px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255,255,255,.8);
}
.hero__eyebrow-accent {
  color: var(--white);
}
.hero__title {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.hero__title--dark {
  color: var(--gray-700);
}
.hero__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255,255,255,.85);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.hero__subtitle--dark {
  color: var(--gray-500);
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__content--left .hero__subtitle {
  margin-left: 0;
}
.hero__content--left .hero__actions {
  justify-content: flex-start;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -.01em;
  text-align: center;
  min-width: 160px;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.btn--outline-dark {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid rgba(0,0,0,.15);
}
.btn--outline-dark:hover {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.3);
}
.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.btn--dark {
  background: var(--gray-700);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--black);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.btn--ghost-dark:hover {
  background: rgba(0,0,0,.04);
  border-color: var(--gray-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
  min-width: 120px;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 19px;
  min-width: 200px;
}
.btn .arrow {
  transition: transform var(--transition);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}
.section--gray {
  background: var(--gray-100);
}
.section--offwhite {
  background: var(--gray-50);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--dark .section__eyebrow,
.section--dark .section__subtitle {
  color: var(--gray-400);
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section__header--left {
  text-align: left;
  max-width: none;
}
.section__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.section__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 12px;
}
.section__subtitle {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-top: 12px;
}

/* ── Full-Bleed Image Sections (Tesla style) ── */
.showcase {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.showcase__bg {
  position: absolute;
  inset: 0;
}
.showcase__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.65) 100%);
}
.showcase__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}
.showcase__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 8px;
}
.showcase__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.showcase__desc {
  font-size: 18px;
  opacity: .85;
  max-width: 500px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.showcase__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Cards (Apple style) ── */
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.1,.25,1);
}
.card:hover .card__img img {
  transform: scale(1.04);
}
.card__body {
  padding: 24px;
}
.card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 12px;
}
.card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}
.card__list {
  margin-top: 16px;
}
.card__list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__list li:last-child { border-bottom: none; }
.card__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Card on dark background */
.section--dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.section--dark .card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.section--dark .card__text,
.section--dark .card__list li {
  color: var(--gray-400);
}
.section--dark .card__list li {
  border-bottom-color: rgba(255,255,255,.08);
}

/* ── Rate Cards ── */
.rate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.rate-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  text-align: center;
}
.rate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.rate-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.rate-card__rate {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.rate-card__rate span {
  font-size: 24px;
  font-weight: 600;
}
.rate-card__apr {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.rate-card__note {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Dark rate cards */
.section--dark .rate-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.section--dark .rate-card:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--blue);
}
.section--dark .rate-card__rate { color: var(--white); }
.section--dark .rate-card__label { color: var(--gray-400); }

/* ── Income Table ── */
.income-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.income-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.income-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.income-table th {
  background: var(--gray-700);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.income-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
.income-table tbody tr:last-child td {
  border-bottom: none;
}
.income-table tbody tr {
  transition: background var(--transition);
}
.income-table tbody tr:hover {
  background: var(--blue-light);
}
.income-table .income-table__price {
  font-weight: 700;
  color: var(--gray-700);
}
.income-table .income-table__payment {
  font-weight: 600;
  color: var(--gray-700);
}
.income-table .income-table__income {
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
}
.income-table .income-table__type {
  font-size: 13px;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ── Profile Card ── */
.profile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
}
.section--dark .profile-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.profile-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.profile-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
}
.profile-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.profile-card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.profile-card__role {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 2px;
}
.profile-card__contact {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.profile-card__btn {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  transition: all var(--transition);
}
.profile-card__btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.section--dark .profile-card__btn {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.profile-card__note {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Calculator ── */
.calculator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.section--dark .calculator {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
.calculator__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.calculator__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.calculator__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calculator__field--full {
  grid-column: 1 / -1;
}
.calculator__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.calculator__input {
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-700);
  transition: border-color var(--transition);
  font-family: inherit;
}
.calculator__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}
.section--dark .calculator__input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}
.calculator__select {
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-700);
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2386868b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.calculator__select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}
.section--dark .calculator__select {
  background-color: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}

.calculator__result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.section--dark .calculator__result {
  border-top-color: rgba(255,255,255,.1);
}
.calculator__result-item {
  text-align: center;
}
.calculator__result-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.calculator__result-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--gray-700);
}
.calculator__result-value--highlight {
  color: var(--blue);
}
.section--dark .calculator__result-value {
  color: var(--white);
}

/* ── Quick Picker ── */
.picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.picker-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.picker-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-2px);
}
.picker-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.picker-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.picker-card__desc {
  font-size: 14px;
  color: var(--gray-500);
}

/* ── Tab system ── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto;
}
.tab {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  color: var(--gray-500);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}
.tab.active {
  background: var(--white);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}
.tab:hover:not(.active) {
  color: var(--gray-700);
}
/* Dark tabs (for use on dark sections) */
.tabs--dark {
  background: rgba(255,255,255,.08);
}
.tabs--dark .tab {
  color: rgba(255,255,255,.5);
}
.tabs--dark .tab.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
  box-shadow: none;
}
.tabs--dark .tab:hover:not(.active) {
  color: rgba(255,255,255,.8);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ── YTD Rate Trend Module ── */
.trend-module {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  overflow: hidden;
}
.trend-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.trend-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--gray-700);
  line-height: 1.2;
}
.trend-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 4px;
  letter-spacing: -.01em;
}
.trend-current {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.trend-current__rate {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--gray-700);
  line-height: 1;
}
.trend-current__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}
.trend-chart-wrap {
  margin: 0 -8px 24px;
}
.trend-chart {
  width: 100%;
  height: auto;
  display: block;
}
.trend-chart__label {
  font-size: 11px;
  fill: var(--gray-400);
  font-family: "Inter", -apple-system, sans-serif;
}
.trend-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.trend-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trend-stat__value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gray-700);
}
.trend-stat__value--down { color: #34a853; }
.trend-stat__value--up { color: #d32f2f; }
.trend-stat__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}
.trend-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.trend-updated {
  font-size: 12px;
  color: var(--gray-400);
}
.trend-source-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  transition: opacity var(--transition);
}
.trend-source-link:hover { opacity: .7; }

@media (max-width: 600px) {
  .trend-module { padding: 20px 16px; }
  .trend-title { font-size: 18px; }
  .trend-current__rate { font-size: 28px; }
  .trend-stat__value { font-size: 17px; }
  .trend-stats { gap: 8px; }
  .trend-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Footer ── */
.footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  padding: 40px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__brand {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.footer__text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__link {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--blue);
}
.footer__disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 900px;
}

/* ── Legal Disclosures (collapsible) ── */
.footer__legal {
  margin-top: 16px;
  max-width: 900px;
}
.footer__legal-toggle {
  font-size: 10px;
  color: var(--gray-400);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.footer__legal-toggle::-webkit-details-marker { display: none; }
.footer__legal-toggle::before {
  content: "\25B8";
  display: inline-block;
  margin-right: 4px;
  font-size: 8px;
  transition: transform var(--transition);
}
.footer__legal[open] .footer__legal-toggle::before {
  transform: rotate(90deg);
}
.footer__legal-toggle:hover { color: var(--gray-500); }
.footer__legal-body {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.footer__legal-body p {
  font-size: 9px;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer__legal-body p:last-child { margin-bottom: 0; }
.footer__legal-body strong {
  color: var(--gray-500);
  font-weight: 600;
}
.footer__legal-body a {
  color: var(--gray-500);
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 1px;
  transition: color var(--transition);
}
.footer__legal-body a:hover { color: var(--blue); }

/* ── Ambient Image Breaks (background vibe) ── */
.ambient {
  position: relative;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
}
.ambient__bg {
  position: absolute;
  inset: 0;
}
.ambient__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ── Income Preview (homepage cheat sheet teaser) ── */
.income-preview {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.income-preview__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  padding: 14px 24px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  transition: background var(--transition);
}
.income-preview__row:last-child {
  border-bottom: none;
}
.income-preview__row:not(.income-preview__row--header):hover {
  background: rgba(255,255,255,.06);
}
.income-preview__row--header {
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 12px 24px;
}
.income-preview__row--fade {
  opacity: .5;
}
.income-preview__price {
  font-weight: 700;
  color: var(--white);
}
.income-preview__income {
  font-weight: 700;
  color: var(--blue);
}
.income-preview__row--header span:last-child {
  text-align: right;
}

/* ── Instagram Banner ── */
.ig-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}
.ig-banner__inner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.ig-banner__glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.15) 0%, transparent 50%);
  animation: igGlow 8s ease-in-out infinite alternate;
}
@keyframes igGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10%, -10%); }
}
.ig-banner__content {
  position: relative;
  z-index: 2;
}
.ig-banner__icon {
  color: var(--white);
  margin-bottom: 20px;
  opacity: .9;
}
.ig-banner__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.ig-banner__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin-bottom: 28px;
}
.ig-banner__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  transition: all var(--transition);
}
.ig-banner__handle:hover {
  background: rgba(255,255,255,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.ig-banner__handle .arrow {
  transition: transform var(--transition);
}
.ig-banner__handle:hover .arrow {
  transform: translateX(4px);
}

/* ── Footer IG Link ── */
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.footer__ig:hover {
  color: var(--blue-hover);
}
.footer__ig svg {
  flex-shrink: 0;
}

/* ── Large Profile Photo ── */
.profile-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Profile Card IG Button highlight ── */
.profile-card__btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white) !important;
  border-color: transparent !important;
}
.profile-card__btn--ig:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(131,58,180,.3);
}
.section--dark .profile-card__btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent !important;
  color: var(--white) !important;
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.25,.1,.25,1), transform .8s cubic-bezier(.25,.1,.25,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}
.section--dark .divider {
  border-top-color: rgba(255,255,255,.08);
}

/* ── Link Style (Apple) ── */
.link {
  color: var(--blue);
  font-size: 19px;
  font-weight: 400;
  transition: color var(--transition);
}
.link:hover {
  text-decoration: underline;
}
.link .arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.link:hover .arrow {
  transform: translateX(3px);
}

/* ── Stat row ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__value {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: 14px;
  color: var(--gray-500);
}
.section--dark .stat__value {
  color: var(--white);
}

/* ── Feature row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row--reverse {
  direction: rtl;
}
.feature-row--reverse > * {
  direction: ltr;
}
.feature-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-row__img img {
  width: 100%;
  display: block;
}

/* ── Two-column layout (for contact/profile sections) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse { direction: ltr; }
  .calculator__grid { grid-template-columns: 1fr; }
  .calculator__result { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 48px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .hero { min-height: 85vh; padding-bottom: 60px; }
  .hero--short { min-height: 60vh; }
  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .hero__content--left .hero__actions { align-items: flex-start; }

  .section { padding: 60px 0; }
  .section__title { font-size: clamp(28px, 7vw, 40px); }
  .section__header { margin-bottom: 40px; }

  .showcase { height: 70vh; }
  .showcase__title { font-size: clamp(28px, 7vw, 44px); }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4,
  .card-grid--5 { grid-template-columns: 1fr; }

  .rate-cards { grid-template-columns: 1fr; }

  .income-table { font-size: 14px; }
  .income-table th,
  .income-table td { padding: 12px 14px; }

  .profile-card { padding: 24px; }
  .profile-photo { width: 200px; height: 200px; }

  .calculator { padding: 24px; }
  .calculator__result { grid-template-columns: 1fr; gap: 16px; }
  .calculator__result-value { font-size: 28px; }

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

  .tabs { width: 100%; overflow-x: auto; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__value { font-size: 32px; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__links { justify-content: flex-start; }

  .ambient { height: 30vh; min-height: 200px; }

  .income-preview__row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    padding: 12px 16px;
    font-size: 14px;
  }
  .income-preview__row--header { padding: 10px 16px; font-size: 11px; }

  .ig-banner__inner { padding: 60px 24px; }
  .ig-banner__handle { font-size: 17px; padding: 14px 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 34px; }
  .hero__subtitle { font-size: 17px; }
  .section__title { font-size: 28px; }
  .btn { padding: 12px 24px; font-size: 16px; min-width: 140px; }
  .btn--lg { padding: 14px 28px; font-size: 17px; }
  .rate-card__rate { font-size: 40px; }
  .calculator__result-value { font-size: 24px; }

  .income-preview__row {
    grid-template-columns: 1fr .8fr .8fr .8fr;
    padding: 10px 12px;
    font-size: 13px;
  }
  .income-preview__row--header { font-size: 10px; padding: 8px 12px; }
}

/* ── Hero Authority & Trust ── */
.hero__authority {
  margin-top: 32px;
  color: rgba(255,255,255,.8);
}
.hero__advisor {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero__advisor-detail {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-top: 4px;
}
.hero__trust {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Modal ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.active {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: modalIn .3s cubic-bezier(.25,.1,.25,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--gray-700); }
.modal__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.modal__text {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 8px;
}
.modal__list {
  margin: 12px 0 20px;
  padding-left: 20px;
}
.modal__list li {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  list-style: disc;
}
.modal__form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal__input {
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color var(--transition);
}
.modal__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}

/* ── Video Grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-card__title {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--gray-700);
}
.video-ig-link {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.video-ig-link a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--transition);
}
.video-ig-link a:hover { text-decoration: underline; }
.video-yt-link {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.video-yt-link a {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--transition);
}
.video-yt-link a:hover { text-decoration: underline; }

/* ── AI Module ── */
.ai-module {
  max-width: 640px;
  margin: 0 auto;
}
.ai-module__form {
  display: flex;
  gap: 12px;
}
.ai-module__input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color var(--transition);
}
.ai-module__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}
.ai-module__examples {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ai-module__examples button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}
.ai-module__examples button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.ai-module__answer {
  margin-top: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.ai-module__answer-text {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  white-space: pre-wrap;
}
.ai-module__disclaimer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-400);
  font-style: italic;
  line-height: 1.6;
}
.ai-module__disclaimer a {
  color: var(--blue);
  text-decoration: underline;
}
.ai-module__loading {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Scenario Form ── */
.scenario-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.scenario-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.scenario-form__trust {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
}
.scenario-form__success {
  text-align: center;
  padding: 40px 0;
}
.scenario-form__success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.scenario-form__success p {
  font-size: 16px;
  color: var(--gray-500);
}

/* ── Steps (How It Works) ── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.step {
  text-align: center;
}
.step__number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.step__text {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: -.01em;
}
.step__divider {
  width: 60px;
  height: 2px;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* ── Testimonial ── */
.testimonial {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 0;
}
.testimonial__quote {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.5;
  color: var(--gray-700);
  font-style: normal;
}
.testimonial__attr {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ── Rates Disclaimer ── */
.rates-disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}
.section--dark .rates-disclaimer { color: rgba(255,255,255,.35); }

/* ── Subscribe Form ── */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  justify-content: center;
}
.subscribe-form__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: border-color var(--transition);
}
.subscribe-form__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step__divider { width: 2px; height: 24px; margin: 0 auto; }
  .ai-module__form { flex-direction: column; }
  .ai-module__input { min-width: 0; }
}
