@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --slide-bg: #f7f8fc;
  --panel-bg: #f1f3f9;
  --text-block-bg: #e2e6f0;
  --text-block-bg-soft: #e7ebf3;
  --heading: #3d44c9;
  --text: #4a4d5f;
  --ink: #3f4151;
  --line: #e0e3ee;
  --maxw: 1200px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-subhead: "Manrope", "Segoe UI", Arial, sans-serif;
  --subhead-color: #353a50;
  --body-color: #3f4458;
  --bg-subhead-color: #2a3042;
  --bg-body-color: #30374b;
  --subhead-size: 26px;
  --body-size: 18px;
  --body-line: 1.52;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

.top-contact {
  border-bottom: 0;
  background: #ffffff;
}

.top-inner {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 10px 22px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #4f5366;
}

.top-inner a {
  text-decoration: none;
  color: #4f5366;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-inner a:hover {
  color: var(--heading);
}

.site-header {
  border-bottom: 1px solid #d7d8e2;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 2px;
  min-width: 280px;
}

.brand-name {
  font-family: var(--font-heading);
  color: var(--heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}

.brand-tag {
  color: #555a71;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #d7dbe8;
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #4f5366;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  margin-left: auto;
}

.menu-root {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
}

.menu-root > li {
  position: relative;
}

.menu-root > li > a,
.dropdown-toggle {
  text-decoration: none;
  color: #4f5366;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > .dropdown-toggle::after {
  content: "\25BE";
  font-size: 11px;
  color: #777d93;
}

.menu-root > li > a:hover,
.dropdown-toggle:hover,
.menu-root > li > a.active,
.dropdown-toggle.active {
  color: var(--heading);
  background: #edf0f8;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 248px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #d9ddec;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(41, 52, 97, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.dropdown-menu li a {
  display: block;
  text-decoration: none;
  color: #4f5366;
  font-size: 15px;
  font-weight: 500;
  padding: 9px 10px;
  border-radius: 6px;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: #edf0f8;
  color: var(--heading);
}

@media (min-width: 981px) {
  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) and (min-width: 981px) {
  .top-inner {
    font-size: 14px;
  }

  .nav-inner {
    padding: 12px 18px;
    gap: 14px;
  }

  .brand {
    min-width: 240px;
  }

  .brand-name {
    font-size: 26px;
  }

  .brand-tag {
    font-size: 13px;
  }

  .menu-root > li > a,
  .dropdown-toggle {
    font-size: 15px;
    padding: 9px 10px;
  }
}

a {
  color: inherit;
}

.page {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  background: var(--slide-bg);
}

.slide {
  min-height: 760px;
  padding: 38px 40px;
  border-top: 2px solid #d7d8e2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide.no-pad {
  padding: 0;
  display: block;
}

.slide-inner {
  padding: 38px 40px;
}

.slide-title,
.hero-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  color: var(--heading);
  letter-spacing: 0.3px;
  font-weight: 600;
}

.slide-title {
  font-size: clamp(30px, 3.3vw, 42px);
}

.slide-title.small {
  font-size: clamp(28px, 3vw, 38px);
}

.slide-title.tiny {
  font-size: clamp(26px, 2.8vw, 34px);
}

.hero-title {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
}

.title-link {
  color: var(--heading);
  text-decoration: none;
}

.title-link:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
}

.lead {
  font-size: 40px;
  font-family: var(--font-heading);
  color: var(--ink);
  margin: 0 0 8px;
}

.sub {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 760px;
}

.hero-media img,
.fill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  padding: 80px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-line {
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #45495e;
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #45495e;
  text-decoration: none;
  font-weight: 600;
}

.contact-line .phone:hover {
  color: var(--heading);
}

.contact-line .mail {
  color: var(--heading);
  text-decoration: none;
  font-weight: 700;
}

.contact-line .ci {
  font-size: 14px;
  line-height: 1;
}

.contact-line .sep {
  color: #666a7d;
}

.banner {
  height: 200px;
  margin: -38px -40px 28px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.team-block {
  display: grid;
  gap: 18px;
}

.team-block > div {
  display: grid;
  gap: 18px;
}

.team-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--panel-bg);
  display: grid;
  place-items: center;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: #5d6174;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.person-name {
  margin: 0;
  font-size: var(--subhead-size);
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.person-desc {
  margin: 5px 0 0;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--body-color);
  font-weight: 500;
}

.spec-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.spec-list li {
  position: relative;
  padding-left: 16px;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--body-color);
  font-weight: 500;
}

.spec-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  top: 0;
  color: #53566a;
  font-size: 12px;
  line-height: 1.6;
}

.spec-name {
  display: block;
  font-weight: 500;
  color: #44485b;
}

.split-image {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 760px;
  margin: -38px -40px;
}

.split-image .right-content {
  padding: 46px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-list {
  display: grid;
  gap: 14px;
}

.panel {
  background: var(--text-block-bg);
  padding: 18px 22px;
  border-radius: 3px;
}

.panel h3,
.panel h4 {
  margin: 0 0 8px;
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-size: var(--subhead-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.panel p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

/* Darker text for filled background blocks to improve readability */
.panel h3,
.panel h4,
.bm-line h4,
.f-box h4,
.eq-text h4,
.t-item h4 {
  color: var(--bg-subhead-color);
}

.panel p,
.bm-line p,
.f-box p,
.eq-text p,
.t-item p,
.simple-table th,
.simple-table td {
  color: var(--bg-body-color);
}

.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}

.sol-item h3 {
  margin: 8px 0 10px;
  font-family: var(--font-subhead);
  color: #353a50;
  font-size: var(--subhead-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.sol-item p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
  max-width: 38ch;
}

.sol-icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--heading);
}

.sol-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.sol-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--heading);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sol-icon.icon-muted {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #d4d5df;
}

.sol-icon.icon-muted svg {
  width: 16px;
  height: 16px;
  stroke: #8b8e9d;
  stroke-width: 1.6;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.three-col .panel {
  min-height: 470px;
}

.product-list {
  display: grid;
  gap: 22px;
}

.product-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
}

.product-row img {
  width: 180px;
  height: 108px;
  object-fit: cover;
  display: block;
}

/* Increase only Rice section product thumbnails by ~30% */
#s06 .product-row {
  grid-template-columns: 280px 1fr;
}

#s06 .product-row img {
  width: 280px;
  height: 168px;
}

#s06 .product-list {
  gap: 52px;
}

.product-row h3 {
  margin: 0 0 6px;
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-size: var(--subhead-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.product-row p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.text-stack {
  display: grid;
  gap: 14px;
}

.text-stack h3 {
  margin: 0 0 5px;
  font-size: var(--subhead-size);
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.text-stack p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.overview-center {
  min-height: 760px;
  display: grid;
  align-content: center;
}

.bm-wrap {
  display: grid;
  grid-template-columns: minmax(500px, 1.2fr) minmax(0, 1.2fr);
  gap: 0;
  align-items: stretch;
  margin-top: 10px;
}

.bm-cone {
  width: 100%;
  max-width: none;
  height: 500px;
  background: #d5d8e6;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  overflow: hidden;
  display: grid;
  grid-template-rows: 21% 24% 26% 29%;
}

.bm-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid #ebedf4;
}

.bm-tier:first-child {
  border-top: 0;
}

.bm-tier:nth-child(1) { background: #e1e4ef; }
.bm-tier:nth-child(2) { background: #dbe0ea; }
.bm-tier:nth-child(3) { background: #d4d8e5; }
.bm-tier:nth-child(4) { background: #ced3e1; }

.bm-tier i {
  display: none;
}

.bm-tier .bm-tier-icon {
  width: 35px;
  height: 35px;
  stroke: #656a7f;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#s09 .bm-tier.tier-1 {
  align-items: center;
  padding-top: 0;
}

#s09 .bm-tier.tier-1 .bm-tier-icon {
  transform: translate(-1px, 8px);
}

#s09 .bm-tier.tier-3 i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 30px !important;
  line-height: 1;
  color: #656a7f;
}

.bm-right {
  display: grid;
  grid-template-rows: 21% 24% 26% 29%;
  margin-top: 0;
  margin-left: -170px;
}

#s09 .bm-line {
  padding: 0 0 0 14px;
  border-bottom: 1px solid #c8cedd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#s09 .bm-line.tier-1 { margin-left: 0; background: transparent; }
#s09 .bm-line.tier-2 { margin-left: 56px; background: transparent; }
#s09 .bm-line.tier-3 { margin-left: 112px; background: transparent; }
#s09 .bm-line.tier-4 { margin-left: 168px; background: transparent; }

#s09 .bm-line h4 {
  margin: 0 0 5px;
  font-family: var(--font-subhead);
  font-size: 22px;
  color: #474b5f;
  font-weight: 600;
  letter-spacing: 0.05px;
  line-height: 1.28;
}

#s09 .bm-line p {
  margin: 0;
  font-size: var(--body-size);
  color: #474b5f;
  line-height: var(--body-line);
  font-weight: 500;
  max-width: 56ch;
}

.bm-lines {
  display: grid;
  gap: 0;
}

.bm-line {
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--line);
}

.bm-line h4 {
  margin: 0 0 4px;
  font-size: var(--subhead-size);
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.bm-line p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.metric-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric {
  text-align: center;
}

.metric .value {
  font-family: var(--font-heading);
  color: var(--ink);
  font-size: 52px;
}

.metric h4 {
  margin: 4px 0;
  font-family: var(--font-subhead);
  font-size: var(--subhead-size);
  color: var(--subhead-color);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.metric p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.traction {
  display: grid;
  grid-template-columns: 62% 38%;
  min-height: 760px;
  margin: -38px -40px;
}

.traction-left {
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline {
  margin-top: 18px;
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: #cfd3de;
}

.t-item {
  position: relative;
  padding-left: 126px;
}

.t-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  width: 72px;
  height: 2px;
  background: #cfd3de;
}

.t-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--panel-bg);
  display: grid;
  place-items: center;
  color: #5b5f72;
  z-index: 1;
}

.t-icon i {
  font-size: 24px;
  line-height: 1;
}

.t-item:nth-child(2) .t-icon i {
  font-size: 22px;
}

.t-item:nth-child(3) .t-icon i {
  font-size: 23px;
}

.t-item:nth-child(4) .t-icon i {
  font-size: 23px;
}

.t-item h4 {
  margin: 2px 0 7px;
  font-family: var(--font-heading);
  color: #474b5f;
  font-size: var(--subhead-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.t-item p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
  max-width: 37ch;
}

.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--text-block-bg-soft);
  margin-top: 10px;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 860px) {
  .table-scroll .simple-table {
    min-width: 760px;
  }
}

.simple-table th,
.simple-table td {
  border: 1px solid #d7d7de;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--body-color);
  font-weight: 500;
}

.simple-table th {
  font-weight: 700;
  color: var(--ink);
}

/* Modern table treatment for Competitive Landscape and Financial Projections */
#s12 .simple-table,
#s13 .simple-table {
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 14px;
  background: #f7f9ff;
  border: 1px solid #cfd6e6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(63, 76, 133, 0.09);
}

#s12 .simple-table th,
#s13 .simple-table th,
#s12 .simple-table td,
#s13 .simple-table td {
  border: 0;
  padding: 12px 14px;
  font-size: 17px;
}

#s12 .simple-table thead th,
#s13 .simple-table thead th {
  background: linear-gradient(180deg, #e9edf8 0%, #dfe5f3 100%);
  color: #2f354d;
  font-weight: 700;
}

#s12 .simple-table th + th,
#s13 .simple-table th + th,
#s12 .simple-table td + td,
#s13 .simple-table td + td {
  border-left: 1px solid #dde2ef;
}

#s12 .simple-table tbody tr + tr td,
#s13 .simple-table tbody tr + tr td {
  border-top: 1px solid #dde2ef;
}

#s12 .simple-table tbody tr:nth-child(odd) td,
#s13 .simple-table tbody tr:nth-child(odd) td {
  background: #f9fbff;
}

#s12 .simple-table tbody tr:nth-child(even) td,
#s13 .simple-table tbody tr:nth-child(even) td {
  background: #f2f5fc;
}

#s12 .simple-table tbody tr:hover td,
#s13 .simple-table tbody tr:hover td {
  background: #eaf0fb;
}

#s13 .simple-table thead th,
#s13 .simple-table tbody td {
  text-align: center;
}

#s13 .simple-table thead th:first-child,
#s13 .simple-table tbody td:first-child {
  text-align: left;
}

.funding-grid {
  display: grid;
  grid-template-columns: 1fr 390px 1fr;
  gap: 16px;
  align-items: center;
}

.funding-col {
  display: grid;
  gap: 18px;
}

.f-box h4 {
  margin: 0 0 2px;
  font-size: var(--subhead-size);
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.f-box .amt {
  margin: 0 0 6px;
  color: #4b4f61;
  font-size: 16px;
}

.f-box p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.f-chart img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.eq-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  margin-top: 8px;
  align-items: stretch;
}

.eq-icon {
  background: var(--text-block-bg);
  min-height: 74px;
  display: grid;
  place-items: center;
}

.eq-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.eq-text {
  border-bottom: 1px solid var(--line);
  padding: 8px 14px;
}

.eq-text h4 {
  margin: 0 0 4px;
  font-family: var(--font-subhead);
  color: var(--subhead-color);
  font-size: var(--subhead-size);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.eq-text p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

/* Stepped layout only for Equity section */
#s15 .eq-row {
  --step-left: 180px;
  grid-template-columns: var(--step-left) minmax(0, 1fr);
  margin-top: 0;
}

#s15 .eq-row + .eq-row {
  margin-top: 8px;
}

#s15 .eq-row:nth-of-type(2) {
  --step-left: 360px;
}

#s15 .eq-row:nth-of-type(3) {
  --step-left: 540px;
}

#s15 .eq-icon {
  min-height: 104px;
  background: #dfe2ec;
  border-radius: 2px;
}

#s15 .eq-icon img {
  width: 34px;
  height: 34px;
}

#s15 .eq-text {
  padding: 10px 14px 8px 16px;
  border-bottom: 1px solid #c8cedd;
  display: grid;
  align-content: center;
}

#s15 .eq-text h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: var(--subhead-size);
  color: #474b5f;
  font-weight: 500;
  line-height: 1.2;
}

.chevrons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 16px;
}

.chev {
  background: #dde1eb;
  min-height: 72px;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 5% 50%);
  display: grid;
  place-items: center;
  color: #5a5d6f;
  font-size: 34px;
}

.chev i {
  font-size: 34px;
  line-height: 1;
  color: #5a5d6f;
}

.chev.step-number {
  font-family: var(--font-subhead);
  font-size: 40px;
  font-weight: 500;
}

.exit-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.exit-col h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  color: #474b5f;
  font-size: var(--subhead-size);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
}

.exit-col p {
  margin: 0;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
  max-width: 33ch;
}

.body-note {
  margin-top: 16px;
  font-size: var(--body-size);
  color: var(--body-color);
  line-height: var(--body-line);
  font-weight: 500;
}

.single-page .slide {
  border-top: 0;
}

@media (max-width: 980px) {
  :root {
    --subhead-size: 21px;
    --body-size: 16px;
    --body-line: 1.46;
  }

  .top-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 14px;
  }

  .nav-inner {
    padding: 10px 14px;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tag {
    font-size: 13px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    width: 100%;
    flex: 0 0 100%;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    transition: max-height 0.24s ease;
  }

  .site-header.nav-open .main-nav {
    max-height: 78vh;
    overflow: auto;
    border-top-color: #dfe2ee;
    margin-top: 2px;
    padding-top: 6px;
  }

  .menu-root {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-bottom: 8px;
  }

  .menu-root > li > a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 10px;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    margin: 0;
    padding: 0 0 6px 14px;
    display: none;
  }

  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 8px 10px;
    font-size: 15px;
  }

  .slide,
  .slide-inner,
  .hero-copy,
  .split-image .right-content,
  .traction-left {
    padding: 24px;
  }

  .banner {
    margin: -24px -24px 20px;
  }

  .hero,
  .split-image,
  .traction,
  .two-col,
  .sol-grid,
  .three-col,
  .bm-wrap,
  .funding-grid,
  .metric-row,
  .exit-cols,
  .chevrons {
    min-height: unset;
    margin: 0;
  }

  .pyramid {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-row img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }

  .contact-line {
    font-size: 15px;
    flex-wrap: wrap;
    gap: 8px;
  }

  #s09 .bm-wrap {
    gap: 16px;
  }

  #s09 .bm-cone {
    max-width: 380px;
    height: 500px;
    margin: 0 auto;
  }

  #s09 .bm-right {
    grid-template-rows: unset;
    margin-left: 0;
  }

  #s09 .bm-line {
    margin-left: 0 !important;
    padding: 10px 0;
  }

  #s09 .bm-line h4 {
    font-size: 20px;
  }

  #s09 .bm-line p {
    max-width: none;
  }

  #s15 .eq-row,
  #s15 .eq-row:nth-of-type(2),
  #s15 .eq-row:nth-of-type(3) {
    grid-template-columns: 1fr;
  }

  #s15 .eq-icon {
    min-height: 72px;
  }

  #s15 .eq-text {
    padding: 10px 0;
  }

  #s16 .chev {
    min-height: 58px;
  }

  #s16 .chev i {
    font-size: 26px;
  }

  #s16 .chev.step-number {
    font-size: 30px;
  }

  #s16 .exit-col p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    width: 100%;
  }

  .slide,
  .slide-inner,
  .hero-copy,
  .split-image .right-content,
  .traction-left {
    padding: 16px;
  }

}

/* Tablet: keep desktop-like header/menu, hamburger only for small phones */
@media (max-width: 980px) and (min-width: 861px) {
  .menu-toggle {
    display: none !important;
  }

  .main-nav {
    width: auto;
    flex: 1 1 auto;
    max-height: none;
    overflow: visible;
    border-top: 0;
    margin-left: auto;
    padding-top: 0;
  }

  .site-header.nav-open .main-nav {
    max-height: none;
    overflow: visible;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .menu-root {
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
  }

  .menu-root > li > a,
  .dropdown-toggle {
    width: auto;
    justify-content: flex-start;
    padding: 8px 9px;
    font-size: 14px;
  }

  .dropdown-menu {
    position: absolute;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    box-shadow: 0 14px 28px rgba(41, 52, 97, 0.12);
    border: 1px solid #d9ddec;
    border-radius: 10px;
    background: #ffffff;
    padding: 8px;
    display: block;
  }

  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Phone view: true mobile layout */
@media (max-width: 860px) {
  .top-contact {
    display: none;
  }

  .page {
    width: 100%;
  }

  .site-header {
    top: 0;
  }

  .nav-inner {
    padding: 10px 12px;
    justify-content: space-between;
    align-items: center;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 120;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    margin: 0;
    max-height: none;
    overflow: auto;
    padding: 72px 0 16px;
    border-top: 0;
    background: rgba(21, 27, 45, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 110;
  }

  .site-header.nav-open .main-nav {
    max-height: none;
    overflow: auto;
    border-top: 0;
    margin-top: 0;
    padding-top: 72px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-root {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #ffffff;
    border: 1px solid #d9ddec;
    border-radius: 0;
    box-shadow: 0 18px 34px rgba(35, 44, 78, 0.2);
    padding: 8px 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .menu-root > li > a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 10px;
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    margin: 0;
    padding: 0 0 6px 14px;
    display: none;
  }

  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 8px 10px;
    font-size: 15px;
  }

  .slide,
  .slide-inner,
  .hero-copy,
  .split-image .right-content,
  .traction-left {
    padding: 16px;
  }

  .slide {
    min-height: unset;
  }

  .slide-title {
    font-size: clamp(26px, 7vw, 34px);
    margin-bottom: 14px;
  }

  .slide-title.small,
  .slide-title.tiny {
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .hero-title {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.14;
  }

  .hero,
  .split-image,
  .traction,
  .two-col,
  .sol-grid,
  .three-col,
  .bm-wrap,
  .funding-grid,
  .metric-row,
  .exit-cols,
  .chevrons {
    grid-template-columns: 1fr;
    min-height: unset;
    margin: 0;
  }

  .hero {
    display: block;
  }

  .hero-media,
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    order: 1;
    min-height: 220px;
    max-height: 360px;
    overflow: hidden;
  }

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

  .hero-copy {
    order: 2;
    margin-top: 0;
    background: var(--slide-bg);
  }

  .split-image > :first-child {
    order: 1;
  }

  .split-image > :last-child {
    order: 2;
  }

  .traction > :first-child {
    order: 2;
  }

  .traction > :last-child {
    order: 1;
  }

  .funding-grid > .f-chart {
    order: 1;
  }

  .funding-grid > .funding-col:first-child {
    order: 2;
  }

  .funding-grid > .funding-col:last-child {
    order: 3;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-row img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  #s06 .product-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #s06 .product-row img {
    width: 100%;
    height: auto;
    max-width: 100%;
    order: 1;
  }

  #s06 .product-row > div {
    order: 2;
  }

  .contact-line {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  #s09 .bm-wrap {
    gap: 16px;
  }

  #s09 .bm-cone {
    max-width: 380px;
    height: 500px;
    margin: 0 auto;
  }

  #s09 .bm-right {
    grid-template-rows: unset;
    margin-left: 0;
  }

  #s09 .bm-line {
    margin-left: 0 !important;
    padding: 10px 0;
  }

  #s09 .bm-line h4 {
    font-size: 20px;
  }

  #s09 .bm-line p {
    max-width: none;
  }

  #s15 .eq-row,
  #s15 .eq-row:nth-of-type(2),
  #s15 .eq-row:nth-of-type(3) {
    grid-template-columns: 1fr;
  }

  #s15 .eq-icon {
    min-height: 72px;
  }

  #s15 .eq-text {
    padding: 10px 0;
  }

  #s16 .chev {
    min-height: 58px;
  }

  #s16 .chev i {
    font-size: 26px;
  }

  #s16 .chev.step-number {
    font-size: 30px;
  }

  #s16 .exit-col p {
    max-width: none;
  }
}
