:root {
  --bg-page: #fafaf8;
  --bg-surface: #ffffff;
  --bg-muted: #f4f3f0;
  --bg-accent: #fff7ed;
  --bg-ink: #111827;

  --color-primary: #e8650a;
  --color-primary-hover: #c4520a;
  --color-primary-glow: rgba(232, 101, 10, 0.1);
  --color-primary-border: rgba(232, 101, 10, 0.22);

  --color-ink: #111827;
  --color-body: #374151;
  --color-muted: #6b7280;
  --color-subtle: #9ca3af;

  --border: rgba(0, 0, 0, 0.08);
  --border-md: rgba(0, 0, 0, 0.12);

  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.09), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.11), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-orange: 0 10px 28px rgba(232, 101, 10, 0.28);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: linear-gradient(165deg, #fafaf8 0%, #fff7ed 48%, #fafaf8 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  padding: 1.2rem clamp(1.2rem, 4vw, 4rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shape-a {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232, 101, 10, 0.12), rgba(232, 101, 10, 0));
}

.hero-bg-shape-b {
  left: -180px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0));
}

.topbar,
.hero-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.topbar.scrolled {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 248, 0.92);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
}

.brand-logo {
  width: min(260px, 52vw);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--color-muted);
  font-weight: 600;
}

.topbar-links a {
  text-decoration: none;
}

.topbar-links a:hover {
  color: var(--color-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-md);
  color: var(--color-ink);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hero-grid {
  max-width: 1200px;
  margin: clamp(1.3rem, 3.5vw, 2.2rem) auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

h1 {
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}

h1 span {
  color: var(--color-primary);
}

.hero-lead {
  margin: 0;
  max-width: 58ch;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.hero-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-proof {
  margin-top: 1.2rem;
  border: 1px solid var(--color-primary-border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
  max-width: 540px;
}

.social-proof-label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.social-proof-stat {
  margin: 0.35rem 0 0;
}

.social-proof-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  color: var(--color-ink);
}

.social-proof-note {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  color: var(--color-body);
}

.hero-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  align-items: stretch;
}

.media-stack {
  display: grid;
  gap: 0.9rem;
}

.media-card {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.media-card img,
.split-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.media-card-main img {
  height: 100%;
  min-height: 420px;
}

.media-stack .media-card img {
  min-height: 205px;
  max-height: 230px;
}

.logos-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 1.4rem 1rem;
  text-align: center;
}

.logos-strip p {
  margin: 0;
  color: var(--color-subtle);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.logos-row {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.logos-row span {
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  padding: 0.36rem 0.9rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4.5vw, 4rem);
}

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

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

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

.section-head {
  max-width: 760px;
}

.eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 1.22rem;
}

.feature-card p {
  margin: 0.6rem 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: center;
}

.split-copy p {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.split-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.split-copy strong {
  color: var(--color-primary);
}

.split-media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.split-media img {
  min-height: 420px;
}

.testimonials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s var(--ease-out-expo);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
  margin: 0;
  color: #d97706;
  letter-spacing: 0.15em;
}

.testimonial-card p {
  margin: 0.75rem 0 0;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--color-ink);
}

.pricing-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border-color: var(--color-primary-border);
  box-shadow: 0 0 0 1px var(--color-primary-border), var(--shadow-sm);
}

.badge {
  position: absolute;
  top: -12px;
  left: 1rem;
  margin: 0;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: #fff;
  padding: 0.26rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 1.35rem;
}

.price-main {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  color: var(--color-primary);
  line-height: 1.1;
}

.price-main span {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  margin-left: 0.3rem;
}

.price-context {
  margin: 0.6rem 0 0;
  color: var(--color-body);
}

.price-secondary {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
}

.price-secondary strong {
  color: var(--color-ink);
}

.pricing-card ul {
  margin: 0.95rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.register-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.register-copy p {
  margin: 1rem 0 0;
  color: var(--color-muted);
}

.register-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

form {
  display: grid;
  gap: 0.6rem;
}

label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-body);
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
  padding: 0.65rem 0.8rem;
  font: inherit;
}

input:focus {
  outline: none;
  border-color: rgba(232, 101, 10, 0.95);
  box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.18);
}

button[type="submit"] {
  margin-top: 0.35rem;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #eb7e2c, var(--color-primary));
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

button[type="submit"]:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.turnstile-container {
  margin-top: 0.18rem;
  margin-bottom: 0.2rem;
  padding: 0.72rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-muted);
}

.turnstile-label {
  margin: 0 0 0.45rem;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.turnstile-widget {
  min-height: 66px;
}

.form-message {
  margin: 0.35rem 0 0;
  min-height: 1.3rem;
  font-size: 0.92rem;
}

.form-message.ok {
  color: #15803d;
}

.form-message.error {
  color: #dc2626;
}

.hidden {
  display: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.faq-list {
  margin-top: 2rem;
  max-width: 760px;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.05rem 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  color: var(--color-primary);
  font-size: 1.08rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  margin: 0;
  color: var(--color-muted);
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding: 0 0 1rem;
}

.site-footer {
  background: var(--bg-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 2rem clamp(1.2rem, 4.5vw, 4rem);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  width: min(220px, 44vw);
  height: auto;
}

.footer-inner p {
  margin: 0.5rem 0 0;
}

.footer-note {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="right"] {
  transform: translateX(36px);
}

[data-reveal="scale"] {
  transform: scale(0.93);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

[data-stagger].revealed > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

[data-stagger].revealed > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 80ms;
}

[data-stagger].revealed > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 160ms;
}

[data-stagger].revealed > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 240ms;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .register-wrap,
  .pricing-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

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

  .media-card-main img,
  .media-stack .media-card img,
  .split-media img {
    min-height: 280px;
    max-height: 360px;
  }

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

@media (max-width: 780px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topbar-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    font-size: 0.94rem;
  }

  .hero-cta-row,
  .btn {
    width: 100%;
  }

  .btn {
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
