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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #171717;
  --gray-900: #0a0a0a;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-100);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: min(100%, 1200px);
  transform: translateX(-50%);
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045)),
    linear-gradient(to right, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045)),
    linear-gradient(to right, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045)),
    linear-gradient(to right, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045));
  background-size: 1px 100%;
  background-position: 0 0, 33.333% 0, 66.666% 0, 100% 0;
  background-repeat: no-repeat;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px 12px;
}

.logo img {
  height: 28px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 64px;
  padding: 16px 0 24px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  --cup-x: 50%;
  --cup-y: 50%;
}

.hero-cup-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  -webkit-mask-image: radial-gradient(
    circle 420px at var(--cup-x) var(--cup-y),
    rgb(0 0 0 / 100%) 0%,
    rgb(0 0 0 / 40%) 55%,
    transparent 82%
  );
  mask-image: radial-gradient(
    circle 420px at var(--cup-x) var(--cup-y),
    rgb(0 0 0 / 100%) 0%,
    rgb(0 0 0 / 40%) 55%,
    transparent 82%
  );
}

.hero-content.is-hovering .hero-cup-bg {
  opacity: 1;
}

.hero-content--static-cup .hero-cup-bg {
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-cup-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 640px);
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.22;
}

.hero-content--static-cup .hero-cup-bg img {
  opacity: 0.07;
}

.hero-content-inner {
  position: relative;
  z-index: 1;
  padding: 64px 72px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
}

.hero h1 {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: clamp(3rem, 8vw, 5.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--white);
  text-wrap: balance;
}

.hero-lede {
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.62);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-showcase {
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-showcase-inner {
  width: min(100%, 1024px);
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-showcase.is-active {
  perspective: 1400px;
}

.hero-showcase.is-active .hero-showcase-inner {
  will-change: transform;
}

.hero-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  mix-blend-mode: lighten;
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase-inner {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--black);
  background: var(--white);
}

.btn-primary:hover {
  background: var(--gray-100);
}

.btn-soon {
  cursor: default;
  opacity: 0.72;
}

.btn-soon:hover {
  transform: none;
  background: var(--white);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.audience {
  width: 100%;
  padding: 0 32px 96px;
}

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

.audience-header {
  width: 100%;
  max-width: none;
  margin: 0 auto 48px;
  text-align: center;
}

.audience-heading {
  max-width: none;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
}

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

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.audience-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  font-size: 28px;
  line-height: 1;
}

.audience-card-icon--freelancers {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.14);
}

.audience-card-icon--solopreneurs {
  color: #fb923c;
  background: rgba(251, 146, 60, 0.14);
}

.audience-card-icon--teams {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.14);
}

.audience-card-title {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.audience-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-400);
}

.features {
  width: 100%;
  padding: 32px 32px 96px;
}

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

.features-header {
  width: 100%;
  max-width: none;
  margin: 0 auto 48px;
  text-align: center;
}

.features-heading {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--white);
  text-wrap: balance;
}

.features-subtitle {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-400);
  text-wrap: balance;
}

.features-showcase {
  position: relative;
}

.features-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.features-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.features-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.features-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: 60px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.features-carousel::-webkit-scrollbar {
  display: none;
}

.feature-card {
  flex: 0 0 calc(50% - 10px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-card-image {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--gray-900);
}

.feature-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.customize {
  padding: 0 32px 120px;
}

.customize-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--gray-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.customize-layout {
  display: grid;
  grid-template-columns: 1fr min(280px, 36%);
  gap: 48px;
  align-items: start;
}

.customize-content p {
  margin-bottom: 28px;
  font-size: 17px;
  color: var(--gray-400);
}

.customize-photo {
  flex-shrink: 0;
}

.customize-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  aspect-ratio: 821 / 1024;
}

.customize-photo-caption {
  margin-top: 20px;
}

.customize-photo-name {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.customize-photo-role {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-400);
}

.customize-photo-role a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.customize-photo-role a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.customize h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
}

.customize-list {
  list-style: none;
  margin-bottom: 32px;
}

.customize-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--gray-100);
}

.customize-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(220px, 32vh, 360px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.site-footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
  color: var(--white);
  opacity: 0.07;
  user-select: none;
  transform-origin: center bottom;
  pointer-events: none;
}

.site-footer-logo {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(220px, 32vh, 360px);
  padding: 56px 32px 72px;
}

.site-footer-logo img {
  height: 88px;
  width: auto;
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 8px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .site-nav a {
    padding: 8px 14px 8px 0;
  }

  .hero {
    padding: 8px 20px 64px;
  }

  .hero-top {
    padding-top: 8px;
    margin-bottom: 48px;
  }

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

  .hero-content-inner {
    padding: 40px 28px;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 20px;
  }

  .hero-lede {
    max-width: none;
    margin-bottom: 32px;
  }

  .audience {
    padding: 0 20px 72px;
  }

  .audience-header {
    margin-bottom: 32px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    padding: 28px 24px;
  }

  .features {
    padding: 24px 20px 72px;
  }

  .features-header {
    margin-bottom: 28px;
  }

  .features-showcase {
    padding-top: 52px;
  }

  .features-controls {
    top: 0;
    right: 0;
  }

  .features-carousel {
    padding-top: 0;
  }

  .feature-card {
    flex: 0 0 88%;
  }

  .customize {
    padding: 0 20px 80px;
  }

  .customize-inner {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  .customize-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .customize-photo {
    order: -1;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .customize-photo-caption {
    text-align: left;
  }
}
