:root {
  --ink: #14201f;
  --muted: #536260;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #dfe7df;
  --ember: #ef6a2e;
  --ember-dark: #b9401f;
  --teal: #087f83;
  --teal-dark: #07565b;
  --leaf: #5b8d42;
  --gold: #e4aa2f;
  --night: #101817;
  --night-soft: #172523;
  --shadow: 0 20px 60px rgba(20, 32, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(20, 32, 31, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ink);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--ember-dark);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 0;
  height: clamp(560px, 54vw, 720px);
  max-height: none;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(16, 24, 23, 0.62), rgba(16, 24, 23, 0.1) 56%),
    linear-gradient(90deg, rgba(16, 24, 23, 0.72), rgba(16, 24, 23, 0.1) 58%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--night);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -32px;
  background: url("Graphics/banner1.png") center / cover no-repeat;
  filter: blur(26px) saturate(1.08);
  transform: scale(1.06);
  opacity: 0.82;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  width: min(540px, 100%);
  color: #fffaf1;
  padding-top: 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow,
.conversation-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-text {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-anchor {
  scroll-margin-top: 88px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fffaf1;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  border-color: #fffaf1;
  background: rgba(255, 255, 255, 0.18);
  color: #fffaf1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--ember);
  color: #fffaf1;
  box-shadow: 0 14px 30px rgba(239, 106, 46, 0.28);
}

.button-primary:hover {
  background: var(--ember-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  color: #fffaf1;
}

.section .button-secondary,
.conversation-band .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-tertiary {
  background: #fff;
  border-color: var(--line);
  color: var(--teal-dark);
  box-shadow: none;
}

.button-tertiary:hover {
  border-color: var(--teal);
  background: rgba(8, 127, 131, 0.08);
}

.button-disabled {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 250, 241, 0.68);
  box-shadow: none;
  cursor: default;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(890px, 100%);
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-heading p {
  max-width: 750px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.page-intro {
  padding-bottom: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(231, 242, 237, 0.94), rgba(251, 250, 245, 0.98) 58%, rgba(255, 249, 238, 0.9)),
    var(--paper);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.page-intro h1 {
  max-width: 14ch;
}

.page-intro .section-heading {
  margin-bottom: 0;
}

.page-hero h1 {
  max-width: 12ch;
}

.builds-hero .hero-media::before {
  background-image: url("Graphics/BuildsHero.png");
}

.builds-hero .hero-media img {
  object-position: center;
}

.services-hero .hero-media::before {
  background-image: url("Graphics/Aaron2.png");
}

.services-hero .hero-media img {
  object-position: center 24%;
}

.services-hero h1 {
  max-width: 13ch;
}

.ideas-hero .hero-media::before {
  background-image: url("Graphics/IdeasHero.png");
}

.ideas-hero .hero-media img {
  object-position: center;
}

.studio-hero .hero-media::before {
  background-image: url("Graphics/DailyCatArt/CatADay1.jpg");
}

.studio-hero .hero-media img {
  object-position: center 42%;
  filter: saturate(0.95) contrast(1.04);
}

.headlines-archive-hero .hero-media::before {
  background-image: url("Graphics/HeadlinesArchHero.png");
}

.headlines-archive-hero .hero-media img {
  object-position: center;
}

.invest-hero .hero-media::before {
  background-image: url("Graphics/InvestHero.png");
}

.invest-hero .hero-media img {
  object-position: center;
}

.work-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.work-copy {
  max-width: 720px;
}

.work-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.industry-grid,
.invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.industry-card,
.invest-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.08);
}

.industry-card {
  padding: clamp(20px, 3vw, 28px);
}

.industry-card h3 {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
}

.industry-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.invest-section {
  padding-top: clamp(32px, 5vw, 64px);
}

.invest-grid {
  max-width: 1180px;
}

.invest-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  grid-column: span 2;
  overflow: hidden;
}

.invest-card-media {
  display: block;
  min-height: 320px;
  background: var(--night);
  text-decoration: none;
}

.invest-card-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.invest-card-media:hover img {
  transform: scale(1.025);
}

.invest-card-copy {
  padding: clamp(24px, 4vw, 40px);
}

.invest-card-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.invest-card-copy .button {
  margin-top: 22px;
}

.builds-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 249, 238, 0.92), rgba(231, 242, 237, 0.72)),
    var(--paper);
  border-top: 1px solid rgba(20, 32, 31, 0.08);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.builds-teaser-copy {
  max-width: 720px;
}

.builds-teaser-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.builds-teaser-actions {
  margin-top: 26px;
}

.builds-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.builds-teaser-card {
  position: relative;
  min-height: clamp(220px, 24vw, 360px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--night);
  color: #fffaf1;
  box-shadow: 0 16px 44px rgba(20, 32, 31, 0.16);
  text-decoration: none;
}

.builds-teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 23, 0.78), rgba(16, 24, 23, 0.05) 62%);
}

.builds-teaser-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 180ms ease;
}

.builds-teaser-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  font-weight: 900;
  line-height: 1.08;
}

.builds-teaser-card:hover img {
  transform: scale(1.04);
}

.work-intro-section {
  background:
    linear-gradient(135deg, rgba(231, 242, 237, 0.92), rgba(251, 250, 245, 0.98) 58%, rgba(255, 249, 238, 0.86)),
    var(--paper);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.work-intro-layout {
  max-width: 980px;
}

.discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
}

.work-intro-copy {
  max-width: none;
}

.work-intro-copy h2 {
  max-width: 13ch;
}

.work-intro-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.work-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.work-intro-actions .button {
  gap: 8px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.work-intro-actions .button-primary {
  box-shadow: 0 12px 28px rgba(239, 106, 46, 0.24);
}

.work-intro-actions .button-primary:hover {
  box-shadow: 0 16px 34px rgba(239, 106, 46, 0.32);
  transform: translateY(-1px);
}

.work-intro-actions .button-tertiary {
  background: var(--panel);
  box-shadow: 0 8px 22px rgba(20, 32, 31, 0.06);
}

.work-intro-actions .button-tertiary:hover {
  box-shadow: 0 12px 28px rgba(20, 32, 31, 0.1);
  transform: translateY(-1px);
}

.work-intro-actions .button::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 160ms ease;
}

.work-intro-actions .button-primary::after {
  opacity: 0.92;
}

.work-intro-actions .button-tertiary::after {
  color: var(--ember);
}

.work-intro-actions .button:hover::after {
  transform: translateX(3px);
}

.discovery-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-top: 6px solid var(--ember);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.78), rgba(255, 255, 255, 0.98)),
    var(--panel);
  box-shadow: 0 18px 48px rgba(20, 32, 31, 0.12);
}

.discovery-card .eyebrow {
  color: var(--ember-dark);
}

.discovery-price {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(3.5rem, 8vw, 5.3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.discovery-time {
  margin: 8px 0 18px;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.discovery-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.discovery-card li {
  color: var(--muted);
}

.discovery-card li::marker {
  color: var(--ember);
}

.service-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(20, 32, 31, 0.1);
}

.service-card-featured {
  border-top-color: var(--ember);
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.7), rgba(255, 255, 255, 0.98)),
    var(--panel);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: #fffaf1;
  font-size: 0.88rem;
  font-weight: 900;
}

.service-card h3 {
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.08;
}

.service-card p,
.service-detail li {
  color: var(--muted);
}

.service-card > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.03rem;
}

.service-detail {
  padding-top: 4px;
}

.service-detail h4,
.format-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-detail p {
  margin: 0;
}

.service-detail ul,
.format-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2rem;
}

.service-detail li::marker,
.format-panel li::marker {
  color: var(--ember);
}

.talks-section {
  background:
    linear-gradient(135deg, rgba(16, 24, 23, 0.98), rgba(7, 86, 91, 0.96)),
    var(--night);
  color: #f8f4e8;
}

.talks-section .eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--gold);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(248, 244, 232, 0.3);
  border-radius: 999px;
  background: rgba(248, 244, 232, 0.1);
  color: #fffaf1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.talks-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
}

.talks-copy p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(248, 244, 232, 0.78);
  font-size: 1.07rem;
}

.format-panel {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.format-panel h3 {
  color: #f8f4e8;
}

.format-panel li {
  color: rgba(248, 244, 232, 0.78);
}

.format-panel strong {
  color: #fffaf1;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 1), rgba(237, 243, 238, 0.72)),
    var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.process-step {
  padding: 24px;
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(20, 32, 31, 0.08);
}

.process-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(8, 127, 131, 0.1);
  color: var(--teal-dark);
  font-weight: 900;
}

.process-step h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
}

.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.work-cta-band {
  background:
    linear-gradient(135deg, rgba(239, 106, 46, 0.96), rgba(16, 24, 23, 0.98)),
    var(--ember-dark);
}

.booking-hero-media {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(440px, 42vw, 620px);
  padding: clamp(42px, 7vw, 86px);
  background: var(--night);
  overflow: hidden;
}

.booking-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 23%, rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0.04) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.1));
}

.booking-hero-media img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 1480px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.96;
}

.booking-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  color: #fff;
}

.booking-hero-copy h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.9;
}

.booking-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.booking-section {
  background: var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.booking-form,
.booking-summary {
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(20, 32, 31, 0.08);
}

.booking-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.booking-form-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.booking-form-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

.booking-status {
  padding: 12px 14px;
  border: 1px solid rgba(8, 127, 131, 0.18);
  border-radius: 8px;
  background: rgba(231, 242, 237, 0.7);
  color: var(--teal-dark);
  font-weight: 800;
}

.booking-status[data-type="error"] {
  border-color: rgba(182, 55, 36, 0.28);
  background: rgba(255, 234, 226, 0.72);
  color: #8e2719;
}

.booking-status[data-type="warning"] {
  border-color: rgba(239, 106, 46, 0.28);
  background: rgba(255, 249, 238, 0.9);
  color: var(--ember-dark);
}

.booking-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-fieldset legend,
.form-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-grid {
  display: grid;
  gap: 16px;
}

.slot-group {
  display: grid;
  gap: 9px;
}

.slot-group h3 {
  font-size: 1rem;
}

.slot-button-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
}

.slot-button {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(8, 127, 131, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.slot-button[aria-pressed="true"] {
  border-color: var(--ember);
  background: var(--ember);
  color: #fffaf1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  min-width: 0;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(20, 32, 31, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-grid input {
  min-height: 46px;
  padding: 10px 12px;
}

.form-grid textarea {
  resize: vertical;
  padding: 12px;
}

.booking-form .button {
  justify-self: start;
}

.coming-soon-panel .button {
  margin-top: 4px;
}

.booking-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.booking-summary {
  padding: clamp(24px, 4vw, 34px);
  border-top: 6px solid var(--ember);
}

.booking-summary .button {
  margin-top: 22px;
}

.booking-summary .button-secondary {
  border-color: rgba(8, 127, 131, 0.28);
  color: var(--teal-dark);
}

.booking-summary .button-secondary:hover {
  border-color: var(--teal);
  background: rgba(8, 127, 131, 0.08);
}

.booking-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
}

.booking-summary li,
.booking-fine-print {
  color: var(--muted);
}

.booking-summary li::marker {
  color: var(--ember);
}

.booking-fine-print {
  margin: 20px 0 0;
  font-size: 0.92rem;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(231, 242, 237, 0.92), rgba(251, 250, 245, 0.98) 46%, rgba(255, 249, 238, 0.88)),
    var(--paper);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.about-layout {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}

.about-copy {
  max-width: none;
}

.about-copy h2 {
  max-width: 14ch;
}

.about-copy p {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy .about-lede {
  color: var(--ink);
  font-size: clamp(1.14rem, 1.8vw, 1.32rem);
  font-weight: 700;
}

.about-consult-list {
  max-width: 860px;
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--teal);
  background: rgba(255, 255, 255, 0.48);
}

.about-consult-list p {
  margin-top: 0;
}

.about-consult-list p:last-child {
  margin-top: 14px;
}

.about-consult-list ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
}

.about-consult-list li::marker {
  color: var(--ember);
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.about-pill-list span {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(8, 127, 131, 0.1);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-copy blockquote {
  margin: 24px 0 0;
  padding: 0 0 0 18px;
  border-left: 5px solid var(--ember);
}

.about-copy blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.18;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.headline-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.headline-grid.is-loading {
  opacity: 0.55;
}

.headlines-archive-link {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  text-align: right;
}

.headlines-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0.96), rgba(237, 243, 238, 0.7) 58%, rgba(251, 250, 245, 0.96)),
    var(--paper);
  border-top: 1px solid rgba(20, 32, 31, 0.08);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.headlines-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("Graphics/HeadlinesArchHero.png") center / cover no-repeat;
  opacity: 0.24;
  filter: saturate(0.92) contrast(0.92);
  transform: scale(1.04);
}

.headlines-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(251, 250, 245, 0.84), rgba(251, 250, 245, 0.58) 46%, rgba(251, 250, 245, 0.76));
  pointer-events: none;
}

.headlines-section .section-heading {
  position: relative;
  z-index: 1;
}

.headlines-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.headlines-main {
  min-width: 0;
}

.headlines-ticker {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(8, 127, 131, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(20, 32, 31, 0.1);
  backdrop-filter: blur(16px);
}

.headlines-ticker-head h2 {
  margin: 2px 0 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.headline-ticker-list {
  display: grid;
  gap: 10px;
}

.headline-ticker-item {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: 8px;
  background: rgba(251, 250, 245, 0.82);
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.headline-ticker-item:hover,
.headline-ticker-item:focus-visible {
  border-color: rgba(8, 127, 131, 0.3);
  background: #fff;
  transform: translateY(-1px);
}

.headline-ticker-item:focus-visible {
  outline: 3px solid rgba(8, 127, 131, 0.28);
  outline-offset: 2px;
}

.headline-ticker-topic,
.headline-ticker-source {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.headline-ticker-title {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.22;
}

.headline-ticker-source {
  color: var(--muted);
}

.headlines-drawer {
  border: 1px solid rgba(20, 32, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 34px rgba(20, 32, 31, 0.06);
}

.headlines-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.headlines-drawer summary::-webkit-details-marker {
  display: none;
}

.headlines-drawer summary::after {
  content: "+";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(8, 127, 131, 0.1);
}

.headlines-drawer[open] summary::after {
  content: "-";
}

.headlines-drawer .headline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 18px 18px;
}

.headlines-archive-section {
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 1), rgba(237, 243, 238, 0.62) 58%, rgba(251, 250, 245, 1));
}

.headlines-archive-section .container {
  width: min(1760px, 100%);
}

.headlines-archive-section h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.section-intro {
  max-width: 750px;
  margin: 18px 0 clamp(28px, 5vw, 52px);
  color: var(--muted);
  font-size: 1.1rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.archive-topic {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 245, 0.86)),
    var(--panel);
  box-shadow: 0 18px 42px rgba(20, 32, 31, 0.08);
}

.archive-topic::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--ember));
}

.archive-topic.medical::before,
.archive-topic.agriculture::before {
  background: linear-gradient(90deg, var(--teal), var(--leaf));
}

.archive-topic.entertainment::before,
.archive-topic.education::before {
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

.archive-topic.finance::before,
.archive-topic.government::before {
  background: linear-gradient(90deg, var(--leaf), var(--teal), var(--gold));
}

.archive-topic-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 24px 24px 18px;
}

.archive-topic-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: #fffaf1;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(20, 32, 31, 0.16);
}

.archive-topic-title h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.archive-topic-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-link-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-link-list li {
  border-top: 1px solid rgba(20, 32, 31, 0.08);
}

.archive-link-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px 16px 24px;
  color: var(--ink);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.archive-link-card:hover {
  background: rgba(8, 127, 131, 0.07);
  color: var(--teal-dark);
}

.archive-link-card:focus-visible {
  outline: 3px solid rgba(239, 106, 46, 0.42);
  outline-offset: -3px;
}

.archive-link-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.archive-link-title {
  font-weight: 900;
  line-height: 1.22;
}

.archive-link-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.archive-source,
.archive-date {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.archive-source {
  background: rgba(8, 127, 131, 0.1);
  color: var(--teal-dark);
}

.archive-date {
  background: rgba(20, 32, 31, 0.06);
  color: var(--muted);
}

.archive-link-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(20, 32, 31, 0.12);
  border-radius: 999px;
  color: var(--ember-dark);
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.archive-link-card:hover .archive-link-arrow {
  background: var(--ember);
  color: #fffaf1;
  transform: translateX(2px);
}

.feature-card,
.myth-panel,
.myth-bottom-line {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card.medical,
.feature-card.agriculture,
.feature-card.entertainment,
.feature-card.education,
.feature-card.finance,
.feature-card.government {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--panel);
}

.feature-card.medical {
  border-top: 6px solid var(--ember);
}

.feature-card.agriculture {
  border-top: 6px solid var(--leaf);
}

.feature-card.entertainment {
  border-top: 6px solid var(--teal);
}

.feature-card.education {
  border-top: 6px solid #3d82f6;
}

.feature-card.finance {
  border-top: 6px solid #2f9f75;
}

.feature-card.government {
  border-top: 6px solid #6f87a6;
}

.feature-card-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.feature-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
}

.feature-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Portrait art fades top/right; scene anchored bottom-left */
.feature-card.medical .feature-card-visual::after {
  background: linear-gradient(
    118deg,
    rgba(251, 250, 245, 0.96) 0%,
    rgba(251, 250, 245, 0.92) 36%,
    rgba(251, 250, 245, 0.74) 56%,
    rgba(251, 250, 245, 0.38) 76%,
    rgba(251, 250, 245, 0.06) 100%
  );
}

.feature-card.agriculture .feature-card-visual::after {
  background: linear-gradient(
    112deg,
    rgba(251, 250, 245, 0.97) 0%,
    rgba(251, 250, 245, 0.94) 32%,
    rgba(251, 250, 245, 0.82) 52%,
    rgba(251, 250, 245, 0.5) 72%,
    rgba(251, 250, 245, 0.12) 100%
  );
}

.feature-card.entertainment .feature-card-visual::after {
  background: linear-gradient(
    105deg,
    rgba(251, 250, 245, 0.95) 0%,
    rgba(251, 250, 245, 0.93) 34%,
    rgba(251, 250, 245, 0.8) 54%,
    rgba(251, 250, 245, 0.45) 74%,
    rgba(251, 250, 245, 0.1) 100%
  );
}

.feature-card.education .feature-card-visual::after,
.feature-card.finance .feature-card-visual::after,
.feature-card.government .feature-card-visual::after {
  background: linear-gradient(
    110deg,
    rgba(251, 250, 245, 0.97) 0%,
    rgba(251, 250, 245, 0.94) 34%,
    rgba(251, 250, 245, 0.8) 54%,
    rgba(251, 250, 245, 0.48) 74%,
    rgba(251, 250, 245, 0.1) 100%
  );
}

.feature-card-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.headline-grid .feature-card .card-icon {
  float: right;
  margin: 0 0 14px 18px;
}

.feature-card.medical .card-icon,
.feature-card.agriculture .card-icon,
.feature-card.entertainment .card-icon,
.feature-card.education .card-icon,
.feature-card.finance .card-icon,
.feature-card.government .card-icon {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(20, 32, 31, 0.1);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #edf3ee;
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.feature-card p,
.myth-content p,
.conversation-band p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  color: #30413f;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 1.05em;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  pointer-events: none;
}

.headline-pill {
  display: block;
  min-height: 44px;
  padding: 9px 12px 9px 30px;
  border: 1px solid rgba(8, 127, 131, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  color: inherit;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 1px 8px rgba(20, 32, 31, 0.05);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.headline-pill:hover,
.headline-pill:focus-visible {
  border-color: rgba(8, 127, 131, 0.38);
  background: rgba(255, 255, 255, 0.86);
  color: #0f2926;
  transform: translateY(-1px);
}

.headline-pill:focus-visible {
  outline: 3px solid rgba(8, 127, 131, 0.3);
  outline-offset: 2px;
}

.headline-pill-source {
  display: block;
  width: fit-content;
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.headline-pill:hover .headline-pill-source,
.headline-pill:focus-visible .headline-pill-source {
  color: var(--teal);
}

.headline-accordion {
  margin-top: 18px;
}

.headline-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 127, 131, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 1px 8px rgba(20, 32, 31, 0.05);
}

.headline-accordion summary::-webkit-details-marker {
  display: none;
}

.headline-accordion summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(8, 127, 131, 0.1);
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1;
}

.headline-accordion[open] summary::after {
  content: "-";
}

.headline-accordion summary:hover,
.headline-accordion summary:focus-visible {
  border-color: rgba(8, 127, 131, 0.34);
  background: rgba(255, 255, 255, 0.86);
}

.headline-accordion summary:focus-visible {
  outline: 3px solid rgba(8, 127, 131, 0.3);
  outline-offset: 2px;
}

.deep-research-section {
  background:
    linear-gradient(135deg, rgba(255, 249, 238, 0.96), rgba(231, 242, 237, 0.92)),
    var(--paper);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.deep-research-grid {
  display: grid;
  gap: 18px;
}

.deep-research-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  max-width: 1120px;
  border: 1px solid #d6e4da;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(20, 32, 31, 0.1);
  overflow: hidden;
}

.deep-research-card-media {
  min-height: 100%;
  margin: 0;
  background: var(--night);
}

.deep-research-card-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.deep-research-card-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(22px, 4vw, 42px) clamp(20px, 4vw, 48px) clamp(22px, 4vw, 42px) 0;
}

.deep-research-card h3 {
  max-width: 780px;
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  line-height: 1.04;
}

.deep-research-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.deep-research-card .writing-points {
  max-width: 620px;
}

.deep-research-card .button {
  justify-self: start;
  margin-top: 4px;
}

.deep-research-article-hero {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(16, 24, 23, 0.9), rgba(7, 86, 91, 0.84)),
    url("Graphics/Finance.png") center / cover;
  color: #fffaf1;
}

.solar-research-hero {
  background:
    linear-gradient(135deg, rgba(16, 24, 23, 0.88), rgba(91, 141, 66, 0.78)),
    url("Graphics/Agriculture.png") center / cover;
}

.deep-research-article-hero-copy {
  width: min(960px, 100%);
}

.deep-research-article-hero .text-link {
  color: #f2c56b;
}

.deep-research-article-hero .eyebrow {
  margin-top: 30px;
  color: rgba(232, 255, 252, 0.88);
}

.deep-research-article-hero h1 {
  max-width: 900px;
  margin: 10px 0 0;
  color: #fffaf1;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.deep-research-dek {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.deep-research-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.deep-research-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  background: rgba(16, 24, 23, 0.42);
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
}

.research-article {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0 clamp(64px, 8vw, 112px);
}

.research-note {
  margin-bottom: 34px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff7e4;
  color: #65490c;
  font-weight: 800;
}

.research-article h2 {
  margin: 46px 0 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(20, 32, 31, 0.12);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.research-article h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.research-article h3 {
  margin: 30px 0 10px;
  font-size: clamp(1.14rem, 1.7vw, 1.38rem);
  line-height: 1.2;
}

.research-article p,
.research-article li {
  color: #31413f;
  font-size: 1.06rem;
  line-height: 1.72;
}

.research-article p + p {
  margin-top: 16px;
}

.research-article ul,
.research-article ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 24px;
  padding-left: 24px;
}

.research-article a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.research-article a:hover {
  color: var(--ember-dark);
}

.research-table-wrap {
  width: 100%;
  margin: 20px 0 34px;
  overflow-x: auto;
  border: 1px solid #d6e4da;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 32, 31, 0.08);
}

.research-article table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.research-article th,
.research-article td {
  padding: 12px 14px;
  border-bottom: 1px solid #dfe7df;
  text-align: left;
  vertical-align: top;
}

.research-article th {
  background: #e7f2ed;
  color: var(--teal-dark);
  font-weight: 900;
}

.research-article td:not(:first-child),
.research-article th:not(:first-child) {
  text-align: center;
}

.research-article tr:last-child td {
  border-bottom: 0;
}

.research-sources {
  margin-top: 52px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid #d6e4da;
  border-radius: 8px;
  background: #f3f8f5;
}

.research-sources h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.research-sources ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
}

.research-sources li {
  padding-left: 4px;
  word-break: break-word;
}

.dark-section {
  background: var(--night);
  color: #f8f4e8;
}

.dark-section .section-heading p {
  color: rgba(248, 244, 232, 0.74);
}

.myth-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.myth-intro .section-heading {
  margin-bottom: 0;
}

.myth-visual {
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
}

.myth-visual img {
  width: 100%;
  aspect-ratio: 2 / 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  object-fit: cover;
}

.myth-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}

.myth-panel {
  background: var(--night-soft);
  border-color: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.myth-panel[open] {
  background: #162825;
  border-color: rgba(242, 197, 107, 0.34);
}

.myth-panel summary {
  position: relative;
  display: grid;
  gap: 12px;
  align-items: start;
  min-height: 84px;
  padding: 22px 66px 22px 24px;
  cursor: pointer;
  list-style: none;
}

.myth-panel summary::-webkit-details-marker {
  display: none;
}

.myth-panel summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(248, 244, 232, 0.22);
  border-radius: 50%;
  color: #f8f4e8;
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.myth-panel[open] summary::after {
  content: "-";
  background: var(--gold);
  color: var(--night);
}

.myth-panel summary:hover::after,
.myth-panel summary:focus-visible::after {
  background: rgba(248, 244, 232, 0.12);
}

.myth-panel[open] summary:hover::after,
.myth-panel[open] summary:focus-visible::after {
  background: #f2c56b;
}

.myth-panel summary:focus-visible {
  outline: 3px solid rgba(125, 215, 213, 0.72);
  outline-offset: -3px;
}

.myth-title {
  display: block;
  max-width: 880px;
  color: #f8f4e8;
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  font-weight: 900;
  line-height: 1.2;
}

.myth-content {
  max-width: 920px;
  padding: 0 24px 26px;
}

.myth-content p {
  color: rgba(248, 244, 232, 0.76);
}

.myth-content p + p {
  margin-top: 12px;
}

.myth-content ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.myth-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 244, 232, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.myth-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.myth-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(239, 106, 46, 0.16);
  color: #ffb28a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.myth-label.truth {
  background: rgba(8, 127, 131, 0.22);
  color: #7dd7d5;
}

.myth-label.energy {
  background: rgba(228, 170, 47, 0.18);
  color: #f2c56b;
}

.myth-bottom-line {
  grid-column: 1 / -1;
  padding: 22px 24px;
  background: #20312a;
  border-color: rgba(228, 170, 47, 0.28);
  color: rgba(248, 244, 232, 0.8);
  font-size: 1.03rem;
}

.myth-bottom-line strong {
  color: #f2c56b;
}

.prompt-playbook-card {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #d8c9a8;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff9ee 0%, #fffdf8 100%);
  box-shadow: var(--shadow);
}

.prompt-playbook-intro {
  max-width: 760px;
  margin-bottom: 22px;
}

.prompt-playbook-intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.prompt-playbook-card .eyebrow {
  color: #9a6b12;
}

.prompt-playbook-card .text-link {
  color: var(--teal-dark);
}

.prompt-playbook-card .text-link:hover {
  color: var(--teal);
}

.chatbot-models-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 16px 24px;
  align-items: start;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(8, 127, 131, 0.18);
  border-radius: 8px;
  background: #f3fbf6;
}

.chatbot-models-note .eyebrow {
  margin-bottom: 6px;
  color: var(--leaf);
}

.chatbot-models-note h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.chatbot-models-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.chatbot-model-list {
  grid-column: 2;
  margin: 0;
  padding-left: 1.25rem;
  color: #243332;
  font-size: 0.98rem;
  line-height: 1.45;
}

.chatbot-model-list li + li {
  margin-top: 6px;
}

.chatbot-model-list a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.chatbot-model-list a:hover {
  color: var(--teal);
}

.prompt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prompt-item {
  padding: 16px 18px;
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.prompt-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.prompt-item h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.prompt-preview {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.prompt-copy {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 6px 12px;
  border: 2px solid rgba(8, 127, 131, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.prompt-copy:hover {
  border-color: var(--teal);
  background: rgba(8, 127, 131, 0.06);
}

.prompt-copy.is-copied {
  border-color: var(--leaf);
  background: rgba(91, 141, 66, 0.12);
  color: var(--leaf);
}

.app-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.app-card {
  display: grid;
  grid-template-rows: minmax(220px, 0.9fr) auto;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-media {
  display: block;
  min-height: 220px;
  background: #edf3ee;
  text-decoration: none;
  overflow: hidden;
}

.app-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.app-media:hover img {
  transform: scale(1.025);
}

.app-media-plainly img {
  object-fit: contain;
  object-position: top center;
  padding-top: 8px;
  background: #fbfaf5;
}

.app-media-muse {
  background: #101827;
}

.app-media-muse img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  padding: 10px;
  background: #101827;
}

.app-media-markd {
  background: #101010;
}

.app-media-markd img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  padding: 10px;
  background: #101010;
}

.app-card-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  padding: clamp(22px, 3vw, 32px);
}

.app-card h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
}

.app-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.app-card .button {
  margin-top: 10px;
}

.featured-app {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101817;
  color: #fffaf1;
  overflow: hidden;
}

.featured-app .eyebrow {
  color: #7ddf9c;
}

.featured-app h3 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.featured-app p {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.8);
  font-size: 1.05rem;
}

.featured-app-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
}

.featured-app-points span,
.featured-app-points a {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(125, 223, 156, 0.14);
  color: #7ddf9c;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.featured-app-points a {
  border: 1px solid currentColor;
}

.featured-app-points a:hover,
.featured-app-points a:focus-visible {
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
}

.featured-app .button-primary {
  margin-top: 4px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(205, 150, 72, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 25, 17, 0.96), rgba(14, 22, 20, 0.98)),
    #101817;
  color: #fffaf1;
  overflow: hidden;
}

.video-feature .eyebrow {
  color: #f0b85d;
}

.video-feature h2,
.video-feature h3 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

.video-feature p {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.05rem;
}

.video-feature .featured-app-points span {
  background: rgba(240, 184, 93, 0.15);
  color: #f4c36f;
}

.video-feature .button-primary {
  background: #c77b2e;
  box-shadow: 0 14px 30px rgba(199, 123, 46, 0.25);
}

.video-feature .button-primary:hover {
  background: #a7631f;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #050807;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-app-alt {
  grid-template-columns: minmax(320px, 1.12fr) minmax(0, 0.88fr);
  background:
    linear-gradient(135deg, rgba(8, 32, 49, 0.94), rgba(3, 9, 13, 0.98)),
    #03090d;
}

.featured-app-alt .featured-app-copy {
  order: 2;
}

.featured-app-alt .featured-app-media {
  order: 1;
}

.uap-files-feature {
  background:
    radial-gradient(circle at 78% 16%, rgba(191, 215, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(9, 16, 24, 0.98), rgba(20, 32, 45, 0.96)),
    #081017;
  border-color: rgba(177, 204, 240, 0.32);
}

.uap-files-feature .eyebrow {
  color: #c7dcff;
}

.uap-files-feature .featured-app-points span,
.uap-files-feature .featured-app-points a {
  background: rgba(199, 220, 255, 0.14);
  color: #d6e6ff;
}

.uap-files-feature .button-primary {
  background: #d0a85e;
  color: #101817;
  box-shadow: 0 14px 30px rgba(208, 168, 94, 0.24);
}

.uap-files-feature .button-primary:hover {
  background: #e0bb73;
}

.ranch-hand-feature {
  background:
    radial-gradient(circle at 78% 20%, rgba(212, 168, 67, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(21, 28, 15, 0.98), rgba(45, 36, 20, 0.96)),
    #151c0f;
  border-color: rgba(212, 168, 67, 0.34);
}

.ranch-hand-feature .eyebrow {
  color: #d4a843;
}

.ranch-hand-feature .featured-app-points span {
  background: rgba(212, 168, 67, 0.15);
  color: #f1ca68;
}

.ranch-hand-media {
  background: #19190f;
}

.ranch-hand-media .media-expand-trigger {
  position: relative;
  height: clamp(260px, 30vw, 420px);
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(25, 25, 15, 0.98), rgba(47, 39, 22, 0.94)),
    #19190f;
}

.ranch-hand-media .media-expand-trigger img {
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  transition: transform 180ms ease;
}

.ranch-hand-media .media-expand-trigger:hover img {
  transform: scale(1.025);
}

.x-algo-feature {
  border-color: rgba(30, 155, 240, 0.28);
}

.x-algo-feature .eyebrow,
.x-algo-feature .text-link {
  color: #49b8ff;
}

.x-algo-feature .featured-app-points span,
.x-algo-feature .featured-app-points a {
  background: rgba(30, 155, 240, 0.16);
  color: #69c7ff;
}

.x-algo-feature .button-primary {
  background: #1d9bf0;
  box-shadow: 0 14px 30px rgba(29, 155, 240, 0.24);
}

.x-algo-feature .button-primary:hover {
  background: #0b83d4;
}

.civic-compute-feature {
  background:
    linear-gradient(135deg, rgba(13, 25, 43, 0.96), rgba(21, 36, 56, 0.96)),
    #101a2a;
  border-color: rgba(61, 130, 246, 0.34);
}

.civic-compute-feature .eyebrow {
  color: #82b6ff;
}

.civic-compute-feature .featured-app-points span,
.civic-compute-feature .featured-app-points a {
  background: rgba(61, 130, 246, 0.15);
  color: #9ec7ff;
}

.civic-compute-feature .button-primary {
  background: #3d82f6;
  box-shadow: 0 14px 30px rgba(61, 130, 246, 0.24);
}

.civic-compute-feature .button-primary:hover {
  background: #256bd8;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #7ddf9c;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: #fffaf1;
}

.featured-app-media {
  position: relative;
  margin: 0;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #07100f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.featured-app-media > a {
  display: block;
  height: 100%;
  min-height: inherit;
  text-decoration: none;
}

.featured-app-media > a img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 180ms ease;
}

.featured-app-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.featured-app-media > a:hover img {
  transform: scale(1.02);
}

.x-algo-media {
  background: #00070b;
  box-shadow:
    inset 0 0 0 1px rgba(30, 155, 240, 0.2),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.x-algo-media img {
  object-position: center top;
}

.uap-files-media {
  background: #081017;
  box-shadow:
    inset 0 0 0 1px rgba(199, 220, 255, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.uap-files-media img {
  object-position: center;
}

.chickenos-media {
  min-height: 0;
  background: #07100f;
  box-shadow:
    inset 0 0 0 1px rgba(125, 223, 156, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.34);
}

.chickenos-media .media-expand-trigger {
  position: relative;
  height: clamp(260px, 24vw, 360px);
  min-height: 0;
  overflow: hidden;
}

.chickenos-media .media-expand-trigger img {
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  transition: transform 180ms ease;
}

.chickenos-media .media-expand-trigger:hover img {
  transform: scale(1.025);
}

.civic-compute-media {
  background: #101a2a;
  box-shadow:
    inset 0 0 0 1px rgba(130, 182, 255, 0.22),
    0 24px 60px rgba(0, 0, 0, 0.3);
}

.civic-compute-media img {
  object-position: center top;
}

.media-expand-trigger {
  display: block;
  width: 100%;
  min-height: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #07100f;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.media-expand-trigger:focus-visible {
  outline: 3px solid #7ddf9c;
  outline-offset: 3px;
}

.media-expand-trigger img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  background: #07100f;
}

.media-expand-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(7, 16, 15, 0.82);
  color: #fffaf1;
  font-size: 0.8rem;
  font-weight: 900;
  pointer-events: none;
}

.image-lightbox {
  width: min(96vw, 1280px);
  max-width: 96vw;
  max-height: 96vh;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(7, 16, 15, 0.94);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
  margin: auto;
}

.image-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1280px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
  position: fixed;
  top: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 24px);
  z-index: 1;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(16, 24, 23, 0.92);
  color: #fffaf1;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.image-lightbox-close:hover {
  border-color: #fffaf1;
  background: rgba(16, 24, 23, 1);
}

.writing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #c9ded6;
  border-radius: 8px;
  background: #e7f2ed;
  overflow: hidden;
}

.writing-media {
  grid-column: 1 / -1;
  align-self: stretch;
  height: clamp(180px, 24vw, 260px);
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--night);
}

.writing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.writing-card h3 {
  max-width: 760px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.writing-card p {
  max-width: 760px;
  color: var(--muted);
}

.writing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 280px;
}

.writing-points span {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(8, 127, 131, 0.11);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.writing-card .button {
  white-space: nowrap;
}

.writing-followups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -8px 0 22px;
}

.writing-followup-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: clamp(12px, 1.8vw, 16px);
  border: 1px solid #c9ded6;
  border-radius: 8px;
  background: #f3f8f5;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.writing-followup-card:hover,
.writing-followup-card:focus-visible {
  border-color: rgba(8, 127, 131, 0.42);
  box-shadow: 0 18px 38px rgba(16, 24, 23, 0.12);
  transform: translateY(-2px);
}

.writing-followup-card:focus-visible {
  outline: 3px solid rgba(125, 215, 213, 0.72);
  outline-offset: 3px;
}

.writing-followup-media {
  aspect-ratio: 2.5 / 1;
  position: relative;
  display: grid;
  align-items: end;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--night);
}

.writing-followup-media img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.writing-followup-media::after {
  content: "";
  grid-area: 1 / 1;
  align-self: stretch;
  background:
    linear-gradient(180deg, rgba(4, 10, 10, 0.08) 22%, rgba(4, 10, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(4, 10, 10, 0.7) 0%, rgba(4, 10, 10, 0.26) 58%, rgba(4, 10, 10, 0.54) 100%);
  pointer-events: none;
}

.writing-followup-heading {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  align-self: end;
  padding: clamp(14px, 2vw, 20px);
  color: #fff;
}

.writing-followup-card .eyebrow {
  margin-bottom: 8px;
  color: rgba(232, 255, 252, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.writing-followup-card h4 {
  max-width: 17ch;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
}

.writing-followup-card p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  margin-top: 2px;
}

.writing-followup-card .writing-points {
  max-width: none;
}

.writing-followup-card .text-link {
  margin-top: 0;
  color: var(--teal-dark);
}

.writing-followup-card:hover .text-link,
.writing-followup-card:focus-visible .text-link {
  color: var(--night);
}

.art-section {
  padding-top: clamp(40px, 6vw, 72px);
}

.art-section .eyebrow {
  color: #9a6b12;
}

.art-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #e8d4a8;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff9ee 0%, #fffdf8 52%, #f7efe0 100%);
  box-shadow: var(--shadow);
}

.art-feature-copy h3 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3vw, 2.85rem);
}

.art-feature-copy p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.art-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 16px;
}

.art-feature-points span {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(228, 170, 47, 0.18);
  color: #8a6110;
  font-size: 0.82rem;
  font-weight: 900;
}

.art-feature-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #1a2423;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.art-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #07100f;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  font: inherit;
  text-align: left;
}

.art-thumb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.art-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.art-thumb:hover img {
  transform: scale(1.04);
}

.art-gallery-caption {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.conversation-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 127, 131, 0.94), rgba(16, 24, 23, 0.98)),
    var(--teal-dark);
  color: #fffaf1;
}

.conversation-band p {
  max-width: 760px;
  color: rgba(255, 250, 241, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer-copy span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 640px;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-nav a {
  color: var(--teal-dark);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--ember-dark);
}

.music-section {
  background:
    linear-gradient(145deg, #edf7f4 0%, var(--paper) 60%, #f3f8f5 100%);
  border-top: 1px solid rgba(20, 32, 31, 0.07);
}

.music-section .eyebrow {
  color: var(--teal-dark);
}

.music-section .section-heading p {
  color: var(--muted);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1180px;
}

.music-embed-card {
  border-radius: 12px;
  overflow: hidden;
}

/* ── Local AI section ─────────────────────────────────────────── */

.local-ai-section {
  background: var(--night);
  color: #f8f4e8;
  /* override the inherited section padding so this nested section
     doesn't double-pad inside the portfolio section */
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  margin: clamp(40px, 6vw, 80px) calc(clamp(18px, 5vw, 72px) * -1);
  width: calc(100% + clamp(18px, 5vw, 72px) * 2);
}

.local-ai-section .section-heading p {
  color: rgba(248, 244, 232, 0.74);
}

.local-ai-section .section-heading h2 {
  color: #f8f4e8;
}

.local-ai-eyebrow {
  color: #7dd7d5 !important;
}

.local-ai-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.local-ai-lede {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(36px, 5vw, 58px);
}

.local-ai-lede .section-heading {
  margin-bottom: 0;
}

.local-ai-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.local-ai-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(125, 215, 213, 0.28);
  border-radius: 999px;
  background: rgba(125, 215, 213, 0.09);
  color: #d9fffb;
  font-size: 0.82rem;
  font-weight: 800;
}

.local-ai-hero-fig {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.local-ai-hero-fig img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.local-ai-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.local-ai-why-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)), var(--night-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 28px 24px;
}

.local-ai-why-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(125, 215, 213, 0.12);
  color: #d9fffb;
  font-size: 1.25rem;
}

.local-ai-why-card h3 {
  color: #f8f4e8;
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.local-ai-why-card p {
  color: rgba(248, 244, 232, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.local-ai-tools-wrap {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.local-ai-tools-heading {
  color: #f8f4e8;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.local-ai-tools-sub {
  color: rgba(248, 244, 232, 0.68);
  font-size: 1rem;
  margin: 0 0 22px;
}

.local-ai-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.local-ai-tool {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  background: rgba(16, 24, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 22px 20px 24px;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.local-ai-tool:hover {
  border-color: var(--teal);
  background: #162825;
  transform: translateY(-2px);
}

.local-ai-tool-logo {
  display: grid;
  place-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: rgba(248, 244, 232, 0.08);
  border: 1px solid rgba(248, 244, 232, 0.12);
  border-radius: 8px;
}

.local-ai-tool-logo img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.local-ai-tool-name {
  display: block;
  color: #f8f4e8;
  font-size: 1.08rem;
  font-weight: 800;
  padding-right: 58px;
  margin-bottom: 5px;
}

.local-ai-tool-tag {
  display: block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.35;
  padding-right: 58px;
  margin-bottom: 12px;
}

.local-ai-tool p {
  color: rgba(248, 244, 232, 0.68);
  font-size: 0.88rem;
  line-height: 1.58;
  margin: 0 0 18px;
  flex-grow: 1;
}

.local-ai-tool-cta {
  color: #d9fffb;
  font-size: 0.82rem;
  font-weight: 800;
}

.local-ai-tool-cta::after {
  content: " ->";
}

.local-ai-bottom-line {
  max-width: 100%;
  background: linear-gradient(90deg, rgba(8, 127, 131, 0.16), rgba(228, 170, 47, 0.08));
  border: 1px solid rgba(125, 215, 213, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 22px 26px;
  color: rgba(248, 244, 232, 0.86);
  font-size: 1.03rem;
  line-height: 1.68;
  margin: 0;
}

/* ── /Local AI section ─────────────────────────────────────────── */

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    height: clamp(420px, 62vw, 560px);
    min-height: auto;
    max-height: none;
    padding: clamp(24px, 6vw, 48px);
  }

  .hero-media img {
    object-fit: cover;
    opacity: 0.92;
  }

  .booking-hero-media {
    min-height: clamp(430px, 72vw, 560px);
    padding: clamp(28px, 6vw, 44px);
  }

  .booking-hero-media img {
    width: 100%;
    opacity: 0.8;
  }

  .booking-hero-media::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
  }

  .booking-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 10vw, 4.6rem);
  }

  .headline-grid,
  .headlines-layout,
  .app-showcase,
  .prompt-list,
  .featured-app,
  .video-feature,
  .about-layout,
  .work-intro-layout,
  .discovery-layout,
  .service-grid,
  .talks-layout,
  .art-feature,
  .writing-followups,
  .writing-card,
  .deep-research-card,
  .myth-intro,
  .myth-layout,
  .conversation-band,
  .work-section,
  .booking-layout,
  .invest-card,
  .builds-teaser {
    grid-template-columns: 1fr;
  }

  .industry-grid,
  .invest-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .invest-card {
    grid-column: auto;
  }

  .builds-teaser-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .myth-visual {
    justify-self: start;
    width: min(100%, 620px);
  }

  .local-ai-why,
  .local-ai-tools {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-ai-lede {
    grid-template-columns: 1fr;
  }

  .local-ai-hero-fig {
    max-width: 620px;
  }

  .music-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .writing-card .button {
    width: fit-content;
  }

  .deep-research-card-copy {
    padding: 0 clamp(20px, 4vw, 32px) clamp(24px, 4vw, 34px);
  }

  .featured-app-media {
    min-height: 0;
  }

  .chickenos-media .media-expand-trigger {
    height: auto;
  }

  .chickenos-media .media-expand-trigger img {
    height: auto;
    object-fit: contain;
  }

  .video-embed {
    min-height: 0;
  }

  .featured-app-alt .featured-app-copy,
  .featured-app-alt .featured-app-media {
    order: initial;
  }

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

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

  .contact-actions {
    align-items: flex-start;
    margin-top: 0;
  }

  .chatbot-models-note,
  .chatbot-model-list {
    grid-column: auto;
  }

  .chatbot-models-note {
    grid-template-columns: 1fr;
  }

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

  .headlines-ticker {
    position: relative;
    top: auto;
  }

  .headlines-drawer .headline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    gap: 14px;
    padding: 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 520px;
    max-height: none;
    padding: 170px 18px 34px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(16, 24, 23, 0.84), rgba(16, 24, 23, 0.16) 76%),
      linear-gradient(90deg, rgba(16, 24, 23, 0.42), rgba(16, 24, 23, 0));
  }

  .hero-media img {
    object-position: center;
  }

  .hero-media::before {
    background-image: url("Graphics/MobileBanner1.png");
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .page-intro h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .booking-hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .headlines-archive-section h2 {
    max-width: 100%;
  }

  .archive-topic-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px 16px;
  }

  .archive-topic-icon {
    width: 46px;
    height: 46px;
    font-size: 1.32rem;
  }

  .archive-link-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 15px 18px;
  }

  .archive-link-arrow {
    justify-self: start;
    width: 30px;
    height: 30px;
  }

  .industry-card,
  .invest-card-copy,
  .discovery-card,
  .service-card,
  .process-step {
    padding: 20px;
  }

  .work-intro-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .booking-form .button {
    width: 100%;
  }

  .invest-card-media {
    min-height: 240px;
  }

  .deep-research-card-media img {
    min-height: 0;
    height: clamp(136px, 36vw, 170px);
    object-position: center;
  }

  .deep-research-card h3 {
    line-height: 1.1;
  }

  .deep-research-article-hero {
    padding: 34px 18px 42px;
  }

  .deep-research-article-hero .eyebrow {
    margin-top: 22px;
  }

  .deep-research-article-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
    line-height: 1.02;
  }

  .research-article {
    width: min(100% - 28px, 860px);
  }

  .research-article p,
  .research-article li {
    font-size: 1rem;
  }

  .research-sources {
    padding: 18px;
  }

  .builds-teaser-grid {
    grid-template-columns: 1fr;
  }

  .builds-teaser-card {
    min-height: 220px;
  }

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

  .social-links,
  .footer-nav {
    width: 100%;
  }

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

  .social-links a {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }

  .local-ai-why,
  .local-ai-tools {
    grid-template-columns: 1fr;
  }

  .local-ai-section {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .local-ai-proof-points span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .local-ai-tools-wrap {
    padding: 22px 18px;
  }

  .button {
    width: 100%;
  }

  .about-consult-list {
    padding: 16px 16px 16px 18px;
  }

  .about-actions {
    width: 100%;
  }

  .writing-card .button {
    width: 100%;
  }
}
