/* ── BASE & VARIABLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --purple-900: #1e1a4a;
  --purple-800: #26215c;
  --purple-700: #3c3489;
  --purple-600: #4f46b8;
  --purple-500: #6c63d5;
  --purple-400: #9e99e6;
  --purple-200: #c4c0f0;
  --purple-100: #eeedfe;
  --purple-50: #f5f4ff;
  --green-700: #0f6e56;
  --green-600: #1a9575;
  --green-500: #1a9575;
  --green-400: #4cc9a0;
  --green-100: #e1f5ee;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --red-700: #b91c1c;
  --red-100: #fee2e2;
  --white: #ffffff;
  --grey-50: #f9f9fb;
  --grey-100: #f3f3f7;
  --grey-200: #e8e8f0;
  --grey-300: #d1d0e0;
  --grey-500: #8b8aaa;
  --grey-700: #4a4868;
  --grey-900: #1c1b2e;
  --border: #e4e3f0;
  --shadow-sm: 0 1px 3px rgba(60, 52, 137, 0.08);
  --shadow-md: 0 4px 16px rgba(60, 52, 137, 0.10);
  --shadow-lg: 0 12px 40px rgba(60, 52, 137, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: 'DM Sans', sans-serif;
  background: var(--grey-50);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 60px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-right: 48px;
}

.nav-logo img {
  height: 14px;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: black;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-right: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--purple-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(60, 52, 137, 0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-700);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-mobile a:hover {
  background: var(--grey-50);
  color: var(--purple-700);
}

.nav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-mobile .btn-mobile-primary {
  background: var(--purple-700);
  color: white;
  text-align: center;
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 4px;
}

/* ─── BUTTONS ─── */
.btn-nav-ghost {
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--grey-700);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-nav-ghost:hover {
  border-color: var(--purple-400);
  color: var(--purple-700);
}

.btn-nav-primary {
  padding: 7px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: white;
  background: var(--purple-700);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-nav-primary:hover {
  background: var(--purple-800);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: white;
  background: var(--purple-700);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-primary:hover {
  background: var(--purple-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--purple-700);
  background: transparent;
  border: 1.5px solid var(--purple-400);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-secondary:hover {
  background: var(--purple-50);
}

.btn-founder {
  display: inline-block;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--purple-700);
  background: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-founder:hover {
  background: var(--purple-50);
  transform: translateY(-1px);
}

/* Form Buttons */
.btn-next,
.btn-submit {
  flex: 1;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.btn-next {
  background: var(--purple-700);
}

.btn-next:hover {
  background: var(--purple-900);
  transform: translateY(-1px);
}

.btn-submit {
  background: var(--green-500);
}

.btn-submit:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(60, 52, 137, 0.2);
}

.btn-back {
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--grey-700);
  background: var(--grey-100);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-back:hover {
  background: var(--grey-200);
}


/* ─── INDEX SPECIFIC ─── */
.hero-bg {
  background: linear-gradient(160deg, var(--purple-50) 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}

.hero {
  padding: 100px 40px 72px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 22px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--grey-900);
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-600);
  letter-spacing: 0.02em;
  margin-bottom: 12px !important;
  margin-top: -8px;
}

.hero p {
  font-size: 16px;
  color: var(--grey-700);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-trust {
  font-size: 13px;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-trust span.sep {
  color: var(--grey-300);
}

/* DASHBOARD MOCKUP */
.mockup-wrap {
  position: relative;
  filter: drop-shadow(0 24px 48px rgba(60, 52, 137, 0.16));
}

.mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 12px;
}

.mockup-topbar {
  background: var(--purple-800);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-topbar-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mockup-topbar-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.mockup-body {
  display: flex;
}

.mockup-sidebar {
  width: 130px;
  flex-shrink: 0;
  background: var(--purple-900);
  padding: 14px 0;
}

.sidebar-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 12px 6px;
}

.sidebar-item {
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 0 6px 6px 0;
  margin-right: 8px;
}

.sidebar-item svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.mockup-main {
  flex: 1;
  padding: 14px;
  background: var(--grey-50);
}

.mockup-page-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 10px;
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.mockup-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 11px;
}

.mockup-stat-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
  margin-bottom: 3px;
}

.mockup-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-900);
}

.mockup-stat-sub {
  font-size: 9px;
  color: var(--grey-500);
  margin-top: 1px;
}

.mockup-commission {
  background: var(--purple-700);
  border-radius: 8px;
  padding: 12px 13px;
  margin-bottom: 10px;
}

.mockup-comm-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.mockup-comm-amount {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.mockup-comm-row {
  display: flex;
  gap: 14px;
}

.mockup-comm-item-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
}

.mockup-comm-item-val {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.mockup-prop-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 6px;
}

.mockup-prop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 9px;
  margin-bottom: 4px;
}

.mockup-prop-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mockup-prop-avatar {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-prop-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-900);
}

.mockup-prop-sub {
  font-size: 9px;
  color: var(--grey-500);
}

.mockup-prop-val {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-900);
}

.badge-sent {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 500;
}

.badge-pending {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--amber-light);
  color: #92400e;
  font-weight: 500;
}

/* SECTIONS */
.stats-strip {
  background: var(--purple-800);
  padding: 28px 40px;
}

.stats-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.ss-val {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.ss-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.section {
  padding: 80px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.section-bg {
  background: var(--grey-50);
}

.section-bg-wrap {
  background: var(--grey-50);
  padding: 80px 40px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 10px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--grey-900);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--grey-700);
  line-height: 1.7;
  max-width: 560px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.audience-section {
  padding: 0 40px 80px;
}

.audience-container {
  max-width: 1160px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--purple-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 7px;
}

.feature-desc {
  font-size: 13.5px;
  color: var(--grey-700);
  line-height: 1.65;
}

.dac7-callout {
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--green-100) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  margin: 0 40px 80px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.dac7-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 10px;
}

.dac7-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.dac7-body {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.7;
  max-width: 520px;
}

.penalty-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
}

.penalty-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  margin-bottom: 6px;
}

.penalty-amount {
  font-size: 38px;
  font-weight: 700;
  color: var(--red-700);
  line-height: 1;
}

.penalty-sub {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 5px;
}

.report-section {
  padding: 0 40px 80px;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.report-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.report-header {
  background: var(--purple-800);
  padding: 20px 24px;
}

.report-property {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.report-address {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.report-period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.report-body {
  padding: 20px 24px;
}

.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}

.report-row:last-of-type {
  border-bottom: none;
}

.report-row-label {
  color: var(--grey-700);
}

.report-row-val {
  font-weight: 500;
  color: var(--grey-900);
}

.report-row-val.minus {
  color: var(--red-700);
}

.report-divider {
  border-top: 2px solid var(--border);
  margin: 4px 0;
}

.report-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 4px;
  font-size: 15px;
}

.report-total-label {
  font-weight: 600;
  color: var(--grey-900);
}

.report-total-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-700);
}

.report-footer-bar {
  background: var(--green-100);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.locked-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green-700);
}

.locked-label svg {
  width: 13px;
  height: 13px;
  stroke: var(--green-700);
  fill: none;
  stroke-width: 2.5;
}

.pdf-label {
  font-size: 11px;
  color: var(--green-700);
  font-weight: 500;
}

.report-features {
  margin-top: 0;
}

.report-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.report-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--purple-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.report-feat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 3px;
}

.report-feat-desc {
  font-size: 13.5px;
  color: var(--grey-700);
  line-height: 1.65;
}

.how-section {
  padding: 80px 40px;
}

.how-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
  background: white;
  margin-bottom: 32px;
}

.integration-badge .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
}

.integration-note {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-400), var(--green-400));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple-700);
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--grey-50);
  transition: transform 0.2s;
}

.step:last-child .step-num {
  background: var(--green-700);
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 7px;
}

.step-desc {
  font-size: 13px;
  color: var(--grey-700);
  line-height: 1.65;
}

.integrations-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
  background: white;
}

.integrations-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.integrations-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-500);
  margin-right: 8px;
}

.integration-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-900);
}

.integration-pill .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
}

.integration-pill .coming {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grey-300);
  flex-shrink: 0;
}

.pricing-section {
  padding: 80px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.founder-block {
  background: var(--purple-800);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.founder-block::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.founder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}

.founder-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.founder-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.65;
}

.founder-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.price-old {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.price-new {
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.price-unit {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.founder-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.spots-badge {
  background: var(--amber);
  color: #451a00;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 5px;
}

.pricing-sub-note {
  font-size: 13.5px;
  color: var(--grey-500);
  margin-bottom: 18px;
}

.pricing-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.pt-head {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  padding: 12px 20px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--border);
}

.pt-head span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-500);
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  align-items: center;
  transition: background 0.1s;
}

.pt-row:hover {
  background: var(--grey-50);
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-row span {
  color: var(--grey-900);
}

.pt-row .rate {
  color: var(--purple-600);
  font-weight: 500;
}

.pt-row .total {
  font-weight: 600;
}

.addon-box {
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.addon-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.addon-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 4px;
}

.addon-desc {
  font-size: 13.5px;
  color: var(--grey-700);
  line-height: 1.6;
}

.tip-box {
  background: var(--green-100);
  border: 1px solid #b7e8d7;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tip-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tip-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 4px;
}

.tip-desc {
  font-size: 13.5px;
  color: var(--grey-700);
  line-height: 1.6;
}

.trial-note {
  text-align: center;
  font-size: 13px;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.trial-note .sep {
  color: var(--grey-300);
}

.faq-section {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: color 0.15s;
}

.faq-q:hover {
  color: var(--purple-700);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--grey-400);
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s, stroke 0.15s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  stroke: var(--purple-600);
}

.faq-a {
  font-size: 14px;
  color: var(--grey-700);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 18px;
}

.cta-section {
  background: var(--purple-800);
  padding: 80px 40px;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-cta-white {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--purple-700);
  background: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-cta-white:hover {
  background: var(--purple-50);
}

.btn-cta-outline {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: white;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.cta-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cta-trust .sep {
  color: rgba(255, 255, 255, 0.2);
}

footer {
  background: var(--purple-900);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-logo img {
  height: 20px;
  opacity: 0.7;
}

.footer-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── CONTACT & DEMO PANELS ─── */
.left {
  background: var(--purple-800);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.left::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.left::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 52px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-200);
  margin-bottom: 16px;
}

.left-title {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  line-height: 1.15;
  color: white;
  margin-bottom: 20px;
}

.left-title em {
  font-style: italic;
  color: var(--purple-200);
}

.left-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 340px;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.proof-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.proof-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--purple-200);
  fill: none;
  stroke-width: 2.5;
}

.proof-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-method-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--purple-200);
  fill: none;
  stroke-width: 1.8;
}

.contact-method-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1px;
}

.contact-method-value {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

.left-footer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  margin-top: 32px;
}

.right {
  padding: 56px 52px;
  background: var(--white);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--grey-900);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* STEPS */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1.5px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  transition: all 0.3s;
  flex-shrink: 0;
}

.step-dot.active {
  background: var(--purple-700);
  border-color: var(--purple-700);
  color: white;
}

.step-dot.done {
  background: var(--green-500);
  border-color: var(--green-500);
  color: white;
}

.step-dot.done::after {
  content: '✓';
  font-size: 11px;
}

.step-dot.done span {
  display: none;
}

.step-line {
  flex: 1;
  height: 1.5px;
  background: var(--grey-200);
  transition: background 0.3s;
}

.step-line.done {
  background: var(--green-500);
}

.progress-bar-wrap {
  height: 3px;
  background: var(--grey-100);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--purple-700);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-700);
  margin-bottom: 18px;
}

/* FIELDS */
.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 7px;
}

.field label span {
  font-weight: 400;
  color: var(--grey-500);
  margin-left: 4px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--grey-900);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 3px rgba(60, 52, 137, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.field input.error {
  border-color: #b91c1c;
}

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

/* OPTION CARDS */
.option-cards {
  display: grid;
  gap: 10px;
}

.option-cards.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.option-cards.cols-1 {
  grid-template-columns: 1fr;
}

.option-card {
  position: relative;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  margin-bottom: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey-700);
  user-select: none;
}

.option-card label:hover {
  border-color: var(--purple-500);
  background: var(--purple-50);
}

.option-card input:checked+label {
  border-color: var(--purple-700);
  background: var(--purple-50);
  color: var(--purple-700);
  font-weight: 500;
}

.option-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.option-card input:checked+label .option-card-icon {
  background: var(--purple-100);
}

.option-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--grey-300);
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.option-card input:checked+label .option-check {
  background: var(--purple-700);
  border-color: var(--purple-700);
}

.option-check::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  display: none;
}

.option-card input:checked+label .option-check::after {
  display: block;
}

.option-card input[type="checkbox"]:checked+label .option-check {
  background: var(--purple-700);
  border-color: var(--purple-700);
  border-radius: 4px;
}

.option-card input[type="checkbox"]:checked+label .option-check::after {
  display: block;
  width: 8px;
  height: 5px;
  background: none;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.divider {
  border: none;
  border-top: 1px solid var(--grey-200);
  margin: 24px 0;
}

.privacy-note {
  font-size: 12px;
  color: var(--grey-500);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.success-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--grey-900);
  margin-bottom: 10px;
}

.success-body {
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 320px;
  margin: 0 auto;
}


/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero Section: ensure 1 column on mobile */
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 24px 48px;
    gap: 40px;
  }

  /* Dashboard Mockup: Hide gracefully */
  .mockup-wrap {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  /* Features & Steps Grid: break down to 2 columns */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .steps-grid::before {
    display: none;
  }

  .audience-section {
    padding: 0 24px 60px;
  }

  .outcomes-grid,
  .audience-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 12px 4px 24px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .outcomes-grid::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar {
    display: none !important;
  }

  .outcomes-grid>div,
  .audience-grid>div {
    flex: 0 0 82% !important;
    scroll-snap-align: start !important;
    box-shadow: 0 4px 16px rgba(60, 52, 137, 0.06) !important;
  }

  .stats-strip {
    padding: 24px 20px;
  }

  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ss-val {
    font-size: 22px;
  }

  .dac7-callout {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    margin: 0 20px 48px;
  }

  .report-section {
    grid-template-columns: 1fr;
    padding: 0 24px 60px;
    gap: 40px;
  }

  .section {
    padding: 60px 24px;
  }

  .section-bg-wrap {
    padding: 60px 24px;
  }

  /* Pricing Table Grid */
  .pt-head,
  .pt-row {
    grid-template-columns: 1fr 1fr;
  }

  .pt-head span:nth-child(n+3),
  .pt-row span:nth-child(n+3) {
    display: none;
  }

  /* Maintenance Section */
  .maintenance-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-section {
    padding: 60px 24px;
  }

  .founder-block {
    padding: 28px 24px;
  }

  .faq-section {
    padding: 60px 24px;
  }

  .cta-section {
    padding: 60px 24px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 22px 24px;
  }

  .footer-links {
    justify-content: center;
  }

  #story {
    padding: 60px 24px !important;
  }

  /* Form Panels splitting */
  .page {
    display: flex;
    flex-direction: column;
  }

  .left {
    order: 2;
    position: relative;
    height: auto;
    padding: 36px 24px;
    border-top: 1px solid var(--border);
  }

  .right {
    order: 1;
    padding: 36px 24px;
    justify-content: flex-start;
    overflow-y: visible;
  }

  .option-cards.cols-2 {
    grid-template-columns: 1fr;
  }

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

@media(max-width:600px) {
  .audience-section {
    padding: 0 16px 48px;
  }

  .outcomes-grid,
  .audience-grid {
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 12px !important;
  }

  .outcomes-grid>div,
  .audience-grid>div {
    flex: 0 0 85% !important;
  }

  /* Features & Steps Grid: break down to 1 column */
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }

  .cta-title {
    font-size: 26px;
  }

  .dac7-title {
    font-size: 22px;
  }

  .penalty-amount {
    font-size: 30px;
  }

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

  .ss-val {
    font-size: 20px;
  }

  .how-integrations {
    flex-direction: column !important;
  }

  .report-section {
    padding: 0 16px 48px;
  }

  .section {
    padding: 48px 16px;
  }

  .pricing-section {
    padding: 48px 16px;
  }

  .faq-section {
    padding: 48px 16px;
  }

  .cta-section {
    padding: 48px 16px;
  }

  #story {
    padding: 48px 16px !important;
  }

  .dac7-callout {
    margin: 0 16px 40px;
    padding: 24px 20px;
  }

  footer {
    padding: 20px 16px;
  }

  .founder-block {
    padding: 24px 16px;
  }

  /* Form panels */
  .left-title {
    font-size: 24px;
  }

  /* Inline grid overrides for mobile */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    display: flex !important;
    flex-direction: column !important;
  }

  [style*="grid-template-columns:repeat(2,1fr)"] {
    display: flex !important;
    flex-direction: column !important;
  }
}