* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --bg-alt: #f1ede6;
  --surface: #ffffff;
  --ink: #171512;
  --ink-secondary: #3b3733;
  --ink-muted: #756c65;
  --accent: #c8684a;
  --accent-strong: #a8563b;
  --accent-soft: #f1d8cc;
  --accent-cool: #3e4a41;
  --border: #e1dbd2;
  --rule: rgba(23, 21, 18, 0.12);
  --shadow-lg: 0 18px 50px rgba(19, 16, 12, 0.12);
  --shadow-md: 0 14px 34px rgba(19, 16, 12, 0.1);
  --shadow-sm: 0 10px 24px rgba(19, 16, 12, 0.08);
  --radius: 16px;
  --radius-lg: 26px;
  --font-body: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
  --text-sm: clamp(0.9rem, 0.85rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.92rem + 0.5vw, 1.15rem);
  --text-lg: clamp(1.15rem, 1rem + 0.8vw, 1.4rem);
  --text-xl: clamp(1.3rem, 1.05rem + 1.4vw, 1.9rem);
  --text-2xl: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem);
  --text-3xl: clamp(2.4rem, 1.4rem + 4vw, 4.2rem);
  --text-4xl: clamp(3rem, 1.6rem + 5.4vw, 5rem);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

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

section,
footer {
  position: relative;
  z-index: 1;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 18, 0.025) 1px, transparent 1px);
  background-size: 140px 140px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

nav {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.9);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(247, 244, 239, 0.97);
  box-shadow: 0 6px 24px rgba(19, 16, 12, 0.06);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #ffb478;
  color: #1b1512;
  box-shadow: none;
  border: 1px solid #ffb478;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ff9f5f;
  border-color: #ff9f5f;
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-secondary);
  border: 1px solid var(--rule);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 110px 24px 48px;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.hero {
  padding: clamp(120px, 14vh, 160px) 0 clamp(80px, 10vh, 110px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(200, 104, 74, 0.12), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(62, 74, 65, 0.12), transparent 45%);
  z-index: 0;
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

.stripe-hero {
  position: absolute;
  top: -100px;
  left: -120px;
  right: -200px;
  bottom: -100px;
  overflow: visible;
}

.stripe-ribbon {
  position: absolute;
  transform: rotate(-48deg);
}

/* Bar 1: Blue/Lavender - top */
.stripe-ribbon-one {
  width: 900px;
  height: 140px;
  border-radius: 70px;
  top: 20px;
  left: -60px;
  background: linear-gradient(
    to right,
    #9ca8e8 0%,
    #a8b4f0 15%,
    #c0c8f5 40%,
    #dce0fa 65%,
    #f0f2ff 85%,
    #ffffff 100%
  );
  box-shadow: 0 10px 40px rgba(156, 168, 232, 0.4);
}

.stripe-ribbon-one::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* Bar 2: Peach/Coral */
.stripe-ribbon-two {
  width: 900px;
  height: 130px;
  border-radius: 65px;
  top: 130px;
  left: 10px;
  background: linear-gradient(
    to right,
    #f0b088 0%,
    #f5c4a0 15%,
    #f8d8c0 40%,
    #fce8dc 65%,
    #fef4ee 85%,
    #ffffff 100%
  );
  box-shadow: 0 10px 40px rgba(240, 176, 136, 0.35);
}

.stripe-ribbon-two::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* Bar 3: Light purple/lavender gradient */
.stripe-ribbon-three {
  width: 900px;
  height: 110px;
  border-radius: 55px;
  top: 230px;
  left: 70px;
  background: linear-gradient(
    to right,
    #c8b8e0 0%,
    #d4c8e8 15%,
    #e4daf0 40%,
    #f0eaf6 65%,
    #f8f4fb 85%,
    #ffffff 100%
  );
  box-shadow: 0 8px 35px rgba(200, 184, 224, 0.3);
}

.stripe-ribbon-three::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* Bar 4: Pink/Rose - bottom */
.stripe-ribbon-four {
  width: 900px;
  height: 120px;
  border-radius: 60px;
  top: 310px;
  left: 130px;
  background: linear-gradient(
    to right,
    #e8b0c0 0%,
    #f0c4d0 15%,
    #f5d8e0 40%,
    #fae8ee 65%,
    #fdf4f7 85%,
    #ffffff 100%
  );
  box-shadow: 0 8px 35px rgba(232, 176, 192, 0.3);
}

.stripe-ribbon-four::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 60%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 24px 0 20px;
}

.hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: 24px;
}

.hero .btn-primary {
  background: #ffb478;
  border-color: #ffb478;
  color: #1b1512;
}

.hero .btn-primary:hover {
  background: #ff9f5f;
  border-color: #ff9f5f;
  box-shadow: var(--shadow-sm);
}

@keyframes ribbonFloat {
  0% {
    transform: translateY(0) rotate(-48deg);
  }
  50% {
    transform: translateY(-6px) rotate(-48deg);
  }
  100% {
    transform: translateY(0) rotate(-48deg);
  }
}

.hero .intro {
  font-size: var(--text-lg);
  color: var(--ink-secondary);
  max-width: 560px;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.section {
  padding: clamp(80px, 10vh, 120px) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-radius: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.section h2 {
  font-size: var(--text-2xl);
  margin-bottom: 24px;
}

.section h2 span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.pillars,
.pain-points,
.services-grid,
.team-grid,
.beliefs-list,
.workflow-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

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

.pillar,
.pain-point,
.service-item,
.team-member,
.belief-item,
.workflow-item {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: 0;
  border: 1px solid var(--rule);
  position: relative;
  box-shadow: none;
  transition: border 0.25s ease, transform 0.25s ease;
}

.pillar::before,
.service-item::before,
.team-member::before,
.workflow-item::before,
.belief-item::before {
  display: none;
}

.pillar > *,
.pain-point > *,
.service-item > *,
.team-member > *,
.belief-item > *,
.workflow-item > * {
  position: relative;
  z-index: 1;
}

.pillar:hover,
.pain-point:hover,
.service-item:hover,
.team-member:hover,
.belief-item:hover,
.workflow-item:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

.pillar h3,
.team-member h3 {
  font-size: var(--text-xl);
  margin-bottom: 12px;
}

.pillar p,
.pain-point p,
.service-item p,
.team-member p,
.belief-text,
.workflow-item p {
  color: var(--ink-secondary);
  font-size: var(--text-base);
}

.pillar a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.pillar a:hover {
  text-decoration: underline;
}

.strategy-content p {
  font-size: var(--text-lg);
  color: var(--ink-secondary);
  margin-bottom: 18px;
}

.difference {
  display: grid;
  gap: 60px;
}

@media (min-width: 1024px) {
  .difference {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.difference-content p {
  font-size: var(--text-lg);
  color: var(--ink-secondary);
  margin-bottom: 20px;
}

.quote-block {
  background: linear-gradient(
    135deg,
    #a8b4f0 0%,
    #c8b8e0 35%,
    #f0c4a8 70%,
    #e8c4d0 100%
  );
  color: var(--ink);
  padding: 64px 56px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(168, 180, 240, 0.25);
  border: none;
}

.quote-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.quote-block::after {
  display: none;
}

.quote-block p {
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  gap: 24px;
}

.faq-question:hover {
  color: var(--ink);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 360px;
  padding-bottom: 26px;
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--ink-secondary);
}

.cta {
  padding: clamp(90px, 12vh, 150px) 0;
  text-align: center;
  background: var(--bg-alt);
  color: var(--ink);
  border-radius: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cta::before {
  display: none;
}

.cta h2 {
  font-size: var(--text-4xl);
  margin-bottom: 28px;
  color: var(--ink);
}

.cta .btn-primary {
  background: #ffb478;
  color: #1b1512;
}

.cta .btn-primary:hover {
  background: #ff9f5f;
}

footer {
  padding: 70px 0 50px;
  color: var(--ink);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--ink-muted);
}

.footer-right a {
  color: var(--ink);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
}

.footer-right a:hover {
  color: var(--accent);
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-member .role {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.team-member a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.team-member a:hover {
  text-decoration: underline;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--ink-muted);
  margin-top: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.linkedin-link:hover {
  background: #0077b5;
  color: #ffffff;
  text-decoration: none;
}

.linkedin-link svg {
  flex-shrink: 0;
}

.beliefs-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.belief-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.belief-text {
  font-size: var(--text-base);
  color: var(--ink-secondary);
}

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

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

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.beliefs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.belief {
  background: var(--surface);
  padding: 24px;
  border-radius: 0;
  border: 1px solid var(--rule);
}

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

.workflow-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.role {
  color: var(--ink-muted);
}

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.2s;
}

.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.3s;
}

.reveal-stagger.visible > *:nth-child(5) {
  transition-delay: 0.4s;
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beliefs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  nav .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .hero-visual {
    order: 2;
    min-height: 280px;
  }

  .stripe-hero {
    top: -60px;
    left: -80px;
    right: -100px;
    bottom: -60px;
  }

  .stripe-ribbon-one {
    width: 500px;
    height: 80px;
    border-radius: 40px;
    top: 20px;
    left: -30px;
  }

  .stripe-ribbon-two {
    width: 500px;
    height: 75px;
    border-radius: 38px;
    top: 85px;
    left: 10px;
  }

  .stripe-ribbon-three {
    width: 500px;
    height: 65px;
    border-radius: 33px;
    top: 145px;
    left: 45px;
  }

  .stripe-ribbon-four {
    width: 500px;
    height: 70px;
    border-radius: 35px;
    top: 200px;
    left: 80px;
  }

  .team-grid,
  .beliefs-list,
  .pain-points,
  .beliefs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-img {
    max-width: 100%;
  }

  .pillars,
  .services-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

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

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

/* Signup form */
.signup-block {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.signup-block h2 {
  font-size: var(--text-xl);
  margin-bottom: 12px;
}

.signup-block > p {
  color: var(--ink-secondary);
  margin-bottom: 28px;
}

.signup-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.signup-form input[type="email"]:focus {
  border-color: var(--ink);
}

.signup-form input[type="email"]::placeholder {
  color: var(--ink-muted);
}

.signup-note {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-top: 16px;
}

.signup-block-gradient {
  position: relative;
  background: linear-gradient(135deg,
    rgba(146, 160, 255, 0.08),
    rgba(255, 180, 120, 0.1),
    rgba(210, 150, 230, 0.08)
  );
  border: 1px solid rgba(146, 160, 255, 0.25);
}

.signup-block-gradient::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(146, 160, 255, 0.4),
    rgba(255, 180, 120, 0.4),
    rgba(210, 150, 230, 0.4)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Accent pillars for products page */
.pillar-accent {
  border-top: 3px solid transparent;
}

.pillar-accent-blue {
  border-top-color: rgba(146, 160, 255, 0.7);
  background: linear-gradient(180deg, rgba(146, 160, 255, 0.06) 0%, var(--surface) 40%);
}

.pillar-accent-orange {
  border-top-color: rgba(255, 180, 120, 0.8);
  background: linear-gradient(180deg, rgba(255, 180, 120, 0.08) 0%, var(--surface) 40%);
}

.pillar-accent-purple {
  border-top-color: rgba(210, 150, 230, 0.7);
  background: linear-gradient(180deg, rgba(210, 150, 230, 0.06) 0%, var(--surface) 40%);
}

@media (max-width: 540px) {
  .signup-form {
    flex-direction: column;
  }

  .signup-block {
    padding: 40px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .stripe-ribbon {
    animation: none !important;
  }
}
