:root {
  color-scheme: dark;
  --bg: #07090b;
  --surface: #101518;
  --surface-2: #171d20;
  --text: #f4f5f5;
  --muted: rgba(244, 245, 245, 0.62);
  --faint: rgba(244, 245, 245, 0.12);
  --line: rgba(244, 245, 245, 0.10);
  --blue: #83adff;
  --green: #8fd9ba;
  --red: #ff7b6d;
  --radius: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 75, 140, 0.22), transparent 32rem),
    linear-gradient(180deg, #090c12 0%, var(--bg) 45%, #050607 100%);
  color: var(--text);
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

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

.page-shell {
  width: min(1080px, calc(100vw - 36px));
  margin: 0 auto;
}

.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.nav-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 610;
}

.brand-icon {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.nav-actions {
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.nav-actions a {
  padding: 8px 2px;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-actions a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px !important;
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 50px;
  padding: 34px 0 68px;
}

.product-badge {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding: 7px 13px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(244, 245, 245, 0.74);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 560;
}

.product-badge img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(244, 245, 245, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 11px;
  font-weight: 620;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 0.98;
  font-weight: 650;
}

h2 {
  font-size: clamp(25px, 3.4vw, 40px);
  line-height: 1.04;
  font-weight: 620;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  line-height: 1.08;
  font-weight: 600;
}

.hero-text,
.section-copy p,
.workflow-copy p,
.download p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-text {
  max-width: 510px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 590;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-cta {
  background: #f2f4f5;
  color: #0d1113;
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
}

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

.app-panel {
  position: relative;
  width: min(405px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid #253038;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.app-header {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.app-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 360ms ease;
}

.app-header.theme-changing img {
  opacity: 0.55;
  transform: scale(1.025);
}

.app-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.02));
}

.header-content {
  position: absolute;
  inset: 28px 32px auto;
}

.header-date {
  font-size: 19px;
  font-weight: 600;
}

.progress-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: rgba(244, 245, 245, 0.65);
  font-size: 16px;
}

.progress-track {
  width: 142px;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.progress-track span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.62);
}

.task-card {
  position: relative;
  margin-top: -26px;
  min-height: 426px;
  border-radius: 36px 36px 0 0;
  background: var(--surface);
  padding: 31px 32px 24px;
}

.task-card h2 {
  font-size: 23px;
  margin-bottom: 20px;
}

.task-list {
  display: grid;
  gap: 0;
}

.task-row {
  min-height: 40px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(244, 245, 245, 0.88);
}

.task-row.done {
  color: rgba(244, 245, 245, 0.38);
  text-decoration: line-through;
}

.task-row.hover-row {
  margin: 4px -8px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 8px;
  border-bottom: 0;
}

.check,
.circle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check {
  background: rgba(255, 255, 255, 0.9);
  color: #101518;
  font-size: 13px;
  font-weight: 800;
}

.circle {
  border: 2px solid rgba(244, 245, 245, 0.34);
}

.pill {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 620;
}

.pill.work {
  color: #8fb4ff;
  background: rgba(43, 91, 185, 0.36);
}

.section-label {
  margin: 18px 0 8px;
  color: rgba(244, 245, 245, 0.44);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.row-tools {
  display: flex;
  gap: 6px;
}

.row-tools i {
  width: 27px;
  height: 27px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

.row-tools i:first-child {
  color: #8fb4ff;
  background: rgba(54, 91, 150, 0.40);
}

.row-tools i:last-child {
  color: #ff897d;
  background: rgba(121, 45, 39, 0.46);
}

.panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.panel-actions button {
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(244, 245, 245, 0.78);
  background: rgba(255, 255, 255, 0.09);
}

.panel-actions button:last-child {
  width: 34px;
  padding: 0;
}

.theme-section,
.workflow,
.download {
  border-top: 1px solid var(--line);
}

.theme-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
  padding: 86px 0;
}

.section-copy {
  position: sticky;
  top: 28px;
}

.section-copy p {
  max-width: 440px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.theme-option {
  min-height: 158px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  color: rgba(244, 245, 245, 0.64);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.theme-option:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.theme-option.active {
  color: var(--text);
  border-color: rgba(131, 173, 255, 0.44);
  background: rgba(131, 173, 255, 0.10);
}

.theme-option img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 14px;
}

.theme-option span {
  font-size: 15px;
  font-weight: 600;
}

.workflow {
  display: grid;
  grid-template-columns: 0.78fr 0.78fr 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 86px 0;
}

.mini-screen,
.workflow-copy,
.download {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.mini-screen {
  min-height: 326px;
  padding: 22px;
}

.mini-screen label,
.mini-screen .chips,
.theme-strip,
.appearance {
  margin-top: 18px;
}

.mini-screen label {
  display: block;
  color: rgba(244, 245, 245, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 650;
}

.input {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 14px;
  margin-top: 8px;
  color: rgba(244, 245, 245, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.chips,
.appearance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chips span,
.appearance span {
  min-height: 31px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: rgba(244, 245, 245, 0.62);
  border: 1px solid var(--line);
}

.chips .work,
.appearance .selected {
  color: #0d1113;
  background: #eef1f2;
}

.theme-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.theme-strip img {
  height: 62px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.workflow-copy {
  padding: 30px;
  align-content: center;
  display: grid;
}

.download {
  text-align: center;
  padding: 68px 24px;
  margin-bottom: 42px;
}

.download h2 {
  max-width: 680px;
  margin-inline: auto;
}

.download p {
  margin-bottom: 26px;
}

@media (max-width: 940px) {
  .hero,
  .theme-section,
  .workflow {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 24px;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100vw - 24px, 430px);
  }

  .topbar {
    height: 64px;
  }

  .nav-actions a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-text,
  .section-copy p,
  .workflow-copy p,
  .download p {
    font-size: 16px;
  }

  .theme-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .app-panel {
    border-radius: 24px;
  }
}
