:root {
  --ink: #101827;
  --muted: #5e6a7e;
  --line: #e6ebf2;
  --soft: #f6f8fc;
  --white: #ffffff;
  --blue: #1d4ed8;
  --blue-dark: #0f2f99;
  --blue-soft: #e8efff;
  --green: #38a987;
  --gold: #c5963b;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.10), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(56, 169, 135, 0.12), transparent 32rem),
    var(--white);
  line-height: 1.55;
}

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

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

p {
  margin: 0;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 10px 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 235, 242, 0.86);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3b4659;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-links .nav-cta:hover {
  background: var(--blue);
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  display: block;
  min-height: auto;
  padding-top: 96px;
  padding-bottom: 80px;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-copy {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 6.4vw, 5.5rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 860px;
  color: #2d374b;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.35;
}

.hero-body {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

.hero-showcase {
  position: relative;
  width: min(1050px, 100%);
  margin: 64px auto 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 18%, rgba(56, 169, 135, 0.14), transparent 24rem),
    linear-gradient(145deg, #f8faff, #edf3fb);
  box-shadow: var(--shadow);
}

.hero-product-frame {
  height: clamp(460px, 54vw, 640px);
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f7fa;
}

.hero-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-result-card {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(340px, calc(100% - 84px));
  padding: 18px;
  border: 1px solid #dfe7f2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(12px);
}

.hero-result-ring {
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  color: #087b2a;
  font-size: 1.65rem;
  font-weight: 950;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, white 48%, transparent 50%),
    conic-gradient(#07822c 90%, #dbe5f2 0);
}

.hero-result-card strong {
  display: block;
  color: #087b2a;
  font-size: 1.1rem;
}

.hero-result-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.88)),
    radial-gradient(circle at center, rgba(56, 169, 135, 0.18), transparent 22rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(16, 24, 39, 0.05);
  border-radius: 26px;
}

.orb-wrap {
  position: absolute;
  inset: 8% 8% auto;
  display: grid;
  place-items: center;
}

.orb {
  width: min(80%, 380px);
  animation: float 7s ease-in-out infinite;
}

.conversation-card {
  position: absolute;
  width: min(86%, 420px);
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.conversation-card strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.conversation-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.card-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-card {
  left: 30px;
  bottom: 34px;
}

.score-card {
  right: 28px;
  bottom: 172px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(78%, 340px);
}

.score-ring {
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, white 48%, transparent 50%),
    conic-gradient(var(--blue) 78%, #dbe5f2 0);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.13rem;
}

.problem-section {
  padding-top: 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.stat-card,
.quote-stack,
.image-card,
.screenshot-card,
.benefit-grid article,
.testimonial-grid blockquote,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  display: grid;
  align-items: center;
  min-height: 300px;
  padding: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card img {
  width: 100%;
  border-radius: 22px;
}

.quote-stack {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.mini-source-card {
  display: grid;
  align-content: center;
  min-height: 106px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: var(--white);
}

.mini-source-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-source-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.32;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.oral-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.oral-benefit-grid article {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 265px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.oral-benefit-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #a96a09;
  font-weight: 950;
  border-radius: 17px;
  background: #fff5df;
}

.oral-benefit-grid h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.oral-benefit-grid p {
  color: var(--muted);
}

.oral-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.oral-evidence-grid figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.oral-evidence-grid img {
  width: 100%;
  border-radius: 12px;
}

.elephant-heading {
  max-width: var(--max);
  margin-top: 112px;
  margin-bottom: 44px;
}

.elephant-heading h2 {
  font-size: clamp(1.65rem, 5vw, 4.6rem);
}

.elephant-title-line {
  display: block;
}

.elephant-title-line:first-child {
  white-space: nowrap;
}

.image-card,
.scale-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.elephant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.scale-card {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(56, 169, 135, 0.36), transparent 18rem),
    linear-gradient(135deg, #101827, #182642 62%, #1d4ed8);
  box-shadow: var(--shadow);
}

.scale-card .eyebrow {
  color: #9be2cc;
}

.scale-card h3 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 0.98;
}

.scale-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.time-metrics div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.time-metrics strong {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.time-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.product-section {
  padding-bottom: 72px;
}

.workflow {
  display: grid;
  gap: 28px;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.workflow-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.workflow-row.reverse .workflow-copy {
  grid-column: 2;
  grid-row: 1;
}

.workflow-row.reverse .screenshot-card {
  grid-column: 1;
  grid-row: 1;
}

.workflow-copy {
  display: grid;
  gap: 16px;
  padding: clamp(10px, 3vw, 28px);
}

.workflow-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  font-weight: 950;
  letter-spacing: -0.05em;
  border-radius: 18px;
  background: var(--blue-soft);
}

.screenshot-card {
  padding: 16px;
  border-radius: 26px;
  overflow: hidden;
}

.screenshot-card img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: 18px;
  background: #f7f8fb;
}

.screenshot-tall img {
  max-height: 620px;
}

.benefit-section {
  width: 100%;
  max-width: none;
  padding: 108px max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 5%, rgba(56, 169, 135, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fafc, #eef3fb);
}

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

.benefit-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 235px;
  padding: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gold-bar {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.benefit-grid h3 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.benefit-grid p {
  color: var(--muted);
}

.proof-section {
  padding-bottom: 72px;
}

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

.testimonial-grid blockquote {
  position: relative;
  margin: 0;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-lg);
}

.testimonial-grid blockquote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 28px;
  color: rgba(197, 150, 59, 0.22);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.testimonial-grid p {
  position: relative;
  color: #273145;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.5;
  font-style: italic;
}

.testimonial-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.team-section {
  padding-top: 72px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.team-card {
  position: relative;
  min-height: 185px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.team-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.team-card .team-second-name {
  margin-top: 6px;
}

.team-role {
  margin-top: 10px;
  color: #bd7910;
  font-weight: 900;
}

.team-bio {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.team-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 4px;
}

.team-link img {
  width: 20px;
  height: 20px;
}

.team-link:hover {
  opacity: 0.78;
}

.team-closing {
  margin-top: 56px;
  padding-top: 30px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 900;
  text-align: center;
  border-top: 1px solid var(--line);
}

.contact-section {
  padding-top: 40px;
}

.contact-card {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(36px, 7vw, 76px);
  text-align: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 80% 18%, rgba(56, 169, 135, 0.16), transparent 20rem),
    radial-gradient(circle at 15% 80%, rgba(29, 78, 216, 0.12), transparent 22rem),
    var(--white);
}

.contact-card h2 {
  max-width: 880px;
}

.contact-card p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 132px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 980px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .problem-grid,
  .split-panel,
  .oral-benefit-grid,
  .oral-evidence-grid,
  .workflow-row,
  .workflow-row.reverse,
  .benefit-grid,
  .testimonial-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-row.reverse .workflow-copy,
  .workflow-row.reverse .screenshot-card {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    margin-top: 9px;
    padding-left: 12px;
  }

  .brand img {
    width: 120px;
  }

  .nav-links {
    font-size: 0.82rem;
  }

  .nav-links .nav-cta {
    padding: 9px 12px;
  }

  .section-pad {
    width: min(100% - 22px, var(--max));
    padding: 76px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-showcase {
    margin-top: 44px;
    padding: 8px;
    border-radius: 24px;
  }

  .hero-product-frame {
    height: 360px;
    border-radius: 18px;
  }

  .hero-result-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    margin: -34px auto 4px;
    padding: 14px;
  }

  .hero-result-ring {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
    border-radius: 24px;
  }

  .conversation-card {
    width: calc(100% - 38px);
  }

  .score-card {
    right: 19px;
    bottom: 186px;
  }

  .question-card {
    left: 19px;
    bottom: 22px;
  }

  .stat-card,
  .quote-stack,
  .workflow-row,
  .testimonial-grid blockquote,
  .contact-card {
    border-radius: 24px;
  }

  .time-metrics {
    grid-template-columns: 1fr;
  }

  .workflow-row {
    padding: 14px;
  }

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

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

  .oral-benefit-grid article {
    min-height: 0;
  }

  .screenshot-card {
    padding: 10px;
  }

  .benefit-section {
    padding-block: 76px;
  }

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


/* Research & Insights */
.research-hero {
  padding-top: 112px;
  padding-bottom: 88px;
}

.research-heading {
  max-width: 980px;
  margin-bottom: 0;
}

.research-heading h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 6.4vw, 5.5rem);
  line-height: 0.98;
}

.research-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
}

.research-library {
  width: 100%;
  padding: 104px max(16px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 82% 8%, rgba(56, 169, 135, 0.14), transparent 28rem),
    linear-gradient(180deg, #f8fafc, #eef3fb);
}

.research-library-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.research-section-heading {
  max-width: 760px;
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 40px;
  align-items: stretch;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.insight-card-copy {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 780px;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #a96a09;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.insight-card-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 4px;
}

.insight-tags span {
  padding: 7px 11px;
  color: #3b4659;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid #dbe4f0;
  border-radius: 999px;
  background: var(--soft);
}

.insight-card-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 36px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.insight-index {
  color: #d7dfeb;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-align: right;
}

.insight-card-action .button {
  width: 100%;
  gap: 9px;
}

.nav-links a[aria-current="page"] {
  background: var(--soft);
}

@media (max-width: 980px) {
  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-card-action {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .insight-index {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .research-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .research-library {
    padding-block: 76px;
  }

  .insight-card {
    gap: 28px;
    padding: 26px;
    border-radius: 24px;
  }

  .insight-card-action {
    flex-direction: column;
    align-items: stretch;
  }

  .insight-index {
    display: none;
  }
}
