:root {
  --primary: #0a0a0a;
  --primary-active: #1f1f1f;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --surface-dark: #0a1a1a;
  --on-primary: #ffffff;
  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --brand-coral: #ff6b5a;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --section: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 77, 139, 0.09), transparent 260px),
    radial-gradient(circle at 88% 14%, rgba(232, 185, 74, 0.16), transparent 260px),
    var(--canvas);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

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

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0;
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid rgba(229, 229, 229, 0.64);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1.5px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.button-on-color {
  width: fit-content;
  color: var(--ink);
  background: var(--canvas);
}

.products-section {
  padding: 48px 0 var(--section);
  background:
    radial-gradient(circle at 16% 5%, rgba(255, 176, 132, 0.2), transparent 300px),
    radial-gradient(circle at 92% 16%, rgba(164, 212, 197, 0.16), transparent 280px),
    transparent;
}

.section-header {
  max-width: 1080px;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -2px;
}

h2 span {
  display: block;
  white-space: nowrap;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-card-pink {
  color: var(--on-primary);
  background: var(--brand-pink);
}

.feature-card-teal {
  color: var(--on-primary);
  background: var(--brand-teal);
}

.feature-card-lavender {
  color: var(--ink);
  background: var(--brand-lavender);
}

.card-copy {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface-card);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.badge-pill.dark {
  color: var(--on-primary);
  background: rgba(255, 255, 255, 0.14);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
}

.feature-card p:not(.badge-pill) {
  max-width: 320px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.55;
}

.product-fragment {
  position: relative;
  min-height: 210px;
  margin: 34px 0;
}

.avatar-fragment {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 46% 14%, rgba(255, 176, 132, 0.34), transparent 120px),
    linear-gradient(135deg, #fffaf0, #fff1e2);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.24);
}

.product-screenshot {
  display: flex;
  min-height: 248px;
  padding: 16px;
  color: #1f2937;
}

.screenshot-body {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 10px;
  flex: 1;
}

.screenshot-upload,
.screenshot-styles {
  min-width: 0;
  border: 1px solid rgba(234, 179, 125, 0.36);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.62);
}

.screenshot-upload {
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
}

.screenshot-upload::before {
  content: "";
  width: 74%;
  height: 74%;
  border: 2px dashed rgba(244, 156, 87, 0.72);
  border-radius: 13px;
  grid-area: 1 / 1;
}

.screenshot-upload span,
.screenshot-upload small {
  grid-area: 1 / 1;
}

.screenshot-upload span {
  align-self: center;
  max-width: 110px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.screenshot-upload small {
  align-self: end;
  margin-bottom: 28px;
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
}

.screenshot-styles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
}

.screenshot-styles span {
  position: relative;
  display: block;
  border: 1px solid rgba(234, 179, 125, 0.3);
  border-radius: 11px;
  background: #fffaf0;
}

.screenshot-styles span::before,
.screenshot-styles span::after {
  position: absolute;
  content: "";
  top: 35%;
  width: 28%;
  height: 34%;
  border: 6px solid #f14f36;
  border-bottom-color: transparent;
  border-left-color: #f14f36;
  border-radius: 58% 58% 52% 52%;
}

.screenshot-styles span::before {
  left: 15%;
  transform: rotate(-44deg);
}

.screenshot-styles span::after {
  right: 15%;
  transform: rotate(44deg);
}

.screenshot-styles span {
  overflow: hidden;
}

.screenshot-styles span:nth-child(n)::before,
.screenshot-styles span:nth-child(n)::after {
  box-shadow: inset 0 0 0 3px rgba(255, 250, 240, 0.7);
}

.screenshot-styles span:nth-child(n) {
  background-image:
    linear-gradient(90deg, transparent 42%, currentColor 42%, currentColor 58%, transparent 58%),
    radial-gradient(circle at 50% 62%, currentColor 0 4px, transparent 5px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 38px 22px, 38px 22px;
  color: #f14f36;
}

.screenshot-styles span:nth-child(1) {
  background-color: #fff3e5;
  border-color: #f59e57;
  color: #f14f36;
}

.screenshot-styles span:nth-child(2)::before,
.screenshot-styles span:nth-child(2)::after {
  border-color: #1f2937;
  border-bottom-color: transparent;
}

.screenshot-styles span:nth-child(2) {
  color: #1f2937;
}

.screenshot-styles span:nth-child(3)::before,
.screenshot-styles span:nth-child(3)::after {
  border-color: #b4822d;
  border-bottom-color: transparent;
}

.screenshot-styles span:nth-child(3) {
  color: #b4822d;
}

.screenshot-styles span:nth-child(4)::before,
.screenshot-styles span:nth-child(4)::after {
  border-color: #0f79bd;
  border-bottom-color: transparent;
}

.screenshot-styles span:nth-child(4) {
  color: #0f79bd;
}

.screenshot-styles span:nth-child(5)::before,
.screenshot-styles span:nth-child(5)::after {
  border-color: #ff8a3d;
  border-bottom-color: transparent;
}

.screenshot-styles span:nth-child(5) {
  color: #ff8a3d;
}

.screenshot-styles span:nth-child(6)::before,
.screenshot-styles span:nth-child(6)::after {
  border-color: #67d9f4;
  border-bottom-color: transparent;
}

.screenshot-styles span:nth-child(6) {
  color: #67d9f4;
}

.watermark-fragment {
  min-height: 230px;
}

.doc {
  position: absolute;
  display: block;
  width: 158px;
  height: 202px;
  border-radius: var(--radius-lg);
  background: var(--canvas);
}

.doc-back {
  left: 42px;
  top: 18px;
  opacity: 0.5;
  transform: rotate(-8deg);
}

.doc-front {
  left: 74px;
  top: 0;
  transform: rotate(5deg);
}

.stamp {
  position: absolute;
  left: 64px;
  top: 96px;
  padding: 8px 12px;
  border: 2px solid var(--brand-coral);
  border-radius: 8px;
  color: var(--brand-coral);
  background: rgba(255, 250, 240, 0.84);
  font-size: 12px;
  font-weight: 600;
  transform: rotate(-18deg);
}

.roadmap-fragment {
  display: grid;
  gap: 14px;
  align-content: center;
}

.roadmap-fragment span {
  display: block;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.42);
}

.roadmap-fragment span:nth-child(2) {
  width: 78%;
}

.roadmap-fragment span:nth-child(3) {
  width: 56%;
}

.footer {
  padding: 22px 0;
  color: var(--body);
  background: var(--surface-soft);
  font-size: 14px;
  line-height: 1.55;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 16px;
  color: var(--muted);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .top-nav {
    height: 56px;
  }

  .brand {
    width: min(100% - 32px, 560px);
  }

  .products-section {
    padding: 36px 0 64px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  h2 span {
    white-space: normal;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 460px;
  }

  .footer-inner {
    justify-content: center;
  }

  .footer-meta {
    gap: 10px;
    font-size: 12px;
  }
}
