:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #606673;
  --soft: #f3f5f7;
  --line: rgba(17, 19, 24, 0.12);
  --blue: #2563eb;
  --green: #0f9f73;
  --coral: #ef6f4d;
  --paper: #ffffff;
  --shadow: 0 20px 60px rgba(18, 23, 33, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0;
}

body.home {
  background:
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 46%, #f3f6f5 100%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #101216;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: conic-gradient(from 180deg, var(--blue), var(--green), var(--coral), var(--blue));
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(17, 19, 24, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 7px 0;
}

.nav-links a:focus-visible,
.button:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.32);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(610px, 84svh, 790px);
  padding: 118px clamp(20px, 6vw, 86px) 68px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.86) 0%, rgba(8, 11, 17, 0.68) 35%, rgba(8, 11, 17, 0.22) 68%, rgba(8, 11, 17, 0.44) 100%),
    url("create-hero-product-studio.png") right center / cover no-repeat,
    #101216;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 46px;
  width: min(34vw, 420px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 159, 115, 0.18);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  margin-top: 22px;
  font-size: clamp(56px, 10vw, 116px);
  line-height: 0.9;
  font-weight: 900;
}

.hero-copy {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.34;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: #ffffff;
  color: #111318;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 38px;
}

.proof-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
}

.proof-item strong {
  display: block;
  font-size: 15px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 6vw, 86px);
}

.section.narrow {
  max-width: 1040px;
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 38px rgba(18, 23, 33, 0.06);
}

.feature-card .number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.08;
}

.feature-card p {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #111318;
  color: #ffffff;
}

.split-band p {
  color: rgba(255, 255, 255, 0.72);
}

.outcome-list {
  display: grid;
  gap: 12px;
}

.outcome-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.outcome-mark {
  display: inline-grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 159, 115, 0.22);
  color: #80f1ce;
  font-weight: 900;
}

.privacy-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.privacy-strip h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1;
}

.privacy-strip p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: #ffffff;
  color: #343943;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 23, 33, 0.07);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(20px, 6vw, 86px);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  background:
    linear-gradient(180deg, #f5f7fb 0%, #ffffff 34%),
    #ffffff;
}

.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 128px 22px 76px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: clamp(26px, 6vw, 56px);
}

.legal-card h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
}

.legal-card h2 {
  margin-bottom: 10px;
  margin-top: 34px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 840px) {
  .site-header {
    min-height: 62px;
    padding: 12px 18px;
  }

  .nav-links {
    gap: 14px;
    font-size: 13px;
  }

  .nav-home-extra {
    display: none;
  }

  .hero {
    min-height: 790px;
    padding: 108px 20px 54px;
    background-position: 62% center;
  }

  .hero-content {
    justify-content: end;
  }

  .hero-proof,
  .feature-grid,
  .split-band,
  .privacy-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 8px;
  }

  .proof-item {
    padding-top: 10px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pill-stack {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 284px;
    background:
      linear-gradient(180deg, rgba(8, 11, 17, 0.28) 0%, rgba(8, 11, 17, 0.56) 42%, rgba(8, 11, 17, 0.92) 100%),
      url("create-hero-product-studio.png") center top / cover no-repeat,
      #101216;
  }

  h1 {
    font-size: clamp(52px, 18vw, 82px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .secondary {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .feature-card {
    min-height: 0;
  }
}
