:root {
  --home-bg: #f5f6fb;
  --home-card: #ffffff;
  --home-text: #101828;
  --home-muted: #667085;
  --home-muted-2: #98a2b3;
  --home-accent: #2f3192;
  --home-accent-2: #5659d6;
  --home-soft: #eef0ff;
  --home-warm: #ff8a3d;
  --home-line: rgba(16, 24, 40, 0.1);
  --home-heading-font: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  --home-font: Inter, ui-sans-serif, system-ui, sans-serif;
}

.home-page {
  color: var(--home-text);
  font-family: var(--home-font);
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 49, 146, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--home-bg) 100%);
}

.home-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  padding: clamp(42px, 5vw, 68px) 0 clamp(54px, 6vw, 82px);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.home-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(47, 49, 146, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-left h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: clamp(44px, 5.3vw, 70px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.accent-word {
  color: var(--home-accent-2);
  display: inline-block;
  padding-top: 0.08em;
}

.home-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
  font-weight: 500;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.home-button.primary {
  background: linear-gradient(180deg, #5759ee 0%, var(--home-accent) 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(47, 49, 146, 0.24);
}

.home-button.secondary {
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--home-text);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.055);
}

.home-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.home-proof-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 650;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.home-feature-strip article {
  min-height: 190px;
  padding: 24px 22px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.045);
}

.home-feature-strip article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--home-soft);
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 900;
}

.home-feature-strip article strong {
  display: block;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: 20px;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.home-feature-strip article p {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 14.5px;
  line-height: 1.48;
  font-weight: 500;
}

/* Right signup card */

.home-signup-card {
  position: sticky;
  top: 98px;
  width: 100%;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(47, 49, 146, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 28px 90px rgba(16, 24, 40, 0.13);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.signup-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.signup-card-topline span {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-warm));
}

.signup-card-topline p {
  margin: 0;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-card-header {
  margin-bottom: 26px;
}

.signup-card-header h2 {
  margin: 0 0 10px;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: 42px;
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.signup-card-header p {
  max-width: 340px;
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.home-signup-form {
  display: grid;
  gap: 14px;
}

.home-signup-form label {
  display: grid;
  gap: 8px;
}

.home-signup-form label span {
  color: var(--home-text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-signup-form input,
.home-signup-form select,
.home-signup-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--home-text);
  outline: none;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
}

.home-signup-form input,
.home-signup-form select {
  height: 54px;
  padding: 0 16px;
}

.home-signup-form textarea {
  min-height: 104px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.5;
}

.home-submit-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #4749c8 0%, var(--home-accent) 100%);
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    0 20px 42px rgba(47, 49, 146, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.home-form-message {
  min-height: 20px;
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.home-signin-note {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.home-signin-note a {
  color: var(--home-accent);
  font-weight: 900;
  text-decoration: none;
}

/* Sections */

.home-section,
.home-demo-section,
.home-parent-section {
  padding: clamp(52px, 7vw, 90px) 0;
}

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.home-section-heading p,
.demo-copy p,
.parent-panel p {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(47, 49, 146, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-section-heading h2,
.demo-copy h2,
.parent-panel h2 {
  margin: 18px 0 0;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.home-section-heading span,
.demo-copy span,
.parent-panel span {
  display: block;
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

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

.home-process-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.055);
}

.home-process-grid article span {
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 900;
}

.home-process-grid article strong {
  display: block;
  margin-top: 52px;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: 22px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.home-process-grid article p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

/* Demo panel */

.demo-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(47, 49, 146, 0.12), transparent 40%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
}

.demo-copy span {
  margin-left: 0;
}

.demo-preview-card {
  padding: 28px;
  border: 1px solid rgba(47, 49, 146, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 49, 146, 0.16), transparent 40%),
    linear-gradient(180deg, #ffffff, #f9faff);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
}

.demo-preview-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.demo-preview-top span,
.demo-progress-card span {
  display: block;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.demo-preview-top strong {
  display: block;
  margin-top: 8px;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.demo-preview-top small {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-text);
  font-size: 12px;
  font-weight: 800;
}

.demo-progress-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 26px;
  background: #f7f8fc;
}

.demo-progress-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-progress-card strong {
  color: var(--home-accent);
  font-size: 32px;
  letter-spacing: -0.05em;
}

.demo-track {
  height: 9px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.08);
}

.demo-track i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
}

.demo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.demo-chip-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--home-soft);
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 800;
}

/* Parent panel */

.parent-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(47, 49, 146, 0.12), transparent 40%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
}

.parent-panel div {
  max-width: 720px;
}

.parent-panel span {
  margin-left: 0;
}

@media (max-width: 1080px) {
  .home-hero-grid,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .home-signup-card {
    position: relative;
    top: auto;
    max-width: 560px;
  }

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

  .parent-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .home-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    padding-top: 34px;
  }

  .home-hero-left h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

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

  .home-button {
    width: 100%;
  }

  .home-feature-strip,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-signup-card,
  .demo-panel,
  .demo-preview-card,
  .parent-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .demo-panel {
    gap: 26px;
  }
}

/* Gold standard signup card polish */

.home-signup-card {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border: 1px solid rgba(47, 49, 146, 0.13);
  border-radius: 40px;
  background:
    radial-gradient(circle at 96% 0%, rgba(86, 89, 214, 0.16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(47, 49, 146, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.94));
  box-shadow:
    0 34px 90px rgba(16, 24, 40, 0.14),
    0 12px 32px rgba(47, 49, 146, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.home-signup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8), transparent 28%);
}

.home-signup-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(86, 89, 214, 0.10);
  filter: blur(8px);
  pointer-events: none;
}

.home-signup-card > * {
  position: relative;
  z-index: 1;
}

.signup-card-topline {
  margin-bottom: 30px;
}

.signup-card-topline span {
  width: 54px;
  height: 9px;
  box-shadow: 0 8px 20px rgba(255, 138, 61, 0.18);
}

.signup-card-topline p {
  color: var(--home-accent);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.signup-card-header h2 {
  font-size: 46px;
  letter-spacing: -0.07em;
}

.signup-card-header p {
  max-width: 360px;
  font-size: 15.5px;
  line-height: 1.55;
}

.home-signup-form {
  gap: 15px;
}

.home-signup-form input,
.home-signup-form select,
.home-signup-form textarea {
  border-color: rgba(16, 24, 40, 0.105);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 8px 20px rgba(16, 24, 40, 0.025);
}

.home-signup-form input:focus,
.home-signup-form select:focus,
.home-signup-form textarea:focus {
  border-color: rgba(86, 89, 214, 0.48);
  box-shadow:
    0 0 0 5px rgba(86, 89, 214, 0.09),
    0 10px 24px rgba(16, 24, 40, 0.045);
}

.home-submit-button {
  margin-top: 4px;
  min-height: 60px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.28), transparent 36%),
    linear-gradient(180deg, #5b5eff 0%, #2f3192 100%);
  box-shadow:
    0 22px 46px rgba(47, 49, 146, 0.32),
    0 8px 18px rgba(47, 49, 146, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.home-submit-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.04);
  box-shadow:
    0 28px 56px rgba(47, 49, 146, 0.36),
    0 10px 22px rgba(47, 49, 146, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.home-signin-note {
  margin-top: 26px;
  padding-top: 24px;
}

/* Premium How Compass Works section */

.premium-process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0 clamp(58px, 7vw, 92px);
  background:
    radial-gradient(circle at 8% 45%, rgba(86, 89, 214, 0.10), transparent 22%),
    radial-gradient(circle at 92% 38%, rgba(255, 138, 61, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8ff 48%, #ffffff 100%);
}

.process-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
}

.process-heading h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.process-art {
  position: absolute;
  left: 3.4%;
  top: 24%;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 18px 34px;
  opacity: 0.48;
  pointer-events: none;
}

.process-art span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(86, 89, 214, 0.34);
}

.process-plane {
  position: absolute;
  right: 5%;
  top: 18%;
  width: clamp(120px, 18vw, 220px);
  opacity: 0.58;
  pointer-events: none;
}

.process-plane svg {
  width: 100%;
  overflow: visible;
}

.process-plane path:first-child {
  fill: none;
  stroke: rgba(86, 89, 214, 0.28);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  stroke-linecap: round;
}

.process-plane path:last-child {
  fill: rgba(86, 89, 214, 0.46);
}

.process-path {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52px 1fr 52px 1fr 52px 1fr 52px;
  align-items: center;
  width: min(900px, 88%);
  margin: 0 auto -6px;
}

.process-path span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(86, 89, 214, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-accent);
  font-size: 18px;
  font-weight: 900;
  box-shadow:
    0 16px 38px rgba(16, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process-path i {
  height: 2px;
  background-image: linear-gradient(90deg, rgba(86, 89, 214, 0.22) 40%, transparent 0);
  background-size: 12px 2px;
  background-repeat: repeat-x;
}

.premium-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.premium-process-grid article {
  min-height: 320px;
  padding: 34px 28px;
  border: 1px solid rgba(16, 24, 40, 0.075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 89, 214, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 24px 70px rgba(16, 24, 40, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: center;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 42%),
    linear-gradient(180deg, #f0f2ff, #e6e8ff);
  color: var(--home-accent);
  font-size: 34px;
  font-weight: 900;
  box-shadow:
    0 18px 44px rgba(47, 49, 146, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.premium-process-grid strong {
  display: block;
  color: var(--home-accent);
  font-family: var(--home-heading-font);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.premium-process-grid em {
  display: block;
  width: 32px;
  height: 2px;
  margin: 16px auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-accent-2));
}

.premium-process-grid h3 {
  max-width: 220px;
  margin: 0 auto;
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.premium-process-grid p {
  max-width: 230px;
  margin: 14px auto 0;
  color: var(--home-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
}

.process-trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(47, 49, 146, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 20px 55px rgba(16, 24, 40, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.process-trust-bar article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px 14px;
  align-items: center;
  padding: 12px 18px;
}

.process-trust-bar article:not(:last-child) {
  border-right: 1px solid rgba(16, 24, 40, 0.08);
}

.process-trust-bar div {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--home-soft);
  color: var(--home-accent);
  font-size: 20px;
  font-weight: 900;
}

.process-trust-bar strong {
  color: var(--home-text);
  font-family: var(--home-heading-font);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.process-trust-bar p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13.5px;
  line-height: 1.42;
  font-weight: 500;
}

@media (max-width: 1080px) {
  .premium-process-grid,
  .process-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-path {
    display: none;
  }

  .process-trust-bar article:nth-child(2) {
    border-right: 0;
  }

  .process-trust-bar article:nth-child(1),
  .process-trust-bar article:nth-child(2) {
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  }
}

@media (max-width: 760px) {
  .process-plane,
  .process-art {
    display: none;
  }

  .premium-process-section {
    padding: 54px 0;
  }

  .premium-process-grid,
  .process-trust-bar {
    grid-template-columns: 1fr;
  }

  .premium-process-grid article {
    min-height: auto;
  }

  .process-trust-bar article,
  .process-trust-bar article:not(:last-child),
  .process-trust-bar article:nth-child(1),
  .process-trust-bar article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  }

  .process-trust-bar article:last-child {
    border-bottom: 0;
  }
}

/* Premium hero feature cards */

.home-feature-strip {
  gap: 18px;
  margin-top: clamp(34px, 4.6vw, 52px);
}

.home-feature-strip article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px 26px;
  border: 1px solid rgba(47, 49, 146, 0.10);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(86, 89, 214, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.92));
  box-shadow:
    0 24px 60px rgba(16, 24, 40, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-feature-strip article::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: rgba(86, 89, 214, 0.08);
}

.home-feature-strip article span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.95), transparent 46%),
    linear-gradient(180deg, #f0f2ff, #e6e8ff);
  box-shadow:
    0 14px 34px rgba(47, 49, 146, 0.11),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.home-feature-strip article strong {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1.04;
}

.home-feature-strip article p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.5;
}

.home-feature-strip article:nth-child(1)::after {
  content: "✦";
}

.home-feature-strip article:nth-child(2)::after {
  content: "▤";
}

.home-feature-strip article:nth-child(3)::after {
  content: "★";
}

.home-feature-strip article::after {
  position: absolute;
  right: 24px;
  top: 26px;
  color: rgba(86, 89, 214, 0.26);
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .home-feature-strip article {
    min-height: auto;
  }

  .home-feature-strip article span {
    margin-bottom: 30px;
  }
}

/* Final mobile homepage fixes */

@media (max-width: 760px) {
  .home-page {
    overflow-x: hidden;
  }

  .home-shell {
    width: min(100% - 28px, 1180px);
  }

  .home-hero {
    padding: 28px 0 44px;
  }

  .home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-hero-left h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.5vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .accent-word {
    padding-top: 0;
  }

  .home-lede {
    font-size: 16px;
    line-height: 1.55;
  }

  .home-actions {
    margin-top: 24px;
  }

  .home-button {
    width: 100%;
    min-height: 54px;
  }

  .home-proof-row {
    gap: 8px;
  }

  .home-proof-row span {
    font-size: 12px;
  }

  .home-feature-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .home-feature-strip article {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .home-feature-strip article span {
    width: 40px;
    height: 40px;
    margin-bottom: 26px;
  }

  .home-signup-card {
    position: relative;
    top: auto;
    max-width: none;
    padding: 24px;
    border-radius: 32px;
  }

  .signup-card-header h2 {
    font-size: 38px;
  }

  .home-signup-form input,
  .home-signup-form select {
    height: 52px;
  }

  .home-signup-form textarea {
    min-height: 96px;
  }

  .premium-process-section {
    padding: 48px 0 56px;
  }

  .process-heading {
    margin-bottom: 28px;
  }

  .process-heading h2 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .process-heading span {
    font-size: 16px;
    line-height: 1.55;
  }

  .premium-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-process-grid article {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    border-radius: 24px;
    font-size: 28px;
  }

  .process-trust-bar {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 28px;
  }
}