.page-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fafaf7;
  color: var(--ink);
  font-family: var(--font-body);
}

.page-home a {
  text-decoration: none;
}

.page-home .home-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 48px 100px;
  align-items: center;
}

.page-home .home-hero-eyebrow,
.page-home .home-section-label,
.page-home .home-industry-eyebrow span,
.page-home .home-demo-eyebrow,
.page-home .home-proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
}

.page-home .home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(21, 169, 181, 0.08);
}

.page-home .home-hero-dot,
.page-home .home-hero-phone-dot,
.page-home .home-active-industry-prompt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--seafoam);
  animation: pageHomePulse 2s ease-in-out infinite;
}

@keyframes pageHomePulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.page-home .home-hero-title,
.page-home .home-section-title,
.page-home .home-demo-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.page-home .home-hero-title {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 1.02;
}

.page-home .home-hero-title em,
.page-home .home-section-title em,
.page-home .home-demo-title em {
  color: var(--seafoam);
  font-style: italic;
  font-weight: 500;
}

.page-home .home-hero-sub,
.page-home .home-section-sub,
.page-home .home-demo-sub {
  max-width: 760px;
  margin: 0 0 36px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.page-home .home-hero-sub {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
}

.page-home .home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.page-home .home-cta-primary,
.page-home .home-cta-secondary,
.page-home .home-pricing-cta,
.page-home .home-demo-submit {
  display: inline-flex;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.page-home .home-cta-primary {
  padding: 16px 32px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

.page-home .home-cta-primary:hover,
.page-home .home-demo-submit:hover {
  background: var(--seafoam);
  border-color: var(--seafoam);
  transform: translateY(-1px);
}

.page-home .home-cta-secondary {
  padding: 16px 32px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--navy);
}

.page-home .home-cta-secondary:hover {
  border-color: var(--navy);
  background: var(--ceramic-lite);
}

.page-home .home-hero-meta,
.page-home .home-pricing-min,
.page-home .home-pricing-onboarding {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.page-home .home-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.page-home .home-hero-phone {
  width: 100%;
  max-width: 340px;
  padding: 14px 10px 18px;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 24px 60px -12px rgba(0, 38, 58, 0.35);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.page-home .home-hero-phone:hover {
  transform: rotate(0deg);
}

.page-home .home-hero-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 10px;
}

.page-home .home-hero-phone-title {
  color: var(--seafoam);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-home .home-hero-phone-body {
  max-height: 600px;
  min-height: 360px;
  overflow-y: auto;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--white);
}

.page-home .hero-feed-item {
  display: flex;
  gap: 11px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--rule-soft);
}

.page-home .hero-feed-item:last-child {
  border-bottom: 0;
}

.page-home .hero-feed-milestone {
  margin: 4px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(21, 169, 181, 0.08), rgba(0, 38, 58, 0.04));
}

.page-home .hero-feed-avatar,
.page-home .hero-feed-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.page-home .hero-feed-avatar.js {
  background: linear-gradient(135deg, #15a9b5, #0b3b56);
}

.page-home .hero-feed-avatar.ar {
  background: linear-gradient(135deg, #15803d, #064e3b);
}

.page-home .hero-feed-icon {
  color: var(--seafoam);
  font-size: 18px;
}

.page-home .hero-feed-content {
  min-width: 0;
}

.page-home .hero-feed-meta,
.page-home .hero-feed-body,
.page-home .home-hero-phone-caption {
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
}

.page-home .hero-feed-meta strong,
.page-home .hero-feed-body strong {
  color: var(--navy);
}

.page-home .hero-feed-body {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12.5px;
}

.page-home .hero-feed-meta-mile {
  margin-bottom: 3px;
  color: var(--seafoam);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .hero-feed-reactions {
  display: flex;
  gap: 4px;
}

.page-home .hero-feed-reactions span {
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--ceramic-lite);
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 500;
}

.page-home .home-hero-phone-body .team-os-feed-item {
  display: flex;
  gap: 11px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--rule-soft);
}

.page-home .home-hero-phone-body .team-os-feed-item:last-child {
  border-bottom: 0;
}

.page-home .home-hero-phone-body .team-os-feed-item-milestone {
  margin: 4px 0;
  padding: 12px 14px;
  border-bottom: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(21, 169, 181, 0.08), rgba(0, 38, 58, 0.04));
}

.page-home .home-hero-phone-body .team-os-avatar,
.page-home .home-hero-phone-body .team-os-milestone-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.page-home .home-hero-phone-body .team-os-avatar-js {
  background: linear-gradient(135deg, #15a9b5, #0b3b56);
}

.page-home .home-hero-phone-body .team-os-avatar-cm {
  background: linear-gradient(135deg, #d97706, #92400e);
}

.page-home .home-hero-phone-body .team-os-avatar-mt {
  background: linear-gradient(135deg, #8b5cf6, #5b21b6);
}

.page-home .home-hero-phone-body .team-os-avatar-ar {
  background: linear-gradient(135deg, #15803d, #064e3b);
}

.page-home .home-hero-phone-body .team-os-milestone-icon {
  background: var(--seafoam);
  font-size: 13px;
}

.page-home .home-hero-phone-body .team-os-feed-content {
  flex: 1;
  min-width: 0;
}

.page-home .home-hero-phone-body .team-os-feed-meta,
.page-home .home-hero-phone-body .team-os-feed-meta-milestone {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
}

.page-home .home-hero-phone-body .team-os-feed-meta-milestone {
  color: var(--seafoam);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .home-hero-phone-body .team-os-feed-meta strong,
.page-home .home-hero-phone-body .team-os-feed-body strong,
.page-home .home-hero-phone-body .team-os-feed-comment strong {
  color: var(--navy);
  font-weight: 600;
}

.page-home .home-hero-phone-body .team-os-feed-body {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
}

.page-home .home-hero-phone-body .team-os-feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 6px;
}

.page-home .home-hero-phone-body .team-os-feed-tags span {
  padding: 3px 7px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--ceramic-lite);
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0;
}

.page-home .home-hero-phone-body .team-os-feed-tags .team-os-tag-shout {
  border-color: var(--seafoam);
  background: rgba(21, 169, 181, 0.12);
  color: var(--seafoam);
  font-weight: 600;
}

.page-home .home-hero-phone-body .team-os-feed-reactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.page-home .home-hero-phone-body .team-os-feed-reactions span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 12px;
  background: var(--ceramic-lite);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
}

.page-home .home-hero-phone-body .team-os-reaction::before {
  line-height: 1;
}

.page-home .home-hero-phone-body .team-os-reaction-fire::before {
  content: "🔥";
}

.page-home .home-hero-phone-body .team-os-reaction-strong::before {
  content: "💪";
}

.page-home .home-hero-phone-body .team-os-reaction-goat::before {
  content: "🐐";
}

.page-home .home-hero-phone-body .team-os-reaction-laugh::before {
  content: "😂";
}

.page-home .home-hero-phone-body .team-os-reaction-celebrate::before {
  content: "🎉";
}

.page-home .home-hero-phone-body .team-os-reaction-rocket::before {
  content: "🚀";
}

.page-home .home-hero-phone-body .team-os-reaction-hundred::before {
  content: "💯";
}

.page-home .home-hero-phone-body .team-os-reaction-thanks::before {
  content: "🙏";
}

.page-home .home-hero-phone-body .team-os-reaction-target::before {
  content: "🎯";
}

.page-home .home-hero-phone-body .team-os-feed-comment {
  margin-top: 4px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--ceramic-lite);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
}

.page-home .home-hero-phone-caption {
  max-width: 320px;
  text-align: center;
  font-style: italic;
}

.page-home .home-industry-picker,
.page-home .home-problem,
.page-home .home-pillars,
.page-home .home-tour,
.page-home .home-pricing,
.page-home .home-proof,
.page-home .home-demo {
  padding: 100px 48px;
}

.page-home .home-section-title {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.08;
}

.page-home .home-section-sub {
  margin-bottom: 48px;
}

.page-home .home-industry-picker {
  background: linear-gradient(180deg, var(--white) 0%, var(--ceramic-lite) 100%);
}

.page-home .home-industry-picker > *,
.page-home .home-problem > *,
.page-home .home-pillars > *,
.page-home .home-tour > *,
.page-home .home-pricing > * {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.page-home .home-industry-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .home-industry-eyebrow-rule {
  width: 28px;
  height: 2px;
  background: var(--seafoam);
}

.page-home .home-active-industry-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 14px 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: rgba(255, 255, 255, 0.88);
}

.page-home .home-active-industry-prompt-text {
  font-size: 14px;
  line-height: 1.45;
}

.page-home .home-verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .home-vertical-card,
.page-home .home-problem-card,
.page-home .home-pillar,
.page-home .home-tour-card,
.page-home .home-pricing-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--white);
}

.page-home .home-vertical-card {
  padding: 22px 20px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.page-home .home-vertical-card.available:hover {
  border-color: var(--seafoam);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.page-home .home-vertical-card.roadmap {
  border-style: dashed;
  background: var(--ceramic-lite);
  opacity: 0.78;
}

.page-home .home-vertical-flag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .flag-available {
  background: var(--seafoam);
  color: var(--white);
}

.page-home .flag-roadmap {
  border: 1px dashed var(--rule);
  color: var(--ink-muted);
}

.page-home .home-vertical-name,
.page-home .home-problem-headline,
.page-home .home-pillar-name,
.page-home .home-tour-name,
.page-home .home-pricing-tier {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
}

.page-home .home-vertical-name {
  margin-bottom: 6px;
  font-size: 19px;
}

.page-home .home-vertical-buyers,
.page-home .home-problem-body,
.page-home .home-pillar-body,
.page-home .home-tour-body,
.page-home .home-pricing-features li,
.page-home .home-pricing-custom-body,
.page-home .home-demo-alt {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .home-vertical-buyers {
  color: var(--ink-muted);
  font-size: 12px;
}

.page-home .home-verticals-note,
.page-home .home-verticals-note a {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.page-home .home-verticals-note a,
.page-home .home-pricing-custom-body a,
.page-home .home-demo-alt a {
  color: var(--seafoam);
  font-weight: 600;
}

.page-home .home-problem,
.page-home .home-pricing {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.page-home .home-problem-grid,
.page-home .home-pillars-grid,
.page-home .home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-home .home-problem-card {
  padding: 32px 28px;
  border-left: 3px solid var(--navy);
  background: var(--ceramic-lite);
}

.page-home .home-problem-num,
.page-home .home-pillar-label,
.page-home .home-tour-tag,
.page-home .home-pricing-custom-label {
  margin-bottom: 12px;
  color: var(--seafoam);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-home .home-problem-headline {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.page-home .home-pillar {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .home-pillar:hover {
  box-shadow: 0 12px 32px -8px rgba(0, 38, 58, 0.12);
  transform: translateY(-3px);
}

.page-home .home-pillar-featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.page-home .home-pillar-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: rgba(21, 169, 181, 0.12);
}

.page-home .home-pillar-featured .home-pillar-icon-wrap {
  background: rgba(111, 205, 212, 0.18);
}

.page-home .home-pillar-icon {
  color: var(--seafoam);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}

.page-home .home-pillar-name {
  margin-bottom: 18px;
  font-size: 30px;
}

.page-home .home-pillar-featured .home-pillar-name {
  color: var(--white);
}

.page-home .home-pillar-featured .home-pillar-body {
  color: rgba(255, 255, 255, 0.85);
}

.page-home .home-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-home .home-tour-card {
  display: flex;
  min-height: 218px;
  padding: 28px 26px;
  flex-direction: column;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-home .home-tour-card:hover {
  border-color: var(--navy);
  box-shadow: 0 10px 28px -8px rgba(0, 38, 58, 0.12);
  transform: translateY(-3px);
}

.page-home .home-tour-tag {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(21, 169, 181, 0.1);
}

.page-home .home-tour-name {
  margin-bottom: 10px;
  font-size: 22px;
}

.page-home .home-tour-arrow {
  margin-top: auto;
  color: var(--seafoam);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-home .home-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-radius: 12px;
}

.page-home .home-pricing-featured {
  border-color: var(--seafoam);
  border-width: 2px;
  box-shadow: 0 12px 36px -8px rgba(21, 169, 181, 0.16);
}

.page-home .home-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5px 14px;
  border-radius: 12px;
  background: var(--seafoam);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.page-home .home-pricing-tier {
  margin-bottom: 16px;
  font-size: 28px;
}

.page-home .home-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.page-home .home-pricing-amount {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.page-home .home-pricing-period {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}

.page-home .home-pricing-onboarding {
  margin-top: 6px;
  color: var(--seafoam);
  font-weight: 600;
  text-transform: uppercase;
}

.page-home .home-pricing-rule {
  height: 1px;
  margin: 22px 0;
  background: var(--rule);
}

.page-home .home-pricing-features {
  flex: 1;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.page-home .home-pricing-features li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 13.5px;
}

.page-home .home-pricing-features li::before {
  position: absolute;
  left: 0;
  color: var(--seafoam);
  font-weight: 700;
  content: ">";
}

.page-home .home-pricing-cta {
  margin-top: auto;
  padding: 14px 22px;
  border: 1px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  font-size: 14.5px;
}

.page-home .home-pricing-cta:hover {
  background: var(--navy);
  color: var(--white);
}

.page-home .home-pricing-cta-featured {
  border-color: var(--seafoam);
  background: var(--seafoam);
  color: var(--white);
}

.page-home .home-pricing-custom {
  margin-top: 36px;
  padding: 28px 32px;
  border-radius: 10px;
  background: var(--ceramic-lite);
  text-align: center;
}

.page-home .home-proof {
  max-width: none;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.page-home .home-proof-label {
  margin-bottom: 18px;
  color: var(--seafoam-soft);
}

.page-home .home-proof-headline {
  max-width: 880px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.page-home .home-proof-note {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

.page-home .home-demo {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 120px;
  text-align: center;
}

.page-home .home-demo-title {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.08;
}

.page-home .home-demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 18px;
}

.page-home .home-demo-input {
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
}

.page-home .home-demo-input:focus {
  border-color: var(--seafoam);
  box-shadow: 0 0 0 3px rgba(21, 169, 181, 0.1);
  outline: none;
}

.page-home .home-demo-submit {
  grid-column: 1 / -1;
  padding: 16px 28px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 1024px) {
  .page-home .home-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 32px;
  }

  .page-home .home-hero-title {
    font-size: 52px;
  }

  .page-home .home-problem-grid,
  .page-home .home-pillars-grid,
  .page-home .home-pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-home .home-hero,
  .page-home .home-industry-picker,
  .page-home .home-problem,
  .page-home .home-pillars,
  .page-home .home-tour,
  .page-home .home-pricing,
  .page-home .home-proof,
  .page-home .home-demo {
    padding: 64px 20px;
  }

  .page-home .home-hero-title {
    font-size: 38px;
  }

  .page-home .home-section-title,
  .page-home .home-demo-title {
    font-size: 32px;
  }

  .page-home .home-verticals-grid,
  .page-home .home-tour-grid,
  .page-home .home-demo-form {
    grid-template-columns: 1fr;
  }
}
