:root {
  color-scheme: light;
  --blue: #0b57d7;
  --blue-deep: #063596;
  --blue-ink: #071a42;
  --gold: #ffd21a;
  --orange: #ff6b00;
  --cream: #fff9ec;
  --paper: #fffdf7;
  --ink: #071636;
  --muted: #53617f;
  --line: rgba(9, 39, 96, 0.16);
  --shadow: 0 26px 60px rgba(6, 37, 105, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 210, 26, 0.22), transparent 26rem),
    radial-gradient(circle at 8% 24%, rgba(11, 87, 215, 0.11), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  align-items: center;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: white;
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto auto;
  min-height: 72px;
  padding: 10px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.brand img,
.footer-brand img {
  height: 50px;
  object-fit: contain;
  width: 50px;
}

.brand span {
  font-size: 1.08rem;
  font-weight: 950;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 4vw, 52px);
  justify-content: center;
}

.desktop-nav a,
.footer-links a {
  font-size: 0.84rem;
  font-weight: 900;
}

.header-cta,
.hero .upload-box label,
.button-like {
  align-items: center;
  background: linear-gradient(135deg, #ff8a00, #ff4b00);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.24);
  color: white;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 950;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
}

.icon-menu {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: white;
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  min-height: calc(100vh - 72px);
  padding: clamp(30px, 4.5vw, 64px) clamp(18px, 8vw, 128px) 42px;
  position: relative;
}

.hero::after,
.steps-section::before,
.examples-section::before {
  background-image:
    linear-gradient(rgba(11, 87, 215, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 87, 215, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  mask-image: radial-gradient(circle at 74% 30%, black, transparent 58%);
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--blue-ink);
  font-size: clamp(3.2rem, 7.1vw, 6.5rem);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.88;
  max-width: 760px;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

h1 span {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 750;
  line-height: 1.55;
  margin-top: 18px;
  max-width: 570px;
}

.upload-box {
  border: 2px dashed rgba(11, 87, 215, 0.42);
  border-radius: 18px;
  margin-top: 20px;
  max-width: 360px;
  padding: 12px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.upload-box.dragging {
  background: rgba(11, 87, 215, 0.08);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.upload-box input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.upload-box label {
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 112px;
  place-items: center;
  text-align: center;
  width: 100%;
}

.upload-box svg {
  height: 36px;
  width: 36px;
}

.upload-box span {
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0.9;
}

.trust-row {
  color: var(--blue-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.trust-row span {
  align-items: center;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  gap: 7px;
}

.trust-row svg {
  color: var(--blue);
  height: 17px;
  width: 17px;
}

.hero-stage {
  min-height: 570px;
  position: relative;
  z-index: 1;
}

.r1-card {
  border: 7px solid #10141d;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: #10141d;
  display: grid;
  gap: 12px;
  padding: 16px;
  position: relative;
}

.hero-card {
  margin: 20px auto 0;
  max-width: 360px;
  min-height: 520px;
  transform: rotate(-6deg);
}

.card-gold {
  background: linear-gradient(145deg, #fff06b, #ffbd19 45%, #ff7800);
}

.card-blue {
  background: linear-gradient(145deg, #d8efff, #2878f0 46%, #052c91);
  color: white;
}

.card-purple {
  background: linear-gradient(145deg, #ffe3ff, #b64cff 46%, #4b147b);
  color: white;
}

.card-black {
  background: linear-gradient(145deg, #252a35, #0b1020 52%, #000);
  color: white;
}

.card-topline,
.card-body {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.card-topline {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 1000;
  text-transform: uppercase;
}

.card-photo {
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
  border: 4px solid rgba(255, 255, 255, 0.84);
  border-radius: 12px;
  display: flex;
  height: 285px;
  justify-content: center;
  overflow: hidden;
}

.card-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.card-photo svg {
  color: rgba(0, 0, 0, 0.5);
  height: 68px;
  width: 68px;
}

.card-body {
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  padding: 12px;
}

.card-blue .card-body,
.card-purple .card-body,
.card-black .card-body {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-body h2 {
  font-size: 1.3rem;
  font-weight: 1000;
  line-height: 1;
}

.card-body p {
  font-size: 0.78rem;
  font-weight: 850;
  margin-top: 5px;
}

.card-score {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #10141d;
  display: flex;
  font-weight: 1000;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.stat-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stat-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 10px;
  display: flex;
  font-size: 0.86rem;
  font-weight: 850;
  justify-content: space-between;
  padding: 10px 12px;
}

.card-blue .stat-list li,
.card-purple .stat-list li,
.card-black .stat-list li {
  background: rgba(255, 255, 255, 0.16);
}

.floating-card {
  border: 4px solid #10141d;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(6, 37, 105, 0.2);
  display: grid;
  font-size: 0.9rem;
  font-weight: 950;
  gap: 6px;
  min-height: 132px;
  padding: 14px;
  position: absolute;
  width: 120px;
}

.floating-card:first-of-type {
  left: 0;
  top: 92px;
  transform: rotate(9deg);
}

.floating-card:last-of-type {
  bottom: 105px;
  right: 10px;
  transform: rotate(10deg);
}

.steps-section,
.examples-section,
.faq-section,
.builder-section,
.quality-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 4vw, 42px);
  position: relative;
}

.steps-section h2,
.examples-section h2,
.faq-section h2 {
  color: var(--blue-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-style: italic;
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 28px;
  text-align: center;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.quality-band article,
.builder-panel,
.example-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(6, 37, 105, 0.08);
}

.steps article {
  display: grid;
  gap: 12px;
  justify-items: center;
  min-height: 230px;
  padding: 28px 22px;
  text-align: center;
}

.steps span {
  align-items: center;
  background: white;
  border: 3px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  display: flex;
  font-weight: 1000;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.steps svg {
  color: var(--blue);
  height: 54px;
  width: 54px;
}

.steps h3,
.quality-band h3 {
  font-size: 1rem;
  font-style: italic;
  font-weight: 1000;
  text-transform: uppercase;
}

.steps p,
.quality-band p,
.section-copy p,
.faq-section p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.builder-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-copy h2 {
  color: var(--blue-ink);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-style: italic;
  font-weight: 1000;
  line-height: 0.96;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.builder-panel {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 22px;
}

.builder-panel label {
  display: grid;
  gap: 7px;
}

.builder-panel label:first-child {
  grid-column: 1 / -1;
}

.builder-panel span {
  color: var(--blue-ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.builder-panel input,
.builder-panel select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

.theme-options {
  align-items: end;
  display: flex;
  gap: 10px;
}

.theme-button {
  border: 3px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  height: 38px;
  width: 38px;
}

.theme-button.active {
  border-color: var(--blue-ink);
}

.theme-blue {
  background: linear-gradient(145deg, #d8efff, #2878f0 46%, #052c91);
}

.theme-purple {
  background: linear-gradient(145deg, #ffe3ff, #b64cff 46%, #4b147b);
}

.theme-black {
  background: linear-gradient(145deg, #252a35, #0b1020 52%, #000);
}

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

.example-grid article {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr auto 1fr;
  padding: 18px;
}

.mini-photo,
.mini-card {
  aspect-ratio: 0.72;
  border-radius: 10px;
  min-width: 0;
}

.mini-photo {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(145deg, #183b77, #f0c79b);
}

.portrait-two {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, #f6b461, #5d8de9);
}

.portrait-three {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, #9b3cf6, #f7b4db);
}

.mini-card {
  align-items: end;
  border: 4px solid #10141d;
  color: #10141d;
  display: flex;
  font-weight: 1000;
  justify-content: end;
  padding: 10px;
}

.example-grid svg {
  color: var(--blue);
  width: 24px;
}

.quality-band {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.quality-band article {
  border-radius: 0;
  box-shadow: none;
  padding: 28px 22px;
}

.quality-band article:first-child {
  border-radius: 8px 0 0 8px;
}

.quality-band article:last-child {
  border-radius: 0 8px 8px 0;
}

.quality-band svg {
  color: var(--blue);
  height: 42px;
  margin-bottom: 14px;
  width: 42px;
}

.faq-section {
  max-width: 980px;
}

details {
  background: #eaf5ff;
  border: 1px solid rgba(11, 87, 215, 0.24);
  border-radius: 999px;
  margin-bottom: 10px;
  padding: 0 20px;
}

details[open] {
  border-radius: 18px;
  padding-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 14px 0;
}

summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  align-items: start;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  padding: 34px clamp(18px, 8vw, 120px);
}

.footer-brand strong {
  font-size: 1.1rem;
}

.footer-brand p,
.disclaimer {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 4px;
}

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

.disclaimer {
  justify-self: end;
  max-width: 280px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .icon-menu {
    display: inline-flex;
  }

  .hero,
  .builder-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .steps,
  .example-grid,
  .quality-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quality-band article,
  .quality-band article:first-child,
  .quality-band article:last-child {
    border-radius: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .disclaimer {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 9px 14px;
  }

  .brand img {
    height: 42px;
    width: 42px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding: 30px 24px 38px;
  }

  h1 {
    font-size: clamp(2.8rem, 13.6vw, 3.55rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.78rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.42;
    margin-top: 16px;
  }

  .upload-box {
    max-width: none;
    padding: 8px;
  }

  .upload-box label {
    gap: 6px;
    min-height: 76px;
    padding: 10px 14px;
  }

  .upload-box svg {
    height: 28px;
    width: 28px;
  }

  .upload-box span {
    font-size: 0.78rem;
  }

  .trust-row {
    gap: 9px 14px;
    margin-top: 16px;
  }

  .hero-stage {
    min-height: 455px;
  }

  .hero-card {
    max-width: 300px;
    min-height: 460px;
    padding: 12px;
  }

  .card-photo {
    height: 245px;
  }

  .floating-card {
    display: none;
  }

  .builder-panel {
    grid-template-columns: 1fr;
  }

  .example-grid article {
    grid-template-columns: 1fr auto 1fr;
    padding: 12px;
  }

  details {
    border-radius: 16px;
  }
}
