@import "https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap";

/* src/styles.css */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --card2: #f9fafb;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #4b5563;
  --muted2: #6b7280;
  --accent: #2563EB;
  --accent2: #10b981;
  --warn: #f59e0b;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --mono:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  --sans:
    "Red Hat Display",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --display: "Alfa Slab One", serif;
  --bg-gradient:
    linear-gradient(
      135deg,
      #f0f4f8 0%,
      #ffffff 100%);
  --text-title: #000000;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --card: #1e293b;
    --card2: #0f172a;
    --border: #334155;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --muted2: #64748b;
    --bg-gradient:
      linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 100%);
    --text-title: #ffffff;
  }
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-gradient);
  background-attachment: fixed;
  padding: 0 16px 30px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.wrap {
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.topbar,
.footer,
.card {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 100;
}
.topbar .nav-btn {
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 8px 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  text-align: left;
}
.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex: 0 0 auto;
}
.brandtext {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.brandtext strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-title);
}
.brandtext span {
  font-size: 0.82rem;
  color: var(--muted2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}
.headline {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-title);
}
.subhead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--muted);
  font-size: 0.86rem;
}
.badge strong {
  color: var(--text);
  font-weight: 600;
}
.ctaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card2);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  font-family: inherit;
}
.btn:hover {
  background: var(--border);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn.primary:hover {
  background: #0046CC;
  border-color: #0046CC;
  color: #fff;
}
.github-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}
.github-btn:hover {
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}
.btn.ghost {
  background: transparent;
  border-color: var(--border);
}
.btn.ghost:hover {
  background: var(--card2);
}
.full-width-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 60vh;
  overflow-x: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-bg {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  z-index: 1;
}
.hero-video-bg video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px;
}
.hero-title {
  font-size: 2.2rem;
  margin: 0 0 16px;
  color: var(--text-title);
  line-height: 1.1;
  font-weight: 800;
}
.hero-subtitle {
  font-size: 3.5rem;
  margin: 0;
  color: var(--text);
  opacity: 0.9;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 2.2rem;
  }
}
.videoContainer {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card2);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cycleContainer {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card2);
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cycleLabel {
  font-size: 0.85rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cycleText {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  transition: all 0.1s ease;
  letter-spacing: -0.01em;
}
.cycleText.final {
  color: var(--text-title);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 95%;
}
.sideCard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background: var(--card2);
}
.sideTop {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sideTitle {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
.sideText {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.miniSteps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.miniSteps li {
  margin: 8px 0;
}
.notice {
  border-left: 4px solid var(--accent2);
  background: var(--card2);
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--accent2);
  font-size: 0.95rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.featureCard {
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
}
.featureCard h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.featureCard p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.mutedLine {
  margin-top: 16px;
  color: var(--muted2);
  font-size: 0.92rem;
}
.footer {
  margin-top: 6px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.footerLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footerLinks button {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
  font-family: inherit;
}
.footerLinks button:hover {
  background: var(--card2);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--text);
}
.copyright {
  color: var(--muted2);
  font-size: 0.86rem;
}
.nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.nav-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.nav-btn:hover {
  background: var(--card2);
  color: var(--text);
}
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .headline {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 22px 16px;
  }
  .headline {
    font-size: 1.65rem;
  }
  .subhead {
    font-size: 1.00rem;
  }
}
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.how-it-works-content {
  color: var(--muted);
  font-size: 1.05rem;
}
.how-it-works-content p {
  margin: 0 0 16px;
}
.how-it-works-video {
  width: 100%;
}
.video-wrapper {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.platform-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}
.platform-dropdown {
  padding: 8px 32px 8px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  min-width: 140px;
  box-shadow: var(--shadow);
}
.platform-dropdown:hover {
  border-color: var(--accent);
  background-color: var(--card2);
}
.platform-dropdown:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.alert {
  padding: 12px 16px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--warn);
  border-radius: 8px;
  color: var(--warn);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert svg {
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .video-wrapper {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=bundle.css.map */
