:root {
  --wc-dark: #110A00;
  --wc-surface: #FEFAF2;
  --wc-amber: #E8A000;
  --wc-amber-dk: #B8720A;
  --wc-text: #1A1209;
  --wc-hex-bg: #1F1408;
  --wc-muted: #6B5A42;
  --wc-border: rgba(184, 114, 10, 0.22);
  --wc-shadow: 0 22px 80px rgba(17, 10, 0, 0.16);
  --wc-radius: 28px;
  --wc-container: min(1280px, calc(100% - 32px));
  --wc-display: "Space Grotesk", sans-serif;
  --wc-body: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--wc-body);
  color: var(--wc-text);
  background: var(--wc-surface);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.wc-page {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(232, 160, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fff8eb 0%, var(--wc-surface) 100%);
}

.wc-bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, rgba(184, 114, 10, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(184, 114, 10, 0.06) 87.5%, rgba(184, 114, 10, 0.06)),
    linear-gradient(150deg, rgba(184, 114, 10, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(184, 114, 10, 0.06) 87.5%, rgba(184, 114, 10, 0.06)),
    linear-gradient(90deg, rgba(184, 114, 10, 0.05) 2%, transparent 2.5%, transparent 97%, rgba(184, 114, 10, 0.05) 97.5%, rgba(184, 114, 10, 0.05));
  background-size: 52px 90px;
  opacity: 0.3;
  z-index: 0;
}

.wc-container {
  width: var(--wc-container);
  margin: 0 auto;
}

.wc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wc-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(254, 250, 242, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 114, 10, 0.12);
  box-shadow: 0 10px 36px rgba(17, 10, 0, 0.06);
  transition: background 0.2s ease, backdrop-filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-nav.is-scrolled {
  background: rgba(17, 10, 0, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 242, 216, 0.08);
  box-shadow: 0 18px 42px rgba(17, 10, 0, 0.24);
}

.wc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.wc-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.wc-brand-mark,
.wc-mini-hex,
.wc-hex-icon,
.wc-step-hex,
.wc-avatar-hex {
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.wc-brand-mark {
  width: 42px;
  height: 48px;
  background: linear-gradient(180deg, var(--wc-amber), var(--wc-amber-dk));
  box-shadow: 0 0 0 1px rgba(17, 10, 0, 0.25);
}

.wc-brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.wc-brand-text {
  font-family: var(--wc-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--wc-text);
}

.wc-brand-subtext {
  font-size: 0.72rem;
  color: var(--wc-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.wc-nav-menu a {
  text-decoration: none;
  color: rgba(26, 18, 9, 0.82);
  font-size: 0.92rem;
}

.wc-nav-menu a:not(.wc-btn):hover,
.wc-nav-menu a:not(.wc-btn):focus-visible {
  color: #ffd78b;
}

.wc-nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(184, 114, 10, 0.18);
  background: rgba(255, 250, 242, 0.58);
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
}

.wc-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--wc-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wc-nav.is-scrolled .wc-brand-text,
.wc-nav.is-scrolled .wc-nav-menu a {
  color: var(--wc-surface);
}

.wc-nav.is-scrolled .wc-brand-subtext {
  color: rgba(254, 250, 242, 0.72);
}

.wc-nav.is-scrolled .wc-nav-toggle {
  border-color: rgba(255, 250, 242, 0.2);
  background: rgba(255, 250, 242, 0.04);
}

.wc-nav.is-scrolled .wc-nav-toggle span {
  background: var(--wc-surface);
}

.wc-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.wc-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.wc-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.wc-btn:focus-visible,
.wc-nav-menu a:focus-visible,
.wc-tab:focus-visible,
input:focus-visible,
select:focus-visible,
.wc-nav-toggle:focus-visible {
  outline: 3px solid rgba(232, 160, 0, 0.45);
  outline-offset: 3px;
}

.wc-btn-primary {
  background: var(--wc-amber);
  color: var(--wc-text);
  box-shadow: 0 10px 30px rgba(232, 160, 0, 0.28);
}

.wc-btn-primary:hover,
.wc-btn-primary:focus-visible {
  background: #f2af17;
}

.wc-btn-ghost {
  background: transparent;
  color: var(--wc-surface);
  border-color: rgba(254, 250, 242, 0.22);
}

.wc-btn-ghost:hover,
.wc-btn-ghost:focus-visible {
  border-color: rgba(232, 160, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 160, 0, 0.18);
}

.wc-btn-pulse {
  animation: wc-pulse 3s ease-in-out infinite;
}

@keyframes wc-pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(232, 160, 0, 0.28);
  }
  50% {
    box-shadow: 0 14px 40px rgba(232, 160, 0, 0.42);
  }
}

.wc-section,
.wc-hero {
  position: relative;
  z-index: 1;
}

.wc-hero {
  padding: 56px 0 88px;
  background: linear-gradient(90deg, var(--wc-dark) 0%, var(--wc-hex-bg) 58%, transparent 58%);
}

.wc-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.wc-hero-copy {
  color: var(--wc-surface);
  padding: 28px 0 0;
}

.wc-eyebrow,
.wc-section-label {
  margin: 0 0 16px;
  color: var(--wc-amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.wc-hero-title,
.wc-section-head h2,
.wc-definition h2,
.wc-pricing-card h2,
.wc-demo-copy h2 {
  margin: 0;
  font-family: var(--wc-display);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.wc-hero-title {
  font-size: clamp(2.6rem, 10vw, 5.8rem);
  line-height: 0.95;
  max-width: 10ch;
}

.wc-hero-title span {
  display: block;
}

.wc-hero-accent {
  color: #ffd78b;
}

.wc-hero-subtitle {
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(254, 250, 242, 0.8);
  margin: 22px 0 0;
}

.wc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wc-hero-proof {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.wc-hero-proof div {
  border-left: 1px solid rgba(232, 160, 0, 0.28);
  padding-left: 14px;
}

.wc-hero-proof strong {
  display: block;
  margin-bottom: 6px;
}

.wc-hero-proof span {
  color: rgba(254, 250, 242, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
}

.wc-hero-visual {
  position: relative;
}

.wc-hero-surface {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, #fffefb 0%, #f8efe1 100%);
  border-radius: calc(var(--wc-radius) + 6px);
  box-shadow: var(--wc-shadow);
  overflow: hidden;
}

.wc-hex-field {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(184, 114, 10, 0.07) 12%, transparent 12.5%, transparent 87%, rgba(184, 114, 10, 0.07) 87.5%, rgba(184, 114, 10, 0.07)),
    linear-gradient(150deg, rgba(184, 114, 10, 0.07) 12%, transparent 12.5%, transparent 87%, rgba(184, 114, 10, 0.07) 87.5%, rgba(184, 114, 10, 0.07));
  background-size: 48px 82px;
  opacity: 0.5;
}

.wc-mockup-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 10, 0, 0.88);
  color: var(--wc-surface);
  box-shadow: 0 14px 30px rgba(17, 10, 0, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.wc-inbox-mockup {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.6fr 0.85fr;
  gap: 12px;
  min-height: 490px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(184, 114, 10, 0.18);
  border-radius: var(--wc-radius);
  padding: 16px;
  font-size: 0.78rem;
}

.wc-mockup-caption {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(254, 250, 242, 0.5);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.wc-inbox-col {
  position: relative;
  border-radius: 24px;
  padding: 16px 14px;
}

.wc-inbox-sidebar,
.wc-lead-pane {
  background: var(--wc-dark);
  color: var(--wc-surface);
}

.wc-chat-list,
.wc-conversation-pane {
  background: #fff9ef;
  border: 1px solid rgba(184, 114, 10, 0.12);
}

.wc-mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--wc-display);
  font-size: 0.8rem;
}

.wc-mini-hex {
  width: 18px;
  height: 20px;
  background: var(--wc-amber);
}

.wc-sidebar-chip {
  padding: 9px 11px;
  border-radius: 16px;
  background: rgba(254, 250, 242, 0.08);
  margin-bottom: 10px;
  font-size: 0.76rem;
}

.wc-sidebar-chip.is-active {
  background: linear-gradient(180deg, rgba(232, 160, 0, 0.35), rgba(184, 114, 10, 0.45));
}

.wc-chat-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  margin-bottom: 10px;
  box-shadow: 0 12px 22px rgba(17, 10, 0, 0.06);
}

.wc-chat-item.is-active {
  border: 1px solid rgba(232, 160, 0, 0.35);
}

.wc-chat-item p,
.wc-tab-panel p,
.wc-stat-card p,
.wc-compare-table td,
.wc-compare-table th,
.wc-pricing-card p,
.wc-demo-copy p,
.wc-form-note,
.wc-footer-tagline {
  margin: 0;
}

.wc-chat-item strong,
.wc-pane-top strong,
.wc-lead-card strong,
.wc-stat-card strong {
  display: block;
}

.wc-chat-item strong {
  font-size: 0.78rem;
}

.wc-chat-item p {
  font-size: 0.68rem;
  color: var(--wc-muted);
}

.wc-avatar-hex {
  width: 42px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--wc-dark), var(--wc-hex-bg));
  color: var(--wc-surface);
  font-size: 0.72rem;
  font-weight: 700;
}

.wc-score,
.wc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(26, 18, 9, 0.08);
}

.wc-score-hot,
.wc-badge {
  background: rgba(232, 160, 0, 0.22);
  color: var(--wc-amber-dk);
}

.wc-score-warm {
  background: rgba(184, 114, 10, 0.18);
  color: var(--wc-amber-dk);
}

.wc-pane-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.wc-pane-top strong {
  font-size: 0.82rem;
}

.wc-bubbles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc-bubble {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 18px;
  font-size: 0.76rem;
  line-height: 1.6;
}

.wc-bubble.incoming {
  background: rgba(26, 18, 9, 0.06);
}

.wc-bubble.outgoing {
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(232, 160, 0, 0.26), rgba(184, 114, 10, 0.2));
}

.wc-lead-pane h2 {
  margin: 0 0 12px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wc-lead-card {
  padding: 10px;
  border-radius: 20px;
  background: rgba(254, 250, 242, 0.08);
  margin-bottom: 10px;
}

.wc-kpi-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(254, 250, 242, 0.7);
  margin-bottom: 5px;
}

.wc-lead-card strong {
  font-size: 0.82rem;
}

.wc-msg-pop {
  animation: wc-msg-pop 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

.delay-3 {
  animation-delay: 3s;
}

@keyframes wc-msg-pop {
  0%,
  100% {
    opacity: 0.68;
    transform: translateY(10px);
  }
  15%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
}

.wc-section {
  padding: 88px 0;
}

.wc-dark-section {
  background: var(--wc-hex-bg);
  color: var(--wc-surface);
}

.wc-light-section {
  background: transparent;
}

.wc-section-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.wc-section-head h2,
.wc-definition h2,
.wc-pricing-card h2,
.wc-demo-copy h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.wc-definition {
  max-width: 900px;
  margin-bottom: 32px;
}

.wc-definition p,
.wc-section-head p,
.wc-now-copy {
  color: var(--wc-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 16px;
}

.wc-dark-section .wc-section-head p,
.wc-dark-section .wc-now-copy {
  color: rgba(254, 250, 242, 0.72);
}

.wc-pain-grid,
.wc-pillars-grid,
.wc-steps-grid,
.wc-stats-grid,
.wc-demo-grid,
.wc-footer-grid {
  display: grid;
  gap: 18px;
}

.wc-pain-card,
.wc-pillar-card,
.wc-step-card,
.wc-stat-card,
.wc-pricing-card,
.wc-demo-form,
.wc-tab-panel,
.wc-bento-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 160, 0, 0.12);
  border-radius: var(--wc-radius);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-light-section .wc-pillar-card,
.wc-light-section .wc-step-card,
.wc-light-section .wc-pricing-card,
.wc-light-section .wc-tab-panel,
.wc-light-section .wc-bento-card {
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--wc-shadow);
}

.wc-pain-card:hover,
.wc-pillar-card:hover,
.wc-step-card:hover,
.wc-tab-panel:hover,
.wc-bento-card:hover,
.wc-pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 160, 0, 0.38);
  box-shadow: 0 16px 44px rgba(232, 160, 0, 0.12);
}

.wc-hex-icon,
.wc-step-hex {
  width: 58px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--wc-amber), var(--wc-amber-dk));
  color: var(--wc-text);
  font-family: var(--wc-display);
  font-weight: 700;
  margin-bottom: 20px;
}

.wc-pain-card h3,
.wc-pillar-card h3,
.wc-step-card h3,
.wc-bento-card h3,
.wc-tab-panel h3 {
  margin: 0 0 10px;
  font-family: var(--wc-display);
  font-size: 1.25rem;
}

.wc-pain-card p,
.wc-pillar-card p,
.wc-step-card p,
.wc-bento-card p,
.wc-tab-panel p {
  color: rgba(26, 18, 9, 0.76);
  line-height: 1.75;
  font-size: 0.95rem;
}

.wc-dark-section .wc-pain-card p,
.wc-dark-section .wc-stat-card p,
.wc-dark-section .wc-demo-copy p {
  color: rgba(254, 250, 242, 0.72);
}

.wc-dark-section .wc-bento-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 160, 0, 0.18);
}

.wc-dark-section .wc-bento-card p {
  color: rgba(254, 250, 242, 0.72);
}

.wc-dark-section .wc-bento-card h3 {
  color: var(--wc-surface);
}

.wc-pillars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-pillar-number {
  font-family: var(--wc-display);
  font-size: 3rem;
  color: rgba(232, 160, 0, 0.22);
  margin-bottom: 18px;
}

.wc-steps-section {
  position: relative;
}

.wc-steps-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 238px;
  width: min(1000px, calc(100% - 60px));
  height: 3px;
  background: linear-gradient(90deg, rgba(232, 160, 0, 0.18), rgba(232, 160, 0, 0.82), rgba(232, 160, 0, 0.18));
}

.wc-steps-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-bento-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(232px, auto);
}

.wc-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  min-height: 100%;
}

.wc-bento-wide {
  grid-column: span 2;
}

.wc-bento-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.wc-bento-card:not(.wc-bento-wide):not(.wc-bento-tall) {
  min-height: 244px;
}

.wc-bento-copy p {
  max-width: 38ch;
}

.wc-bento-wide .wc-bento-copy {
  max-width: 30ch;
}

.wc-bento-tall .wc-bento-copy {
  max-width: 34ch;
}

.wc-bento-visual,
.wc-chat-preview {
  margin-top: 18px;
}

.wc-bento-wide .wc-bento-visual {
  margin-top: auto;
}

.wc-bento-inbox {
  display: grid;
  grid-template-columns: 0.45fr 0.7fr 1fr 0.52fr;
  gap: 10px;
  min-height: 168px;
  align-items: end;
}

.wc-bento-inbox div {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.05));
  border: 1px solid rgba(232, 160, 0, 0.12);
  min-height: 108px;
}

.wc-bento-inbox div:nth-child(1) {
  min-height: 132px;
}

.wc-bento-inbox div:nth-child(2) {
  min-height: 118px;
}

.wc-bento-inbox div:nth-child(3) {
  min-height: 156px;
}

.wc-bento-inbox div:nth-child(4) {
  min-height: 124px;
}

.wc-chat-preview {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 239, 201, 0.8), rgba(255, 245, 225, 1));
  border: 1px solid rgba(232, 160, 0, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.wc-bento-tall .wc-chat-preview {
  margin-top: 24px;
  min-height: 240px;
  flex: 1;
  display: grid;
  align-content: start;
  gap: 12px;
}

.wc-chat-preview p {
  margin: 0;
  color: rgba(26, 18, 9, 0.76);
}

.wc-chat-preview strong {
  color: var(--wc-text);
}

.wc-chat-preview .wc-badge {
  justify-self: start;
}

.wc-dark-section .wc-chat-preview p,
.wc-dark-section .wc-chat-preview strong {
  color: var(--wc-text);
}

.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.wc-tab {
  border: 1px solid rgba(184, 114, 10, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--wc-text);
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.wc-tab.is-active {
  background: var(--wc-dark);
  color: var(--wc-surface);
  border-color: var(--wc-dark);
}

.wc-tab-panels {
  position: relative;
}

.wc-tab-panel.is-active {
  display: block;
}

.wc-usecases {
  max-width: 1020px;
}

.wc-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.wc-stat-card {
  text-align: center;
}

.wc-stat-card strong {
  color: var(--wc-amber);
  font-family: var(--wc-display);
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 1;
  margin-bottom: 12px;
}

.wc-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--wc-radius);
  box-shadow: var(--wc-shadow);
}

.wc-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.8);
}

.wc-compare-table th,
.wc-compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(184, 114, 10, 0.14);
  text-align: left;
}

.wc-compare-table th:last-child,
.wc-compare-table td:last-child {
  background: rgba(232, 160, 0, 0.14);
  font-weight: 700;
}

.wc-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.wc-pricing-actions span {
  color: var(--wc-muted);
  font-size: 0.92rem;
}

.wc-demo-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.wc-demo-form {
  display: grid;
  gap: 14px;
  background: rgba(254, 250, 242, 0.06);
}

.wc-demo-form label {
  display: grid;
  gap: 8px;
  color: var(--wc-surface);
  font-weight: 600;
}

.wc-demo-form input,
.wc-demo-form select {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(254, 250, 242, 0.14);
  background: rgba(254, 250, 242, 0.08);
  padding: 0 16px;
  color: var(--wc-surface);
}

.wc-demo-form select option {
  color: var(--wc-text);
}

.wc-form-submit {
  width: 100%;
  margin-top: 6px;
}

.wc-form-note,
.wc-form-status {
  color: rgba(254, 250, 242, 0.72);
  font-size: 0.9rem;
}

.wc-footer {
  position: relative;
  z-index: 1;
  padding: 32px 0 52px;
  background: #0d0700;
  color: var(--wc-surface);
}

.wc-footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.wc-footer-brand {
  margin-bottom: 16px;
}

.wc-footer-brand .wc-brand-text {
  color: var(--wc-surface);
}

.wc-footer-brand .wc-brand-subtext {
  color: rgba(254, 250, 242, 0.72);
}

.wc-footer-links,
.wc-footer-meta {
  display: grid;
  gap: 10px;
}

.wc-footer-links a,
.wc-footer-meta a {
  text-decoration: none;
  color: rgba(254, 250, 242, 0.78);
}

.wc-footer-links a:hover,
.wc-footer-meta a:hover,
.wc-footer-links a:focus-visible,
.wc-footer-meta a:focus-visible {
  color: #ffd78b;
}

.wc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.wc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wc-reveal-group > .wc-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.wc-reveal-group > .wc-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.wc-reveal-group > .wc-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.wc-hero-title .wc-reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.wc-hero-title .wc-reveal:nth-child(3) {
  transition-delay: 0.2s;
}

@media (min-width: 768px) {
  .wc-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  }

  .wc-pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  .wc-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(228px, auto);
  }

  .wc-bento-wide,
  .wc-bento-tall {
    grid-column: span 2;
  }

  .wc-bento-card:not(.wc-bento-wide):not(.wc-bento-tall) {
    min-height: 228px;
  }

  .wc-inbox-mockup {
    grid-template-columns: 0.7fr 1fr 1.6fr;
  }

  .wc-lead-pane {
    display: none;
  }
}

@media (max-width: 767px) {
  .wc-nav-toggle {
    display: block;
  }

  .wc-nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(17, 10, 0, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  .wc-nav-menu.is-open {
    display: flex;
  }

  .wc-nav-cta {
    width: 100%;
  }

  .wc-hero {
    padding-top: 34px;
    background: linear-gradient(180deg, var(--wc-dark) 0%, var(--wc-hex-bg) 56%, transparent 56%);
  }

  .wc-hero-copy {
    padding-top: 0;
  }

  .wc-inbox-mockup,
  .wc-bento-grid,
  .wc-pillars-grid,
  .wc-steps-grid,
  .wc-stats-grid,
  .wc-demo-grid,
  .wc-footer-grid {
    grid-template-columns: 1fr;
  }

  .wc-inbox-mockup {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wc-mockup-label {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .wc-mockup-caption {
    margin-top: 12px;
    text-align: center;
    color: rgba(254, 250, 242, 0.5);
  }

  .wc-bento-grid {
    gap: 14px;
    grid-auto-rows: auto;
  }

  .wc-bento-wide,
  .wc-bento-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .wc-bento-card,
  .wc-bento-card:not(.wc-bento-wide):not(.wc-bento-tall) {
    min-height: 0;
    padding: 24px;
    gap: 12px;
  }

  .wc-bento-visual,
  .wc-chat-preview,
  .wc-bento-tall .wc-chat-preview {
    margin-top: 16px;
    min-height: 0;
    flex: initial;
  }

  .wc-bento-inbox {
    min-height: 136px;
    gap: 8px;
  }

  .wc-bento-inbox div,
  .wc-bento-inbox div:nth-child(1),
  .wc-bento-inbox div:nth-child(2),
  .wc-bento-inbox div:nth-child(3),
  .wc-bento-inbox div:nth-child(4) {
    min-height: 104px;
  }

  .wc-inbox-sidebar,
  .wc-chat-list,
  .wc-lead-pane,
  .wc-conversation-pane {
    min-height: 0;
  }

  .wc-inbox-sidebar,
  .wc-chat-list,
  .wc-lead-pane {
    display: none;
  }

  .wc-conversation-pane {
    min-height: 320px;
  }

  .wc-steps-line {
    display: none;
  }

  .wc-section,
  .wc-hero {
    padding-bottom: 72px;
  }

  .wc-pricing-actions,
  .wc-hero-actions {
    align-items: stretch;
  }

  .wc-pricing-actions .wc-btn,
  .wc-hero-actions .wc-btn {
    width: 100%;
  }
}
