/* Reset & base */

*,

*::before,

*::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



:root {

  --bg: #f5f7fb;

  --bg-elevated: rgba(255, 255, 255, 0.9);

  --bg-card: rgba(255, 255, 255, 0.96);

  --text-primary: #0f172a;

  --text-secondary: #6b7280;

  --text-muted: #9ca3af;

  --border-subtle: rgba(148, 163, 184, 0.35);

  --border-soft: rgba(148, 163, 184, 0.18);

  --accent-snapvote: #2563eb;

  --accent-molra: #7c3aed;

  --accent-gradient: linear-gradient(135deg, #2563eb, #7c3aed, #22c55e);

  --gradient-rainbow: linear-gradient(135deg, #0066ff 0%, #8b5cf6 25%, #ec4899 50%, #facc15 75%, #22c55e 100%);

  --glass-bg: rgba(255, 255, 255, 0.85);

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);

  --shadow-subtle: 0 12px 30px rgba(15, 23, 42, 0.08);

  --radius-lg: 24px;

  --radius-md: 16px;

  --radius-sm: 999px;

}



html {

  scroll-behavior: smooth;

}



body {

  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",

    sans-serif;

  background: #ffffff;

  color: var(--text-primary);

  -webkit-font-smoothing: antialiased;

}

/* 메인 영역도 톤 통일 */

main {

  background: #ffffff;

}



/* Layout */

.container {

  max-width: 1120px;

  margin: 0 auto;

  padding: 0 1.75rem;

}



/* Animated background orbs */

.bg-gradient-orb {

  position: fixed;

  z-index: -1;

  border-radius: 999px;

  filter: blur(80px);

  opacity: 0.25;

  pointer-events: none;

}



.bg-gradient-orb.orb-1 {

  top: -120px;

  left: -80px;

  width: 280px;

  height: 280px;

  background: radial-gradient(circle at 30% 30%, #60a5fa, transparent 65%);

}



.bg-gradient-orb.orb-2 {

  top: 40%;

  right: -120px;

  width: 320px;

  height: 320px;

  background: radial-gradient(circle at 40% 40%, #c4b5fd, transparent 65%);

}



.bg-gradient-orb.orb-3 {

  bottom: -160px;

  left: 20%;

  width: 300px;

  height: 300px;

  background: radial-gradient(circle at 40% 40%, #f97316, transparent 65%);

}



/* Navbar */

.navbar {

  position: sticky;

  top: 0;

  z-index: 20;

  backdrop-filter: blur(18px);

  background: linear-gradient(

      to bottom,

      rgba(248, 250, 252, 0.88),

      rgba(248, 250, 252, 0.75),

      transparent

    );

  border-bottom: 1px solid rgba(226, 232, 240, 0.7);

}



.navbar .container {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 1.1rem 1.75rem;

}



.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand .brand-logo {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
}

.nav-brand .brand-logo::before {
  content: '#';
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.nav-brand .brand-logo::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #0066ff, #8b5cf6, #ec4899, #facc15, #22c55e, #0066ff);
  z-index: -1;
}

.nav-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-transform: uppercase;
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: skewX(-2deg);
}



.nav-links {

  display: flex;

  align-items: center;

  gap: 1.75rem;

}



.nav-link {

  font-size: 0.9rem;

  font-weight: 500;

  color: var(--text-secondary);

  text-decoration: none;

  position: relative;

  padding-bottom: 0.25rem;

}



.nav-link::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  border-radius: 999px;

  background: var(--accent-gradient);

  transition: width 0.18s ease-out;

}



.nav-link:hover {

  color: var(--text-primary);

}



.nav-link:hover::after {

  width: 100%;

}



.nav-cta {

  text-decoration: none;

  font-size: 0.88rem;

  font-weight: 500;

  padding: 0.6rem 1.4rem;

  border-radius: 999px;

  border: 1px solid rgba(148, 163, 184, 0.4);

  background: linear-gradient(

    to bottom,

    rgba(255, 255, 255, 0.95),

    rgba(248, 250, 252, 0.95)

  );

  box-shadow: 0 1px 1px rgba(148, 163, 184, 0.4);

  color: var(--text-primary);

  display: inline-flex;

  align-items: center;

  gap: 0.3rem;

  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,

    border-color 0.15s ease-out;

}



.nav-cta:hover {

  transform: translateY(-1px);

  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);

  border-color: rgba(148, 163, 184, 0.7);

}



/* Hero */

.hero {

  padding: 7rem 0 3rem;

}



.hero-content {

  max-width: 960px;

  margin: 0 auto;

  text-align: center;

}



.hero-title {

  margin-bottom: 1.5rem;

}



.hero-kicker {

  font-size: 0.75rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: rgba(15, 23, 42, 0.45);

  font-weight: 600;

  margin-bottom: 1.5rem;

}



.hero-title {

  font-size: clamp(3.1rem, 5.8vw, 4.6rem);

  line-height: 1.02;

  font-weight: 900;

  letter-spacing: -0.06em;

  margin-bottom: 1.7rem;

}



.gradient-text {
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}



.hero-subtitle {

  font-size: 0.75rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: rgba(15, 23, 42, 0.45);

  font-weight: 600;

  margin-bottom: 1.5rem;

  line-height: 2;

}



/* Product sections */

.product-section {

  padding: 6rem 0;

  border-bottom: 1px solid rgba(148, 163, 184, 0.18);

}

.product-section.snapvote {

  padding-top: 3rem;

}



.product-layout {

  display: grid;

  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);

  gap: 3.25rem;

  align-items: center;

}



.product-layout.reverse {

  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);

}






.product-brand {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  margin-bottom: 0.6rem;

}



.product-logo {

  width: 32px;

  height: 32px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.6);

  padding: 4px;

  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);

}



.product-title {

  font-size: 2.1rem;

  letter-spacing: -0.04em;

  font-weight: 800;

}



.product-tagline {

  font-size: 0.94rem;

  font-weight: 500;

  color: var(--text-muted);

  margin-bottom: 1.6rem;

}



/* SnapVote/Molra 카피 쪽은 완전 화이트 */

.product-content {

  background: transparent;

}



.product-description {

  font-size: 0.98rem;

  line-height: 1.85;

  color: var(--text-secondary);

  margin-bottom: 2.4rem;

  max-width: 520px;

}



.product-features {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 1.25rem 1.6rem;

  margin-bottom: 2.4rem;

}



.feature-item {

  display: flex;

  align-items: flex-start;

  gap: 0.85rem;

}



.feature-icon {

  width: 40px;

  height: 40px;

  border-radius: 14px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: rgba(15, 23, 42, 0.03);

  border: 1px solid rgba(148, 163, 184, 0.25);

}



.snapvote-icon {

  color: var(--accent-snapvote);

  background: radial-gradient(circle at 0 0, #eff6ff, #e0f2fe);

}



.molra-icon {

  color: var(--accent-molra);

  background: radial-gradient(circle at 100% 0, #f5f3ff, #fdf2ff);

}



.feature-content {

  display: flex;

  flex-direction: column;

  gap: 0.18rem;

}



.feature-name {

  font-size: 0.9rem;

  font-weight: 600;

}



.feature-desc {

  font-size: 0.84rem;

  color: var(--text-muted);

  line-height: 1.6;

}



/* Product CTA */

.product-cta {

  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  font-size: 0.9rem;

  font-weight: 600;

  padding: 0.78rem 1.4rem;

  border-radius: 999px;

  text-decoration: none;

  color: #ffffff;

  background: linear-gradient(135deg, #6366f1, #ec4899);

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);

  border: none;

  transform: translateY(0);

  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out;

}



.product-cta svg {

  transform: translateY(0);

  transition: transform 0.14s ease-out;

}



.product-cta:hover {

  transform: translateY(-1px);

  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.38);

}



.product-cta:hover svg {

  transform: translate(1px, -1px);

}



/* Visual cards */

.visual-placeholder,

.mock-poll,

.mock-creator {

  background: #ffffff;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);

}

.visual-placeholder {

  border-radius: var(--radius-lg);

  border: 1px solid var(--border-soft);

  padding: 1.7rem;

}



.snapvote-visual {

  background: linear-gradient(

      135deg,

      rgba(37, 99, 235, 0.06),

      rgba(56, 189, 248, 0.06)

    ),

    var(--bg-card);

}



.molra-visual {

  background: linear-gradient(

      140deg,

      rgba(124, 58, 237, 0.08),

      rgba(236, 72, 153, 0.06)

    ),

    var(--bg-card);

}



/* SnapVote mock */

.mock-poll {

  background: #ffffff;

  border-radius: 20px;

  padding: 1.4rem 1.5rem;

  border: 1px solid rgba(203, 213, 225, 0.8);

  box-shadow:

    0 18px 60px rgba(15, 23, 42, 0.12),

    0 0 0 1px rgba(148, 163, 184, 0.22);

}

.product-visual .mock-poll,

.product-visual .mock-creator {

  box-shadow:

    0 18px 60px rgba(15, 23, 42, 0.12),

    0 0 0 1px rgba(148, 163, 184, 0.22);

}



.poll-header-bar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 1.1rem;

}



.poll-header-icon {

  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  font-size: 0.82rem;

  font-weight: 600;

  color: var(--text-secondary);

}



.poll-header-icon svg {

  color: var(--accent-snapvote);

}



.poll-time {

  display: inline-flex;

  align-items: center;

  gap: 0.3rem;

  font-size: 0.78rem;

  color: var(--text-muted);

}



.poll-time svg {

  color: var(--accent-snapvote);

}



.poll-question-section {

  margin-bottom: 1.2rem;

}



.poll-question {

  font-size: 0.98rem;

  font-weight: 600;

  color: var(--text-primary);

}



.poll-options-list {

  display: flex;

  flex-direction: column;

  gap: 0.8rem;

  margin-bottom: 1rem;

}



.poll-option-item {

  position: relative;

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 0.55rem;

  padding: 0.6rem 0.7rem;

  border-radius: 12px;

  background: rgba(248, 250, 252, 0.95);

  border: 1px solid rgba(226, 232, 240, 0.9);

  overflow: hidden;

}



.option-radio {

  width: 14px;

  height: 14px;

  border-radius: 999px;

  border: 2px solid rgba(148, 163, 184, 0.9);

  position: relative;

}



.option-radio::after {

  content: "";

  position: absolute;

  inset: 2px;

  border-radius: inherit;

  background: var(--accent-gradient);

  opacity: 0.9;

}



.option-label {

  font-size: 0.86rem;

  font-weight: 500;

  color: var(--text-primary);

}



.option-result {

  display: flex;

  align-items: baseline;

  gap: 0.3rem;

  font-size: 0.8rem;

  font-weight: 600;

  color: var(--accent-snapvote);

}



.option-count {

  color: var(--text-muted);

  font-weight: 500;

}



.option-progress {

  position: absolute;

  inset: 0;

  background: linear-gradient(

    90deg,

    rgba(37, 99, 235, 0.16),

    rgba(56, 189, 248, 0.16)

  );

  border-radius: 12px;

  z-index: -1;

}



.poll-footer-bar {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: 0.5rem;

}



.poll-footer-stats {

  display: inline-flex;

  align-items: center;

  gap: 0.3rem;

  font-size: 0.8rem;

  color: var(--text-muted);

}



.poll-footer-stats svg {

  color: var(--accent-snapvote);

}



.poll-submit-btn {

  border: none;

  padding: 0.45rem 0.95rem;

  border-radius: 999px;

  font-size: 0.8rem;

  font-weight: 600;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  color: #ffffff;

  cursor: pointer;

}



/* Molra mock */

.mock-creator {

  background: #ffffff;

  border-radius: 20px;

  border: 1px solid rgba(203, 213, 225, 0.9);

  box-shadow:

    0 18px 60px rgba(15, 23, 42, 0.12),

    0 0 0 1px rgba(148, 163, 184, 0.22);

  overflow: hidden;

}



.creator-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0.95rem 1.2rem;

  border-bottom: 1px solid rgba(226, 232, 240, 0.85);

  background: linear-gradient(

    to right,

    rgba(129, 140, 248, 0.12),

    rgba(236, 72, 153, 0.08)

  );

}



.creator-tabs {

  display: inline-flex;

  align-items: center;

  gap: 0.4rem;

  padding: 0.15rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.7);

}



.creator-tab {

  font-size: 0.78rem;

  padding: 0.3rem 0.7rem;

  border-radius: 999px;

  color: var(--text-muted);

  cursor: default;

}



.creator-tab.active {

  background: linear-gradient(135deg, #7c3aed, #ec4899);

  color: #ffffff;

  font-weight: 600;

}



.creator-status {

  display: inline-flex;

  align-items: center;

  gap: 0.3rem;

  font-size: 0.78rem;

  color: var(--text-secondary);

}



.status-dot {

  width: 7px;

  height: 7px;

  border-radius: 999px;

  background: #22c55e;

  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);

}



.creator-canvas {

  padding: 1.4rem 1.5rem 1.2rem;

}



.canvas-grid {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.85rem;

}



.grid-item {

  border-radius: 12px;

  border: 1px solid rgba(226, 232, 240, 0.95);

  background: radial-gradient(circle at 0 0, #eef2ff, #f9fafb);

  overflow: hidden;

  position: relative;

}



.grid-pattern {

  position: absolute;

  inset: 0;

  background-image: linear-gradient(

      135deg,

      rgba(124, 58, 237, 0.12),

      transparent 55%

    ),

    linear-gradient(45deg, rgba(236, 72, 153, 0.12), transparent 60%);

  opacity: 0.9;

}



.creator-controls {

  padding: 0.9rem 1.2rem 1.1rem;

  border-top: 1px solid rgba(226, 232, 240, 0.9);

  background: rgba(249, 250, 251, 0.9);

  display: flex;

  gap: 0.65rem;

}



.control-btn {

  flex: 1;

  border-radius: 999px;

  font-size: 0.84rem;

  font-weight: 600;

  padding: 0.55rem 0.9rem;

  border: 1px solid rgba(148, 163, 184, 0.5);

  background: #ffffff;

  color: var(--text-secondary);

  cursor: pointer;

}



.control-btn.primary {

  border: none;

  background: linear-gradient(135deg, #7c3aed, #ec4899);

  color: #ffffff;

}



/* Contact */

.contact-section {

  padding: 4.5rem 0 4rem;

}



.contact-content {

  max-width: 520px;

  text-align: left;

}



.contact-title {

  font-size: 1.9rem;

  margin-bottom: 0.9rem;

  letter-spacing: -0.04em;

}



.contact-text {

  font-size: 0.98rem;

  color: var(--text-secondary);

  margin-bottom: 1.8rem;

}



.contact-link {

  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  text-decoration: none;

  padding: 0.85rem 1.4rem;

  border-radius: 999px;

  border: 1px solid rgba(148, 163, 184, 0.5);

  background: rgba(255, 255, 255, 0.96);

  box-shadow: var(--shadow-subtle);

  color: var(--text-primary);

  font-size: 0.9rem;

  font-weight: 600;

}



.contact-link svg {

  transform: translateY(0);

  transition: transform 0.15s ease-out;

}



.contact-link:hover svg {

  transform: translate(1px, -1px);

}



/* Footer */

.footer {

  border-top: 1px solid rgba(226, 232, 240, 0.9);

  padding: 1.8rem 0 2.2rem;

}



.footer p {

  font-size: 0.78rem;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  text-align: center;

  color: var(--text-muted);

}



/* Scroll animations */

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate].is-visible,
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}



/* Responsive */

@media (max-width: 768px) {
  .hero {
    padding: 5rem 0 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-kicker {
    font-size: 0.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .product-cta,
  .contact-link {
    padding: 0.85rem 1.5rem;
    min-height: 44px;
  }
}

@media (max-width: 960px) {

  .navbar .container {

    padding-inline: 1.4rem;

  }



  .nav-links {

    gap: 1.1rem;

  }



  .hero {

    padding-top: 6rem;

    padding-bottom: 4rem;

  }



  .product-layout,

  .product-layout.reverse {

    grid-template-columns: minmax(0, 1fr);

  }



  .product-layout.reverse .product-visual {

    order: -1;

  }



  .visual-placeholder {

    margin-bottom: 1.6rem;

  }

}



@media (max-width: 640px) {

  .container {

    padding-inline: 1.1rem;

  }



  .hero-title {

    font-size: 2.6rem;

  }



  .product-section {

    padding: 3rem 0 3.5rem;

  }



  .product-features {

    grid-template-columns: 1fr;

  }



  .navbar {

    backdrop-filter: blur(14px);

  }



  .nav-links {

    gap: 0.9rem;

  }



  .nav-link {

    font-size: 0.82rem;

  }



  .nav-cta {

    padding-inline: 1.1rem;

  }

}
