:root {
  --page-bg: #f8f2ff;
  --ink: #090b38;
  --muted: #5a5372;
  --purple: #6732d8;
  --deep-purple: #2e176d;
  --orange: #ff8a22;
  --line: rgba(103, 50, 216, .2);
  --shadow: rgba(9, 11, 56, .16);
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
  padding: 14px 18px;
  border: 3px solid var(--purple);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(9, 11, 56, .09);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  grid-template-columns: 54px auto;
  gap: 10px;
  align-items: center;
  min-width: 260px;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--purple);
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 900;
  line-height: .95;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.primary-nav,
.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-nav {
  justify-content: center;
  flex-wrap: wrap;
  color: #342654;
  font-size: .9rem;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding: 9px 7px;
  transition: color .18s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 7px;
  bottom: 3px;
  left: 7px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transition: transform .18s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--purple);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--purple);
  border-radius: 7px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    color .18s ease,
    transform .18s ease;
}

.button.solid {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(103, 50, 216, .22);
}

.button.ghost {
  background: var(--white);
  color: var(--deep-purple);
}

.button.large {
  min-height: 50px;
  padding-inline: 24px;
}

.button.orange {
  border-color: var(--orange);
  background: var(--orange);
  color: #2b1300;
}

.light-button {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

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

.button.solid:hover,
.button.solid:focus-visible {
  border-color: #4d22ad;
  background: #4d22ad;
  box-shadow: 0 16px 30px rgba(103, 50, 216, .3);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: #f3ecff;
  box-shadow: 0 12px 22px rgba(103, 50, 216, .14);
}

.button.orange:hover,
.button.orange:focus-visible {
  border-color: #ffa04a;
  background: #ffa04a;
  box-shadow: 0 16px 30px rgba(255, 138, 34, .24);
}

.light-button:hover,
.light-button:focus-visible {
  border-color: rgba(255, 255, 255, .95);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 138, 34, .75);
  outline-offset: 3px;
}

.hero,
.quote-panel,
.carrier-strip,
.feature-grid,
.why-band,
.guide-band,
.faq-band,
.workflow-band,
.about-band,
.contact-band {
  width: min(100% - 36px, 1320px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, .96fr) minmax(420px, 1.04fr);
  gap: 20px;
  min-height: 600px;
  margin-top: 18px;
  overflow: hidden;
  border: 3px solid var(--purple);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(105deg, #fff 0%, #fff 44%, rgba(255, 255, 255, .65) 60%, rgba(255, 255, 255, .08) 100%);
  box-shadow: 0 24px 70px var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 54px) 0 clamp(26px, 5vw, 54px) clamp(28px, 5vw, 52px);
}

.badge,
.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 7px;
  background: #eadfff;
  color: var(--deep-purple);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--deep-purple);
  font-family: "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: .96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 440px;
  margin: 26px 0 0;
  color: #352855;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quick-points li {
  display: grid;
  grid-template-columns: 58px auto;
  gap: 13px;
  align-items: center;
  min-width: 180px;
  color: var(--deep-purple);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.quick-points svg {
  width: 56px;
  height: 44px;
  fill: none;
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.hero-art {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-art img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0 16%, rgba(255, 255, 255, .62) 24%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .28) 28%, rgba(255, 255, 255, 0) 62%);
  content: "";
}

.quote-panel {
  padding: clamp(20px, 2vw, 24px);
  border-inline: 3px solid var(--purple);
  background: #090b38;
  color: var(--white);
}

.section-heading {
  max-width: 740px;
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light .eyebrow {
  border: 2px solid rgba(255, 138, 34, .9);
  background: rgba(255, 255, 255, .96);
  color: var(--deep-purple);
  box-shadow: 0 10px 22px rgba(9, 11, 56, .18);
}

.section-heading .eyebrow,
.about-band .eyebrow,
.contact-band .eyebrow {
  margin-bottom: 12px;
}

.contact-band .section-heading.light .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  box-shadow: none;
  letter-spacing: .08em;
}

.section-heading h2,
.about-band h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.about-band p,
.contact-band p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.section-heading.light p,
.contact-band p {
  color: rgba(255, 255, 255, .82);
}

.quote-frame {
  overflow: hidden;
  min-height: 680px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  background: #f8f2ff;
}

.quote-frame iframe {
  display: block;
  width: 100%;
  min-width: 1120px;
  min-height: 680px;
  border: 0;
}

.carrier-strip {
  padding: 28px 34px 30px;
  border: 3px solid var(--purple);
  border-top: 0;
  background: var(--white);
}

.carrier-card {
  max-width: 1260px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(103, 50, 216, .18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(9, 11, 56, .08);
  transition: box-shadow .18s ease, transform .18s ease;
}

.carrier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(9, 11, 56, .12);
}

.carrier-card p {
  margin: 0 0 20px;
  color: var(--deep-purple);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
}

.carrier-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: stretch;
}

.carrier-list span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(103, 50, 216, .18);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
  color: var(--deep-purple);
  font-size: clamp(.82rem, 1vw, .98rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.carrier-list img {
  display: block;
  width: 100%;
  max-width: 128px;
  max-height: 48px;
  object-fit: contain;
}

.carrier-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 34, .75);
  box-shadow: 0 12px 24px rgba(9, 11, 56, .08);
}

.carrier-list .more-carriers {
  border-color: rgba(255, 138, 34, .55);
  background: #fff7ef;
  color: #4e2300;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 48px 34px;
  border-inline: 3px solid var(--purple);
  background: var(--white);
}

.feature-grid .section-heading,
.why-band .section-heading {
  grid-column: 1 / -1;
}

.feature-card,
.capability-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fdfbff;
  box-shadow: 0 8px 20px rgba(9, 11, 56, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.feature-card:hover,
.capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 50, 216, .32);
  box-shadow: 0 18px 34px rgba(9, 11, 56, .1);
}

.feature-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-weight: 900;
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-band {
  padding: 54px 34px;
  border-inline: 3px solid var(--purple);
  background: #fbf7ff;
}

.faq-band {
  padding: 54px 34px;
  border-inline: 3px solid var(--purple);
  background: var(--white);
}

.guide-band {
  padding: 54px 34px;
  border-inline: 3px solid var(--purple);
  background: #fbf7ff;
}

.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.guide-link-grid a {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 11, 56, .05);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.guide-link-grid a:hover,
.guide-link-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 34, .75);
  box-shadow: 0 18px 34px rgba(9, 11, 56, .1);
}

.guide-link-grid span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 6px;
  background: #eadfff;
  color: var(--deep-purple);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-link-grid strong {
  color: var(--ink);
  font-size: 1.3rem;
}

.guide-link-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.guide-page {
  width: min(100% - 36px, 1040px);
  margin: 18px auto 0;
  border: 3px solid var(--purple);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 70px var(--shadow);
}

.guide-hero {
  padding: clamp(34px, 6vw, 64px);
  background: linear-gradient(135deg, #fff 0%, #f8f2ff 100%);
}

.guide-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--deep-purple);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.guide-hero p {
  max-width: 760px;
  color: #352855;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.6;
}

.guide-content {
  display: grid;
  gap: 30px;
  padding: clamp(28px, 5vw, 54px);
}

.guide-content article {
  display: grid;
  gap: 12px;
}

.guide-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.1;
}

.guide-content h3 {
  margin: 0;
  font-size: 1.18rem;
}

.guide-content p,
.guide-content li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.guide-content ul,
.guide-content ol {
  margin: 0;
  padding-left: 22px;
}

.guide-callout {
  padding: 22px;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: #fff7ef;
}

.guide-sources {
  font-size: .94rem;
}

.guide-sources a {
  color: var(--purple);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fdfbff;
  box-shadow: 0 8px 20px rgba(9, 11, 56, .04);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.capability-card {
  display: grid;
  gap: 12px;
  min-height: 218px;
  background: var(--white);
}

.mini-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(103, 50, 216, .22);
  border-radius: 8px;
  background: #eee4ff;
  color: var(--purple);
  font-size: 1rem;
  font-weight: 900;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.capability-card:hover .mini-icon {
  border-color: rgba(255, 138, 34, .75);
  background: #fff2e6;
  color: #4e2300;
}

.capability-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workflow-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
  padding: 54px 34px;
  border-inline: 3px solid var(--purple);
  background: var(--ink);
  color: var(--white);
}

.workflow-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .75);
  font-size: 1.06rem;
  line-height: 1.6;
}

.workflow-copy .eyebrow {
  background: rgba(255, 138, 34, .16);
  color: #ffd6b5;
}

.workflow-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.workflow-steps article:hover {
  transform: translateX(3px);
  border-color: rgba(255, 138, 34, .7);
  background: rgba(255, 255, 255, .1);
}

.workflow-steps span {
  color: #ffd6b5;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.45;
}

.about-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 54px 34px;
  border-inline: 3px solid var(--purple);
  background: var(--white);
}

.visual-panel {
  overflow: hidden;
  border: 1px solid rgba(103, 50, 216, .18);
  border-radius: 14px;
  background: #fbf7ff;
  box-shadow: 0 18px 44px rgba(9, 11, 56, .08);
}

.visual-panel img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
}

.contact-band {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 46px 34px;
  border: 3px solid var(--purple);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(9, 11, 56, .14);
}

.contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-modal {
  width: min(94vw, 720px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(9, 11, 56, .35);
}

.contact-modal::backdrop {
  background: rgba(9, 11, 56, .58);
  backdrop-filter: blur(4px);
}

.contact-card {
  position: relative;
  padding: 30px;
  background: var(--white);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(103, 50, 216, .22);
  border-radius: 50%;
  background: #fbf7ff;
  color: var(--deep-purple);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: rotate(8deg);
  border-color: rgba(255, 138, 34, .7);
  background: #fff2e6;
}

.modal-eyebrow {
  margin-bottom: 10px;
}

.contact-card h2 {
  margin: 0;
  font-size: 2rem;
}

.modal-copy {
  color: var(--muted);
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--deep-purple);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(103, 50, 216, .26);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.modal-email {
  color: var(--purple);
  font-weight: 900;
}

.form-status {
  min-height: 1.3em;
  margin: 14px 0 0;
  color: var(--deep-purple);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .primary-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero,
  .about-band,
  .workflow-band {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: clamp(28px, 5vw, 52px);
  }

  .hero-art {
    min-height: 440px;
  }

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

  .feature-grid,
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 740px) {
  .site-header,
  .hero,
  .quote-panel,
  .carrier-strip,
  .feature-grid,
  .why-band,
  .guide-band,
  .faq-band,
  .workflow-band,
  .about-band,
  .contact-band {
    width: min(100% - 22px, 1320px);
  }

  .brand {
    min-width: 0;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px 12px;
    width: 100%;
  }

  .primary-nav a {
    padding: 3px 0;
  }

  .header-actions,
  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .quote-frame {
    overflow-x: auto;
  }

  .carrier-list,
  .feature-grid,
  .capability-grid,
  .guide-link-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps article {
    grid-template-columns: 1fr;
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Hand-built polish pass */
body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82) 0, rgba(248, 242, 255, .96) 420px, #f8f2ff 100%),
    repeating-linear-gradient(135deg, rgba(103, 50, 216, .045) 0 1px, transparent 1px 18px);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 138, 34, .14), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(103, 50, 216, .13), transparent 25%),
    linear-gradient(90deg, rgba(46, 23, 109, .035), transparent 28%, transparent 72%, rgba(46, 23, 109, .035));
  content: "";
}

.site-header {
  border-width: 2px;
  border-radius: 0 0 14px 14px;
}

.hero,
.quote-panel,
.carrier-strip,
.momentum-strip,
.feature-grid,
.why-band,
.guide-band,
.faq-band,
.workflow-band,
.about-band,
.contact-band {
  border-inline-width: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  gap: 0;
  border-width: 2px;
  border-radius: 22px;
  background:
    linear-gradient(104deg, #fff 0%, #fff 46%, rgba(255, 255, 255, .74) 61%, rgba(255, 255, 255, .16) 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 18px 42% 18px 18px;
  border: 1px solid rgba(103, 50, 216, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(248, 242, 255, .74), rgba(255, 255, 255, .18));
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-microcopy span {
  padding: 8px 10px;
  border: 1px solid rgba(103, 50, 216, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #463763;
  font-size: .82rem;
  font-weight: 900;
}

.hero-art::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 32%;
  background: linear-gradient(135deg, transparent 0 50%, rgba(255, 138, 34, .78) 50% 54%, transparent 54%);
  content: "";
  opacity: .62;
  pointer-events: none;
}

.hero-art img {
  transform: scale(1.08);
  transform-origin: 74% 58%;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 220px;
  padding: 13px 15px;
  border: 1px solid rgba(103, 50, 216, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(9, 11, 56, .14);
  backdrop-filter: blur(10px);
}

.floating-note span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-note strong {
  color: var(--deep-purple);
  font-size: .96rem;
  line-height: 1.2;
}

.note-rate {
  top: 26px;
  right: 34px;
}

.note-support {
  right: 34px;
  bottom: 34px;
}

.quote-panel {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(46, 23, 109, .96), rgba(103, 50, 216, .9)),
    var(--deep-purple);
  box-shadow: 0 22px 60px rgba(9, 11, 56, .16);
}

.quote-panel::before {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  transform: rotate(9deg);
  content: "";
}

.quote-frame {
  position: relative;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(103, 50, 216, .08), 0 16px 38px rgba(9, 11, 56, .14);
}

.carrier-strip {
  margin-top: 22px;
  padding: 0;
  background: transparent;
}

.carrier-card {
  border-radius: 16px;
}

.carrier-list span {
  min-height: 86px;
  border-radius: 8px;
}

.momentum-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.momentum-strip article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(103, 50, 216, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 30px rgba(9, 11, 56, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.momentum-strip article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 138, 34, .62);
  box-shadow: 0 18px 38px rgba(9, 11, 56, .11);
}

.momentum-strip span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
}

.momentum-strip strong {
  color: var(--deep-purple);
  font-size: 1.08rem;
}

.momentum-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature-grid,
.why-band,
.guide-band,
.faq-band,
.about-band {
  margin-top: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(9, 11, 56, .06);
}

.feature-card,
.capability-card,
.guide-link-grid a,
.faq-grid article,
.visual-panel {
  border-radius: 12px;
}

.feature-card,
.guide-link-grid a,
.faq-grid article {
  background: linear-gradient(180deg, #fff 0%, #fdfbff 100%);
}

.workflow-band {
  margin-top: 24px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #090b38 0%, #6732d8 100%);
}

.workflow-steps article {
  border-radius: 12px;
}

.contact-band {
  margin-top: 24px;
  border-width: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #2e176d, #6732d8);
}

@media (max-width: 1080px) {
  .momentum-strip {
    grid-template-columns: 1fr;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 740px) {
  .hero,
  .quote-panel,
  .carrier-strip,
  .momentum-strip,
  .feature-grid,
  .why-band,
  .guide-band,
  .faq-band,
  .workflow-band,
  .about-band,
  .contact-band {
    width: min(100% - 22px, 1320px);
    border-radius: 14px;
  }

  .site-header {
    overflow: hidden;
  }

  .brand {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .brand small {
    font-size: .74rem;
  }

  .header-actions .button {
    min-width: 0;
    padding-inline: 8px;
    font-size: .88rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 24px 16px 0;
  }

  .hero h1 {
    max-width: 9.2ch;
    font-size: clamp(2.12rem, 11.4vw, 2.75rem);
    overflow-wrap: normal;
  }

  .hero-lead {
    max-width: 29ch;
    overflow-wrap: anywhere;
    font-size: .98rem;
  }

  .hero::before {
    inset: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
  }

  .quick-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-points li {
    min-width: 0;
  }

  .hero-microcopy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-art img {
    transform: scale(1.28);
    transform-origin: 84% 58%;
    object-position: 86% center;
  }
}
