/* ============================================================
   PDX AI Systems — Components (cards, steps, forms, footer, etc)
   ============================================================ */

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d8dbe3;
}

.card--dark {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--text-on-dark);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-ink);
  margin-bottom: 20px;
}

.card--dark .card__icon {
  background: rgba(237, 137, 54, 0.14);
  color: var(--orange-light);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

.card--dark p {
  color: var(--text-on-dark-muted);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--orange-ink);
}

.card--dark .card__link {
  color: var(--orange-light);
}

.card__link .arrow {
  transition: transform 0.2s ease;
}

.card__link:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Engagement models ---------- */
.engage__meta {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-ink);
  background: var(--orange-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.engage__own {
  margin-top: 16px;
  padding: 11px 13px;
  background: var(--paper);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
}

/* ---------- Feature list ---------- */
.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-muted);
}

.feature-list li .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-ink);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.feature-list li .check svg {
  width: 13px;
  height: 13px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.section--dark .step {
  background: var(--ink-2);
  border-color: var(--line-dark);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  background: var(--orange);
  color: #fff;
  margin-bottom: 16px;
  box-shadow: var(--shadow-orange);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.section--dark .step p {
  color: var(--text-on-dark-muted);
}

/* ---------- Testimonials ---------- */
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote__text {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 22px;
  flex: 1;
}

.section--dark .quote__text {
  color: var(--text-on-dark);
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.quote__name {
  font-weight: 600;
  font-size: 14.5px;
}

.quote__role {
  font-size: 13px;
  color: var(--text-muted);
}

.section--dark .quote__role {
  color: var(--text-on-dark-muted);
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}

.split__media .glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 137, 54, 0.5), transparent 70%);
  filter: blur(20px);
  top: -60px;
  right: -40px;
}

.split__media .float-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.split__media .float-card b {
  font-size: 22px;
  display: block;
  line-height: 1.2;
}

.split__media .float-card span {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

/* ---------- Metrics ---------- */
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-ink);
  font-size: 14px;
  font-weight: 600;
}

.metric svg {
  width: 16px;
  height: 16px;
}

/* ---------- Positioning / vs ---------- */
.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.vs__col {
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.vs__col--them {
  background: var(--paper);
}

.vs__col--us {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(237, 137, 54, 0.2), var(--shadow);
  background: linear-gradient(180deg, var(--orange-soft), var(--white));
}

.vs__head {
  margin-bottom: 22px;
}

.vs__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
}

.vs__col--them .vs__tag {
  background: var(--paper-2);
  color: var(--text-muted);
}

.vs__col--us .vs__tag {
  background: var(--orange);
  color: #fff;
}

.vs__list {
  display: grid;
  gap: 15px;
}

.vs__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-dark);
  line-height: 1.45;
}

.vs__col--them .vs__list li {
  color: var(--text-muted);
}

.vs__list li .ico {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.vs__col--them .vs__list li .ico {
  background: #eceef2;
  color: #9aa1ad;
}

.vs__col--us .vs__list li .ico {
  background: var(--orange);
  color: #fff;
}

.vs__list li .ico svg {
  width: 14px;
  height: 14px;
}

/* ---------- Case study attribution ---------- */
.case-by {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-muted);
}

.case-by b {
  color: var(--text-dark);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: radial-gradient(700px 300px at 50% -20%, rgba(237, 137, 54, 0.35), transparent 60%),
    var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.cta-band .hero__actions {
  justify-content: center;
}

/* ---------- Pricing ---------- */
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.is-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(237, 137, 54, 0.25), var(--shadow);
  position: relative;
}

.price-card .tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.price-card .sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-card .price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.price-card .price small {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-card .dur {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-card .feature-list {
  flex: 1;
  margin-bottom: 26px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item.is-open {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
}

.faq__q .ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-ink);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq__item.is-open .faq__q .ico {
  transform: rotate(45deg);
  background: var(--orange);
  color: #fff;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__a-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 15.5px;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 18px;
}

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

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.field label .req {
  color: var(--orange-ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(237, 137, 54, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.form__note {
  font-size: 13.5px;
  color: var(--text-muted);
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
}

.form-status.is-ok {
  display: flex;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.is-err {
  display: flex;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ---------- Info cards (contact) ---------- */
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.info-card .ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange-ink);
}

.info-card .ic svg {
  width: 22px;
  height: 22px;
}

.info-card b {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.info-card span,
.info-card a {
  font-size: 14.5px;
  color: var(--text-muted);
}

.info-card a:hover {
  color: var(--orange-ink);
}

a.info-card--link {
  display: flex;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.info-card--link:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

a.info-card--link .ic {
  transition: background 0.2s ease, color 0.2s ease;
}

a.info-card--link:hover .ic {
  background: var(--orange);
  color: #fff;
}

a.info-card--link:hover b {
  color: var(--orange-ink);
}

.info-card--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.info-card--cta b {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.info-card--cta span {
  color: var(--text-on-dark-muted);
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-card--cta .arrow {
  transition: transform 0.2s ease;
}

.info-card--cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.info-card--cta:hover b,
.info-card--cta:hover span {
  color: #fff;
}

.info-card--cta:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Contact social ---------- */
.contact-social {
  margin-top: 44px;
  text-align: center;
}

.contact-social__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.contact-social__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.contact-social__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

.contact-social__links a svg {
  width: 18px;
  height: 18px;
  color: var(--orange-ink);
}

.contact-social__links a:hover {
  border-color: var(--orange);
  color: var(--orange-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-social__links a:hover svg {
  color: var(--orange);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer .brand {
  margin-bottom: 18px;
}

.footer__blurb {
  font-size: 14.5px;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  color: var(--text-on-dark-muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer__links a {
  display: block;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text-on-dark-muted);
  transition: color 0.15s ease;
}

.footer__links a:hover {
  color: var(--orange-light);
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text-on-dark-muted);
}

.footer__contact a svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex: none;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
}

.footer__bottom .loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom .loc svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

/* ---------- Newsletter ---------- */
.newsletter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 220px;
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--text-dark);
}

.newsletter input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(237, 137, 54, 0.14);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Misc ---------- */
.divider-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.section--dark .pill {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-on-dark);
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: center;
}

.founder__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
}

.founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: rgba(11, 13, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.founder__badge b {
  font-size: 16px;
  display: block;
  line-height: 1.2;
}

.founder__badge span {
  font-size: 12.5px;
  color: var(--text-on-dark-muted);
}

.founder__role {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange-ink);
  margin-bottom: 18px;
}

/* ---------- Trusted by ---------- */
.trusted {
  text-align: center;
  margin-bottom: 52px;
}

.trusted__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.trusted__names {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 44px;
}

.trusted__names span {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.trusted__names span:hover {
  opacity: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .steps--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .nav__links,
  .nav__cta .btn {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-dark);
    padding: 16px 24px 24px;
    gap: 4px;
  }

  .nav.is-open .nav__links .nav__link {
    padding: 13px 14px;
    font-size: 16px;
  }

  .nav.is-open .nav__links .nav__link.is-active::after {
    display: none;
  }

  .nav.is-open .nav__links .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    padding: 4px 0 8px 14px;
  }

  .nav.is-open .nav__links .has-dropdown .dropdown::before {
    display: none;
  }

  .nav.is-open .nav__links .dropdown a {
    color: var(--text-on-dark-muted);
    font-weight: 500;
  }

  .nav.is-open .nav__links .dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .nav.is-open .nav__links .dropdown a small {
    color: var(--text-on-dark-muted);
  }

  .nav__mobile-cta {
    display: flex;
    padding: 14px 24px 20px;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav__mobile-cta .btn {
    width: 100%;
  }

  .nav.is-open .nav__mobile-cta {
    display: none;
  }
}

@media (min-width: 861px) {
  .nav__mobile-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .founder {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .founder__media {
    max-width: 440px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 44px;
  }

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

  .cta-band {
    padding: 48px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__inner {
    padding: 76px 0 68px;
  }

  .page-hero {
    padding: 64px 0 56px;
  }
}
