/* [project]/components/NavBar.module.css [app-client] (css) */
.NavBar-module__8u-qnq__nav {
  z-index: 100;
  height: var(--nav-height);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: #ffffffe0;
  border-bottom: 1px solid #10243e12;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.NavBar-module__8u-qnq__inner {
  max-width: var(--content-max);
  padding: 0 var(--space-8);
  align-items: center;
  gap: var(--space-6);
  grid-template-columns: 1fr auto 1fr;
  height: 100%;
  margin: 0 auto;
  display: grid;
}

.NavBar-module__8u-qnq__logo {
  align-items: center;
  gap: var(--space-2);
  color: var(--ocean);
  letter-spacing: -.02em;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
}

.NavBar-module__8u-qnq__logoMark {
  background: var(--ocean);
  width: 28px;
  height: 28px;
  color: var(--white);
  border-radius: var(--radius-sm);
  letter-spacing: 0;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  display: flex;
}

.NavBar-module__8u-qnq__links {
  align-items: center;
  gap: var(--space-1);
  display: flex;
}

.NavBar-module__8u-qnq__links a {
  color: var(--ink-50);
  border-radius: var(--radius-md);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  padding: 6px 12px;
  font-size: .9rem;
  font-weight: 500;
}

.NavBar-module__8u-qnq__links a:hover {
  color: var(--ocean);
  background: #10243e0d;
}

.NavBar-module__8u-qnq__actions {
  align-items: center;
  gap: var(--space-2);
  justify-content: flex-end;
  display: flex;
}

.NavBar-module__8u-qnq__signIn {
  color: var(--ink-50);
  border-radius: var(--radius-md);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  padding: 7px 14px;
  font-size: .9rem;
  font-weight: 500;
}

.NavBar-module__8u-qnq__signIn:hover {
  color: var(--ocean);
  background: #10243e0d;
}

.NavBar-module__8u-qnq__getStarted {
  background: var(--ocean);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  padding: 7px 16px;
  font-size: .875rem;
  font-weight: 600;
}

.NavBar-module__8u-qnq__getStarted:hover {
  background: var(--ocean-80);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #10243e33;
}

.NavBar-module__8u-qnq__burger {
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  display: none;
}

.NavBar-module__8u-qnq__burger:hover {
  background: #10243e0d;
}

.NavBar-module__8u-qnq__burgerLine {
  background: var(--ink-70);
  width: 20px;
  height: 1.5px;
  transition: transform var(--dur-md) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
  border-radius: 2px;
  display: block;
}

.NavBar-module__8u-qnq__burgerTopOpen {
  transform: translateY(6.5px)rotate(45deg);
}

.NavBar-module__8u-qnq__burgerMidOpen {
  opacity: 0;
  transform: scaleX(0);
}

.NavBar-module__8u-qnq__burgerBotOpen {
  transform: translateY(-6.5px)rotate(-45deg);
}

@media (max-width: 768px) {
  .NavBar-module__8u-qnq__inner {
    padding: 0 var(--space-5);
    grid-template-columns: 1fr auto;
  }

  .NavBar-module__8u-qnq__links, .NavBar-module__8u-qnq__actions {
    display: none;
  }

  .NavBar-module__8u-qnq__burger {
    display: flex;
  }

  .NavBar-module__8u-qnq__links.NavBar-module__8u-qnq__open {
    inset: var(--nav-height) 0 0;
    background: var(--white);
    padding: var(--space-6) var(--space-5);
    align-items: stretch;
    gap: var(--space-1);
    border-top: 1px solid var(--border);
    flex-direction: column;
    display: flex;
    position: fixed;
  }

  .NavBar-module__8u-qnq__links.NavBar-module__8u-qnq__open a {
    padding: 12px var(--space-4);
    font-size: 1rem;
  }
}

/* [project]/components/FestivalTimeline.module.css [app-client] (css) */
.FestivalTimeline-module__FWeLNa__wrap {
  gap: var(--space-10);
  flex-direction: column;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__rail {
  padding-bottom: var(--space-2);
  scrollbar-width: none;
  align-items: flex-start;
  gap: 0;
  display: flex;
  overflow-x: auto;
}

.FestivalTimeline-module__FWeLNa__rail::-webkit-scrollbar {
  display: none;
}

.FestivalTimeline-module__FWeLNa__node {
  opacity: .55;
  min-width: 80px;
  transition: opacity var(--duration) var(--ease);
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__node.FestivalTimeline-module__FWeLNa__active {
  opacity: 1;
}

.FestivalTimeline-module__FWeLNa__nodeEmoji {
  z-index: 1;
  width: 52px;
  height: 52px;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
  background: #ffffff1a;
  border: 2px solid #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  display: flex;
  position: relative;
}

.FestivalTimeline-module__FWeLNa__node.FestivalTimeline-module__FWeLNa__active .FestivalTimeline-module__FWeLNa__nodeEmoji {
  background: var(--marigold);
  border-color: var(--marigold);
  box-shadow: 0 0 0 4px #f4a52b4d;
}

.FestivalTimeline-module__FWeLNa__nodeLine {
  z-index: 0;
  background: #ffffff26;
  width: 100%;
  height: 2px;
  margin-top: -26px;
  position: relative;
}

.FestivalTimeline-module__FWeLNa__node:last-child .FestivalTimeline-module__FWeLNa__nodeLine {
  display: none;
}

.FestivalTimeline-module__FWeLNa__nodeLabel {
  margin-top: var(--space-3);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__nodeDate {
  color: #ffffff80;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
}

.FestivalTimeline-module__FWeLNa__nodeName {
  color: #ffffffd9;
  font-size: 12px;
  font-weight: 600;
}

.FestivalTimeline-module__FWeLNa__node.FestivalTimeline-module__FWeLNa__active .FestivalTimeline-module__FWeLNa__nodeDate {
  color: var(--marigold);
}

.FestivalTimeline-module__FWeLNa__node.FestivalTimeline-module__FWeLNa__active .FestivalTimeline-module__FWeLNa__nodeName {
  color: var(--white);
}

.FestivalTimeline-module__FWeLNa__spotlight {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  gap: var(--space-6);
  background: #ffffff12;
  border: 1px solid #ffffff24;
  flex-direction: column;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__spotlightHeader {
  align-items: center;
  gap: var(--space-4);
  display: flex;
}

.FestivalTimeline-module__FWeLNa__spotlightEmoji {
  background: var(--marigold);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__spotlightTitle {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
}

.FestivalTimeline-module__FWeLNa__spotlightSub {
  color: #fff9;
  margin-top: 2px;
  font-size: .8125rem;
}

.FestivalTimeline-module__FWeLNa__spotlightBadge {
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: var(--radius-full);
  white-space: nowrap;
  background: #1fb6a633;
  margin-left: auto;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.FestivalTimeline-module__FWeLNa__suggestedPosts {
  gap: var(--space-4);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.FestivalTimeline-module__FWeLNa__suggestion {
  border-radius: var(--radius-md);
  padding: var(--space-4);
  gap: var(--space-4);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  flex-direction: column;
  display: flex;
}

.FestivalTimeline-module__FWeLNa__suggestionLang {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--marigold);
  font-size: 11px;
  font-weight: 700;
}

.FestivalTimeline-module__FWeLNa__suggestionText {
  color: #ffffffd9;
  flex: 1;
  font-size: .8125rem;
  line-height: 1.65;
}

.FestivalTimeline-module__FWeLNa__suggestionActions {
  gap: var(--space-2);
  display: flex;
}

.FestivalTimeline-module__FWeLNa__btnApprove {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
  border: none;
  flex: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
}

.FestivalTimeline-module__FWeLNa__btnApprove:hover {
  background: #17a195;
}

.FestivalTimeline-module__FWeLNa__btnEdit {
  color: #ffffffa6;
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
  background: none;
  border: 1px solid #fff3;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
}

.FestivalTimeline-module__FWeLNa__btnEdit:hover {
  color: var(--white);
  border-color: #ffffff80;
}

@media (max-width: 768px) {
  .FestivalTimeline-module__FWeLNa__suggestedPosts {
    grid-template-columns: 1fr;
  }

  .FestivalTimeline-module__FWeLNa__spotlightBadge {
    display: none;
  }
}

/* [project]/components/PricingCards.module.css [app-client] (css) */
.PricingCards-module__uG2JNG__wrap {
  gap: var(--space-8);
  flex-direction: column;
  display: flex;
}

.PricingCards-module__uG2JNG__toggle {
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  color: var(--ink-50);
  font-size: .9rem;
  display: flex;
}

.PricingCards-module__uG2JNG__toggleActive {
  color: var(--ocean);
  font-weight: 600;
}

.PricingCards-module__uG2JNG__toggleBtn {
  border-radius: var(--radius-full);
  width: 40px;
  height: 22px;
  transition: background var(--dur) var(--ease);
  background: #10243e1f;
  position: relative;
}

.PricingCards-module__uG2JNG__toggleBtn[aria-checked="true"] {
  background: var(--ocean);
}

.PricingCards-module__uG2JNG__toggleThumb {
  background: var(--white);
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.PricingCards-module__uG2JNG__toggleThumbOn {
  transform: translateX(18px);
}

.PricingCards-module__uG2JNG__toggleSave {
  background: var(--teal-10);
  color: var(--teal);
  border-radius: var(--radius-full);
  margin-left: 3px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

.PricingCards-module__uG2JNG__grid {
  gap: var(--space-4);
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  display: grid;
}

.PricingCards-module__uG2JNG__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  gap: var(--space-5);
  transition: box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
  flex-direction: column;
  display: flex;
  position: relative;
}

.PricingCards-module__uG2JNG__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.PricingCards-module__uG2JNG__featured {
  background: var(--ocean);
  box-shadow: var(--shadow-lg);
  border-color: #0000;
  transform: translateY(-8px);
}

.PricingCards-module__uG2JNG__featured:hover {
  transform: translateY(-10px);
}

.PricingCards-module__uG2JNG__badge {
  background: var(--marigold);
  color: var(--ocean);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.PricingCards-module__uG2JNG__cardTop {
  gap: var(--space-2);
  flex-direction: column;
  display: flex;
}

.PricingCards-module__uG2JNG__planName {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-30);
  font-size: 11px;
  font-weight: 700;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__planName {
  color: #ffffff80;
}

.PricingCards-module__uG2JNG__priceRow {
  align-items: baseline;
  gap: 3px;
  margin-top: 2px;
  display: flex;
}

.PricingCards-module__uG2JNG__priceFree {
  color: var(--ocean);
  letter-spacing: -.04em;
  font-size: 2rem;
  font-weight: 800;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__priceFree {
  color: var(--white);
}

.PricingCards-module__uG2JNG__priceUsd {
  color: var(--ocean);
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  font-size: 2.25rem;
  font-weight: 800;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__priceUsd {
  color: var(--white);
}

.PricingCards-module__uG2JNG__pricePer {
  color: var(--ink-30);
  margin-left: 1px;
  font-size: .875rem;
  font-weight: 500;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__pricePer {
  color: #ffffff80;
}

.PricingCards-module__uG2JNG__priceMur {
  color: var(--ink-30);
  font-size: .8125rem;
  font-family: var(--font-mono);
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__priceMur {
  color: #ffffff73;
}

.PricingCards-module__uG2JNG__planDesc {
  color: var(--ink-50);
  margin-top: 2px;
  font-size: .875rem;
  line-height: 1.5;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__planDesc {
  color: #ffffffa6;
}

.PricingCards-module__uG2JNG__features {
  gap: var(--space-3);
  flex-direction: column;
  flex: 1;
  list-style: none;
  display: flex;
}

.PricingCards-module__uG2JNG__feature {
  align-items: flex-start;
  gap: var(--space-2);
  color: var(--ink-50);
  font-size: .875rem;
  line-height: 1.45;
  display: flex;
}

.PricingCards-module__uG2JNG__featured .PricingCards-module__uG2JNG__feature {
  color: #ffffffbf;
}

.PricingCards-module__uG2JNG__checkSvg {
  flex-shrink: 0;
  margin-top: 1px;
}

.PricingCards-module__uG2JNG__cta {
  color: var(--ocean);
  border-radius: var(--radius-md);
  transition: background var(--dur) var(--ease);
  border: 1px solid var(--border);
  background: #10243e0f;
  justify-content: center;
  align-items: center;
  padding: 11px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.PricingCards-module__uG2JNG__cta:hover {
  background: #10243e1a;
  border-color: #10243e26;
}

.PricingCards-module__uG2JNG__ctaFeatured {
  background: var(--marigold);
  color: var(--ocean);
  border-color: #0000;
}

.PricingCards-module__uG2JNG__ctaFeatured:hover {
  background: #e8992a;
}

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

  .PricingCards-module__uG2JNG__featured {
    transform: none;
  }

  .PricingCards-module__uG2JNG__featured:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  .PricingCards-module__uG2JNG__grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__hero {
  min-height: calc(100svh - var(--nav-height));
  align-items: center;
  gap: var(--space-16);
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-8) var(--space-20);
  max-width: var(--content-max);
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  display: grid;
}

.page-module__E0kJGG__heroInner {
  gap: var(--space-6);
  flex-direction: column;
  display: flex;
}

.page-module__E0kJGG__heroBadge {
  align-items: center;
  gap: var(--space-2);
  background: var(--marigold-10);
  color: var(--ocean-80);
  border-radius: var(--radius-full);
  border: 1px solid #f4a52b4d;
  width: fit-content;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
}

.page-module__E0kJGG__heroBadgeDot {
  background: var(--marigold);
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  animation: 2.5s infinite page-module__E0kJGG__pulse;
}

@keyframes page-module__E0kJGG__pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.8);
  }
}

.page-module__E0kJGG__heroHeading {
  letter-spacing: -.04em;
  color: var(--ocean);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
}

.page-module__E0kJGG__heroHighlight {
  background: linear-gradient(135deg, var(--marigold) 0%, #e8992a 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.page-module__E0kJGG__heroSub {
  color: var(--ink-50);
  max-width: 480px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-module__E0kJGG__heroSub strong {
  color: var(--ocean);
  font-weight: 600;
}

.page-module__E0kJGG__heroCtas {
  gap: var(--space-3);
  padding-top: var(--space-2);
  flex-wrap: wrap;
  display: flex;
}

.page-module__E0kJGG__btnPrimary {
  background: var(--ocean);
  color: var(--white);
  border-radius: var(--radius-md);
  letter-spacing: -.01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: .9375rem;
  font-weight: 600;
  display: inline-flex;
}

.page-module__E0kJGG__btnPrimary:hover {
  background: var(--ocean-80);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #10243e40;
}

.page-module__E0kJGG__btnGhost {
  color: var(--ink-70);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease);
  background: none;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-size: .9375rem;
  font-weight: 500;
  display: inline-flex;
}

.page-module__E0kJGG__btnGhost:hover {
  color: var(--ocean);
  background: #10243e08;
  border-color: #10243e33;
}

.page-module__E0kJGG__heroStats {
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-4);
  flex-wrap: wrap;
  display: flex;
}

.page-module__E0kJGG__heroStatItem {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.page-module__E0kJGG__heroStatNum {
  color: var(--ocean);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__E0kJGG__heroStatLabel {
  color: var(--ink-50);
  font-size: 12px;
  font-weight: 400;
}

.page-module__E0kJGG__heroStatDivider {
  background: var(--border);
  flex-shrink: 0;
  width: 1px;
  height: 28px;
}

.page-module__E0kJGG__heroVisual {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.page-module__E0kJGG__browserFrame {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid #10243e1a;
  width: 380px;
  overflow: hidden;
}

.page-module__E0kJGG__browserBar {
  background: #f0ede8;
  border-bottom: 1px solid #10243e12;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  display: flex;
}

.page-module__E0kJGG__dot1, .page-module__E0kJGG__dot2, .page-module__E0kJGG__dot3 {
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
}

.page-module__E0kJGG__dot1 {
  background: #ff5f57;
}

.page-module__E0kJGG__dot2 {
  background: #febc2e;
}

.page-module__E0kJGG__dot3 {
  background: #28c840;
}

.page-module__E0kJGG__browserUrl {
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-50);
  text-align: center;
  background: #10243e12;
  flex: 1;
  padding: 3px 10px;
}

.page-module__E0kJGG__postCard {
  background: var(--white);
}

.page-module__E0kJGG__postCardHeader {
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid var(--border);
  display: flex;
}

.page-module__E0kJGG__postCardAvatar {
  background: linear-gradient(135deg, var(--marigold), var(--teal));
  width: 38px;
  height: 38px;
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.page-module__E0kJGG__postCardHeaderInfo {
  flex: 1;
  min-width: 0;
}

.page-module__E0kJGG__postCardName {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.page-module__E0kJGG__postCardMeta {
  color: var(--ink-50);
  margin-top: 1px;
  font-size: 11.5px;
}

.page-module__E0kJGG__postCardBadge {
  color: var(--success);
  border-radius: var(--radius-full);
  background: #16a34a14;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
}

.page-module__E0kJGG__postCardBadgeDot {
  background: var(--success);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.page-module__E0kJGG__postCardImageArea {
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, #10243e 0%, #1a3660 60%, #1fb6a6 100%);
  flex-direction: column;
  height: 150px;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__postCardFestival {
  gap: var(--space-5);
  align-items: center;
  font-size: 2rem;
  display: flex;
}

.page-module__E0kJGG__diya {
  animation: 2.5s ease-in-out infinite page-module__E0kJGG__floatDiya;
  animation-delay: var(--delay, 0s);
  display: inline-block;
}

@keyframes page-module__E0kJGG__floatDiya {
  0%, 100% {
    transform: translateY(0)rotate(-5deg);
  }

  50% {
    transform: translateY(-8px)rotate(5deg);
  }
}

.page-module__E0kJGG__festivalLabel {
  color: #fff9;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

.page-module__E0kJGG__postCardBody {
  padding: var(--space-4);
}

.page-module__E0kJGG__postCardCaption {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.page-module__E0kJGG__postCardHashtags {
  color: var(--ocean-60);
  font-size: 12px;
  font-weight: 500;
}

.page-module__E0kJGG__postCardFooter {
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border);
  background: #10243e04;
  display: flex;
}

.page-module__E0kJGG__postCardStat {
  color: var(--ink-50);
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.page-module__E0kJGG__postCardStat svg {
  color: var(--ink-30);
}

.page-module__E0kJGG__postCardAIBadge {
  color: var(--teal);
  background: var(--teal-10);
  border-radius: var(--radius-full);
  margin-left: auto;
  padding: 2px 8px;
  font-size: 10.5px;
  font-weight: 600;
}

.page-module__E0kJGG__trustBar {
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  flex-wrap: wrap;
  display: flex;
}

.page-module__E0kJGG__trustLabel {
  color: var(--ink-30);
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

.page-module__E0kJGG__trustLogos {
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-module__E0kJGG__trustLogo {
  color: var(--ink-30);
  letter-spacing: .02em;
  font-size: 13px;
  font-weight: 600;
}

.page-module__E0kJGG__sectionContainer {
  max-width: var(--content-max);
  padding: var(--space-24) var(--space-8);
  margin: 0 auto;
}

.page-module__E0kJGG__sectionLabel {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
  font-size: 12px;
  font-weight: 700;
}

.page-module__E0kJGG__sectionHeading {
  letter-spacing: -.03em;
  color: var(--ocean);
  margin-bottom: var(--space-5);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  line-height: 1.18;
}

.page-module__E0kJGG__sectionSub {
  color: var(--ink-50);
  max-width: 580px;
  margin-bottom: var(--space-12);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.page-module__E0kJGG__festivalSection {
  background: var(--ocean);
}

.page-module__E0kJGG__festivalSection .page-module__E0kJGG__sectionLabel {
  color: var(--marigold);
}

.page-module__E0kJGG__festivalSection .page-module__E0kJGG__sectionHeading {
  color: var(--white);
}

.page-module__E0kJGG__festivalSection .page-module__E0kJGG__sectionSub {
  color: #ffffffa6;
}

.page-module__E0kJGG__featuresSection {
  background: var(--white);
}

.page-module__E0kJGG__featureGrid {
  gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.page-module__E0kJGG__featureCard {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  gap: var(--space-4);
  transition: box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease), border-color var(--dur-md) var(--ease);
  flex-direction: column;
  display: flex;
}

.page-module__E0kJGG__featureCard:hover {
  box-shadow: var(--shadow-md);
  border-color: #10243e24;
  transform: translateY(-2px);
}

.page-module__E0kJGG__featureIcon {
  border-radius: var(--radius-md);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.page-module__E0kJGG__featureTitle {
  color: var(--ocean);
  letter-spacing: -.01em;
  font-size: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__featureDesc {
  color: var(--ink-50);
  font-size: .9rem;
  line-height: 1.7;
}

.page-module__E0kJGG__stepsSection {
  background: var(--paper);
}

.page-module__E0kJGG__stepsGrid {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.page-module__E0kJGG__stepCard {
  background: var(--step-bg, var(--paper));
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.page-module__E0kJGG__stepNumber {
  font-size: 2.75rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--step-num, var(--ink-30));
  margin-bottom: var(--space-5);
  letter-spacing: -.05em;
  line-height: 1;
}

.page-module__E0kJGG__stepTitle {
  color: var(--ocean);
  margin-bottom: var(--space-2);
  letter-spacing: -.01em;
  font-size: 1.0625rem;
  font-weight: 700;
}

.page-module__E0kJGG__stepDesc {
  color: var(--ink-50);
  font-size: .9rem;
  line-height: 1.7;
}

.page-module__E0kJGG__moatSection {
  background: var(--white);
}

.page-module__E0kJGG__moatGrid {
  gap: var(--space-5);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.page-module__E0kJGG__moatCard {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-md) var(--ease), transform var(--dur-md) var(--ease);
}

.page-module__E0kJGG__moatCard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.page-module__E0kJGG__moatIcon {
  background: var(--teal-10);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  color: var(--teal);
  margin-bottom: var(--space-4);
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-module__E0kJGG__moatTitle {
  color: var(--ocean);
  margin-bottom: var(--space-2);
  letter-spacing: -.01em;
  font-size: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__moatDesc {
  color: var(--ink-50);
  font-size: .875rem;
  line-height: 1.7;
}

.page-module__E0kJGG__pricingSection {
  background: var(--paper);
}

.page-module__E0kJGG__pricingNote {
  text-align: center;
  color: var(--ink-30);
  margin-top: var(--space-8);
  font-size: .875rem;
}

.page-module__E0kJGG__testimonialSection {
  background: var(--ocean);
}

.page-module__E0kJGG__testimonialSection .page-module__E0kJGG__sectionLabel {
  color: var(--marigold);
}

.page-module__E0kJGG__testimonialSection .page-module__E0kJGG__sectionHeading {
  color: var(--white);
}

.page-module__E0kJGG__testimonialGrid {
  gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.page-module__E0kJGG__testimonial {
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  gap: var(--space-4);
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  flex-direction: column;
  display: flex;
}

.page-module__E0kJGG__testimonialStars {
  color: var(--marigold);
  letter-spacing: .1em;
  font-size: 12px;
}

.page-module__E0kJGG__testimonialQuote {
  color: #ffffffd9;
  flex: 1;
  font-size: .9375rem;
  font-style: italic;
  line-height: 1.75;
}

.page-module__E0kJGG__testimonialAuthor {
  padding-top: var(--space-2);
  border-top: 1px solid #ffffff14;
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.page-module__E0kJGG__testimonialAuthor strong {
  color: var(--white);
  font-size: .875rem;
  font-weight: 600;
}

.page-module__E0kJGG__testimonialAuthor span {
  color: var(--marigold);
  font-size: .8125rem;
}

.page-module__E0kJGG__ctaSection {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.page-module__E0kJGG__ctaInner {
  max-width: 640px;
  padding: var(--space-24) var(--space-8);
  text-align: center;
  align-items: center;
  gap: var(--space-5);
  flex-direction: column;
  margin: 0 auto;
  display: flex;
}

.page-module__E0kJGG__ctaLabel {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.page-module__E0kJGG__ctaHeading {
  letter-spacing: -.03em;
  color: var(--ocean);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.page-module__E0kJGG__ctaSub {
  color: var(--ink-50);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.page-module__E0kJGG__ctaActions {
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.page-module__E0kJGG__ctaBtn {
  background: var(--ocean);
  color: var(--white);
  border-radius: var(--radius-md);
  letter-spacing: -.01em;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  align-items: center;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
}

.page-module__E0kJGG__ctaBtn:hover {
  background: var(--ocean-80);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px #10243e40;
}

.page-module__E0kJGG__ctaLink {
  color: var(--ink-50);
  transition: color var(--dur) var(--ease);
  font-size: .9375rem;
  font-weight: 500;
}

.page-module__E0kJGG__ctaLink:hover {
  color: var(--ocean);
}

.page-module__E0kJGG__footer {
  background: var(--ocean);
  color: #fff9;
}

.page-module__E0kJGG__footerInner {
  max-width: var(--content-max);
  padding: var(--space-16) var(--space-8) var(--space-12);
  gap: var(--space-16);
  margin: 0 auto;
  display: flex;
}

.page-module__E0kJGG__footerBrand {
  gap: var(--space-3);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.page-module__E0kJGG__footerLogo {
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  letter-spacing: -.02em;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
}

.page-module__E0kJGG__footerLogoMark {
  background: var(--marigold);
  width: 26px;
  height: 26px;
  color: var(--ocean);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  display: flex;
}

.page-module__E0kJGG__footerTagline {
  color: #fff6;
  padding-left: 34px;
  font-size: .875rem;
}

.page-module__E0kJGG__footerNav {
  gap: var(--space-16);
  display: flex;
}

.page-module__E0kJGG__footerNavCol {
  gap: var(--space-3);
  flex-direction: column;
  display: flex;
}

.page-module__E0kJGG__footerNavTitle {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #ffffff59;
  margin-bottom: var(--space-1);
  font-size: 11px;
  font-weight: 700;
}

.page-module__E0kJGG__footerNavCol a {
  color: #fff9;
  transition: color var(--dur) var(--ease);
  font-size: .875rem;
}

.page-module__E0kJGG__footerNavCol a:hover {
  color: var(--white);
}

.page-module__E0kJGG__footerBottom {
  max-width: var(--content-max);
  padding: var(--space-5) var(--space-8);
  color: #ffffff4d;
  border-top: 1px solid #ffffff12;
  justify-content: space-between;
  margin: 0 auto;
  font-size: .8125rem;
  display: flex;
}

@media (max-width: 1024px) {
  .page-module__E0kJGG__featureGrid, .page-module__E0kJGG__moatGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-module__E0kJGG__hero {
    padding: calc(var(--nav-height) + var(--space-10)) var(--space-5) var(--space-16);
    text-align: center;
    gap: var(--space-10);
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-module__E0kJGG__heroSub {
    max-width: 100%;
  }

  .page-module__E0kJGG__heroCtas, .page-module__E0kJGG__heroStats {
    justify-content: center;
  }

  .page-module__E0kJGG__heroVisual {
    order: -1;
  }

  .page-module__E0kJGG__browserFrame {
    width: min(380px, 100%);
  }

  .page-module__E0kJGG__stepsGrid, .page-module__E0kJGG__testimonialGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__footerInner {
    gap: var(--space-10);
    flex-direction: column;
  }

  .page-module__E0kJGG__footerNav {
    gap: var(--space-8);
    flex-wrap: wrap;
  }

  .page-module__E0kJGG__footerTagline {
    padding-left: 0;
  }

  .page-module__E0kJGG__footerBottom {
    gap: var(--space-2);
    text-align: center;
    flex-direction: column;
  }

  .page-module__E0kJGG__sectionContainer, .page-module__E0kJGG__ctaInner {
    padding: var(--space-16) var(--space-5);
  }
}

@media (max-width: 480px) {
  .page-module__E0kJGG__featureGrid, .page-module__E0kJGG__moatGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__trustBar {
    gap: var(--space-4);
  }

  .page-module__E0kJGG__heroStatDivider {
    display: none;
  }
}

/*# sourceMappingURL=_1annkor._.css.map*/