@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

body {
  background: var(--we-bg);
}

.marketing-nav {
  background: transparent;
  padding: 1rem 0;
}

.marketing-nav .container {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--we-border);
  border-radius: 999px;
  box-shadow: var(--we-shadow-sm);
  padding: 0.55rem 1rem;
}

.site-logo {
  width: 148px;
  height: auto;
}

.marketing-nav .nav-link {
  color: var(--we-text-muted) !important;
  font-weight: 600;
  padding: 0.6rem 0.85rem !important;
}

.marketing-nav .nav-link:hover,
.marketing-nav .nav-link.active,
.site-login:hover {
  color: var(--we-primary) !important;
}

.marketing-nav .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.12em;
}

.marketing-dropdown {
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-lg);
  box-shadow: var(--we-shadow);
  min-width: 14rem;
  padding: 0.55rem;
}

.marketing-dropdown .dropdown-item {
  border-radius: var(--we-radius-sm);
  color: var(--we-text-muted);
  font-weight: 700;
  padding: 0.72rem 0.85rem;
}

.marketing-dropdown .dropdown-item:hover,
.marketing-dropdown .dropdown-item.active {
  background: var(--we-primary-light);
  color: var(--we-primary);
}

.site-login {
  color: var(--we-text-muted);
  font-weight: 700;
  text-decoration: none;
}

.site-section {
  padding: 5.5rem 0;
}

.site-section-sm {
  padding: 4rem 0;
}

.landing-hero {
  overflow: hidden;
  padding: 9.5rem 0 5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--we-primary-rgb), 0.16), transparent 36%),
    linear-gradient(180deg, #fff 0%, #faf9ff 58%, var(--we-bg) 100%);
}

.hero-title {
  color: var(--we-heading);
  font-size: clamp(2.55rem, 5vw, 4.95rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-title span {
  color: var(--we-primary);
}

.hero-subtitle {
  color: var(--we-text-muted);
  font-size: 1.14rem;
  line-height: 1.75;
  max-width: 42rem;
}

.hero-marquee {
  max-width: 34rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: heroMarquee 18s linear infinite;
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--we-text-muted);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--we-border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  white-space: nowrap;
}

@keyframes heroMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

.product-preview {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  box-shadow: var(--we-shadow);
  overflow: hidden;
}

.hero-3d-wrap {
  position: relative;
  max-width: 590px;
  margin-left: auto;
}

.hero-3d-stage {
  position: relative;
  min-height: 500px;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--we-primary-rgb), 0.16), transparent 36%),
    radial-gradient(circle at 52% 78%, rgba(113, 221, 55, 0.12), transparent 28%);
}

.hero-3d-canvas {
  position: absolute;
  inset: 0;
}

.hero-3d-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero-3d-fallback {
  display: grid;
  gap: 0.75rem;
  place-items: center;
  min-height: 100%;
  color: var(--we-primary);
  font-weight: 800;
}

.hero-3d-fallback .bi {
  font-size: 3rem;
}

.hero-state-label,
.hero-state-score {
  position: absolute;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-state-label {
  top: 1rem;
  left: 0.75rem;
  display: grid;
  gap: 0.15rem;
}

.hero-state-kicker {
  color: var(--we-text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-state-label strong {
  color: var(--we-heading);
  font-size: 0.95rem;
  line-height: 1.1;
}

.hero-state-score {
  right: 0.75rem;
  bottom: 1rem;
  display: grid;
  gap: 0.15rem;
  text-align: right;
}

.hero-state-score span {
  color: var(--we-primary);
  font-weight: 800;
  line-height: 1.1;
}

.hero-state-score small {
  color: var(--we-text-muted);
  font-weight: 700;
  line-height: 1.1;
}

.step-number {
  border-radius: 999px;
  font-weight: 800;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  background: var(--we-primary-light);
  color: var(--we-primary);
}

.marketing-pricing-card.is-featured {
  border-color: rgba(var(--we-primary-rgb), 0.35);
  box-shadow: var(--we-shadow);
}

.page-header {
  padding: 9.25rem 0 4.75rem;
  background: linear-gradient(180deg, #fff 0%, var(--we-bg) 100%);
  border-bottom: 1px solid var(--we-border);
}

.page-header h1 {
  color: var(--we-heading);
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  font-weight: 800;
  letter-spacing: 0;
}

.page-lede,
.policy-content {
  max-width: 880px;
}

.section-kicker {
  color: var(--we-primary);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-title {
  color: var(--we-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.about-hero,
.founder-message-hero,
.why-us-hero,
.contact-hero {
  text-align: left;
}

.about-signal-panel {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  box-shadow: var(--we-shadow);
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
}

.about-signal-kicker {
  color: var(--we-primary);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-signal-panel strong {
  color: var(--we-heading);
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}

.about-signal-metrics {
  display: grid;
  gap: 0.75rem;
}

.about-signal-metrics span,
.contact-reasons span {
  align-items: center;
  background: var(--we-bg);
  border: 1px solid var(--we-border);
  border-radius: 999px;
  color: var(--we-text-muted);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
}

.about-workflow-section,
.why-proof-section,
.contact-form-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(var(--we-primary-rgb), 0.08), transparent 30%),
    var(--we-bg);
}

.content-visual-frame {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  box-shadow: var(--we-shadow-sm);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.content-visual-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.content-visual-frame figcaption {
  border-top: 1px solid var(--we-border);
  color: var(--we-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  padding: 1rem 1.25rem;
}

.about-feature {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-lg);
  box-shadow: var(--we-shadow-sm);
  padding: 1.5rem;
}

.about-feature>.bi {
  align-items: center;
  background: var(--we-primary-light);
  border-radius: 0.85rem;
  color: var(--we-primary);
  display: inline-flex;
  font-size: 1.3rem;
  height: 2.75rem;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 2.75rem;
}

.about-feature h3,
.proof-item h3 {
  color: var(--we-heading);
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.about-feature p,
.proof-item p {
  color: var(--we-text-muted);
  line-height: 1.65;
  margin: 0;
}

.founder-photo {
  width: 132px;
  height: 132px;
  object-fit: cover;
}

.policy-content,
.story-content {
  font-size: 1.02rem;
  line-height: 1.82;
}

.founder-identity {
  align-items: center;
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  box-shadow: var(--we-shadow);
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
}

.founder-identity h2 {
  color: var(--we-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.founder-identity p {
  color: var(--we-text-muted);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.founder-identity span {
  color: var(--we-primary);
  font-weight: 800;
}

.founder-letter {
  color: var(--we-text-muted);
  font-size: 1.08rem;
  line-height: 1.86;
  max-width: 820px;
}

.founder-letter p {
  margin-bottom: 1.45rem;
}

.founder-letter h2 {
  color: var(--we-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin: 2.75rem 0 1rem;
}

.founder-letter-lede {
  color: var(--we-heading);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.45;
}

.founder-pullquote,
.founder-signoff {
  background: var(--we-primary-light);
  border: 1px solid rgba(var(--we-primary-rgb), 0.18);
  border-radius: var(--we-radius-lg);
  color: var(--we-primary-dark);
  margin: 2.25rem 0;
  padding: 1.5rem;
}

.founder-pullquote .bi {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.founder-pullquote strong,
.founder-signoff p {
  color: var(--we-primary-dark);
  display: block;
  font-size: 1.18rem;
  line-height: 1.55;
  margin: 0;
}

.founder-signoff strong,
.founder-signoff span {
  display: block;
}

.founder-signoff strong {
  color: var(--we-heading);
  margin-top: 1.25rem;
}

.founder-signoff span {
  color: var(--we-text-muted);
  font-weight: 700;
}

.comparison-panel {
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  padding: 2rem;
}

.comparison-panel span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.comparison-panel h2 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.comparison-panel ul {
  color: inherit;
  display: grid;
  gap: 0.8rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.2rem;
}

.comparison-muted {
  background: var(--we-bg);
  color: var(--we-text-muted);
}

.comparison-muted h2 {
  color: var(--we-heading);
}

.comparison-primary {
  background: var(--we-primary);
  color: rgba(255, 255, 255, 0.84);
}

.comparison-primary h2,
.comparison-primary span {
  color: #fff;
}

.proof-list {
  display: grid;
  gap: 1rem;
}

.proof-item {
  align-items: flex-start;
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-lg);
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
}

.proof-item>.bi {
  align-items: center;
  background: var(--we-primary-light);
  border-radius: 0.8rem;
  color: var(--we-primary);
  display: inline-flex;
  flex: 0 0 2.4rem;
  font-size: 1.15rem;
  height: 2.4rem;
  justify-content: center;
  width: 2.4rem;
}

.contact-route {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-lg);
  box-shadow: var(--we-shadow-sm);
  color: var(--we-text-muted);
  display: block;
  padding: 1.35rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-route:hover {
  border-color: rgba(var(--we-primary-rgb), 0.3);
  box-shadow: var(--we-shadow);
  color: var(--we-primary);
}

.contact-route .bi {
  color: var(--we-primary);
  display: block;
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.contact-route span,
.contact-route strong {
  display: block;
}

.contact-route span {
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.contact-route strong {
  color: var(--we-heading);
  overflow-wrap: anywhere;
}

.contact-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-form {
  background: var(--we-surface);
  border: 1px solid var(--we-border);
  border-radius: var(--we-radius-xl);
  box-shadow: var(--we-shadow);
  padding: 1.5rem;
}

.contact-form .form-label {
  color: var(--we-heading);
  font-weight: 800;
}

.policy-content h2 {
  color: var(--we-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin: 3rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--we-border);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--we-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 2rem 0 0.85rem;
}

.story-content p {
  margin-bottom: 1.55rem;
}

.story-content p:first-of-type {
  color: var(--we-heading);
  font-size: 1.24rem;
  font-weight: 700;
}

.strong-take {
  background: var(--we-primary-light);
  border: 1px solid rgba(var(--we-primary-rgb), 0.18);
  border-radius: var(--we-radius-lg);
  color: var(--we-primary-dark);
  line-height: 1.65;
  margin-top: 2.5rem;
  padding: 2rem;
}

.site-footer {
  background: var(--we-surface);
  border-top: 1px solid var(--we-border);
}

.site-footer h6 {
  color: var(--we-heading);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--we-text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--we-primary);
}

@media (max-width: 991.98px) {
  .marketing-nav .container {
    border-radius: var(--we-radius-xl);
  }

  .marketing-nav .navbar-collapse {
    border-top: 1px solid var(--we-border);
    margin-top: 0.9rem;
    padding-top: 0.9rem;
  }

  .landing-hero {
    padding-top: 8.25rem;
  }

  .hero-3d-wrap {
    max-width: 620px;
    margin-right: auto;
  }

  .hero-3d-stage {
    min-height: 460px;
  }
}

@media (max-width: 575.98px) {
  .site-section {
    padding: 4rem 0;
  }

  .hero-3d-wrap {
    max-width: none;
  }

  .hero-3d-stage {
    min-height: 430px;
  }

  .hero-state-label,
  .hero-state-score {
    width: auto;
  }

  .hero-state-score {
    bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track {
    animation: none;
  }
}

/* Founder Message Page Styles */
.founder-msg-section {
  padding: 5.5rem 0;
  background: #fff;
}

.founder-title-container {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.founder-msg-title {
  color: var(--we-primary);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.founder-photo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 10rem;
}

.founder-photo-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.founder-photo-offset {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background-color: var(--we-primary-light);
  z-index: 1;
}

.founder-photo-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #1a1a1a;
  object-fit: cover;
}

.founder-photo-caption {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--we-text-muted);
  margin-top: 0.5rem;
}

.founder-msg-salutation {
  color: var(--we-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 28px;
}

.founder-msg-body {
  color: var(--we-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.founder-msg-body p {
  margin-bottom: 1.5rem;
}

.founder-msg-body p strong {
  color: var(--we-heading);
}

.founder-msg-body h2 {
  color: var(--we-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.founder-pullquote-custom {
  font-style: italic;
  color: var(--we-primary-dark);
  border-left: 3px solid var(--we-primary);
  padding-left: 1.25rem;
  margin: 2rem 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.founder-signature-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-sig-img {
  max-height: 70px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.founder-sig-fallback {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

/* About Us Page Styles */
.about-msg-section {
  padding: 5.5rem 0 3rem;
  background: #fff;
}
.about-title-container {
  margin-bottom: 2rem;
}
.about-msg-title {
  color: var(--we-primary);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-visual-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-visual-offset {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background-color: var(--we-primary-light);
  z-index: 1;
  border-radius: var(--we-radius-xl);
}

/* Why Us Page Styles */
.why-msg-section {
  padding: 5.5rem 0 3rem;
  background: #fff;
}
.why-title-container {
  margin-bottom: 2rem;
}
.why-msg-title {
  color: var(--we-primary);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.why-visual-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.why-visual-offset {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background-color: var(--we-primary-light);
  z-index: 1;
  border-radius: var(--we-radius-xl);
}

/* Contact Us Page Styles */
.contact-msg-section {
  padding: 5.5rem 0 3rem;
  background: #fff;
}
.contact-title-container {
  margin-bottom: 2rem;
}
.contact-msg-title {
  color: var(--we-primary);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.contact-visual-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.contact-visual-offset {
  position: absolute;
  top: 15px;
  left: -15px;
  right: 15px;
  bottom: -15px;
  background-color: var(--we-primary-light);
  z-index: 1;
  border-radius: var(--we-radius-xl);
}
