:root {
  color-scheme: light;
  --blue: #0758f8;
  --ink: #071326;
  --muted: #667085;
  --line: #dce5f3;
  --surface: #f6f9ff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #071326;
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.mobile-header {
  display: none;
}

.page-shell {
  width: min(100%, 1760px);
  margin: 0 auto;
  overflow: hidden;
}

.art-section {
  position: relative;
  width: 100%;
  padding: clamp(22px, 4vw, 72px) clamp(14px, 3.5vw, 58px);
  background: #fff;
}

.art-section.flush {
  padding-inline: 0;
}

.art-section.compact {
  padding-block: clamp(14px, 2.5vw, 44px);
}

.art-frame {
  position: relative;
  width: 100%;
  margin: 0;
}

.art-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-art {
  display: block;
}

.mobile-art,
.mobile-art.mobile-slices {
  display: none;
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  text-decoration: none;
}

.hotspot:focus-visible {
  outline: 3px solid #20b8ff;
  outline-offset: 3px;
  border-radius: 12px;
}

.brand-hero .nav-how { left: 18.8%; top: 3%; width: 9.5%; height: 9%; }
.brand-hero .nav-brand { left: 27.5%; top: 3%; width: 8.5%; height: 9%; }
.brand-hero .nav-creator { left: 35.4%; top: 3%; width: 8.5%; height: 9%; }
.brand-hero .nav-login { left: 78.7%; top: 3%; width: 7%; height: 9%; }
.brand-hero .nav-apply { left: 86%; top: 2.2%; width: 12%; height: 10%; }
.brand-hero .brand-apply { left: 2.1%; top: 65.2%; width: 26.1%; height: 9.2%; }
.brand-hero .creator-go { left: 2.1%; top: 75%; width: 26.1%; height: 9.2%; }

.creator-hero .nav-how { left: 23%; top: 5%; width: 8%; height: 8%; }
.creator-hero .nav-brand { left: 31%; top: 5%; width: 8%; height: 8%; }
.creator-hero .nav-creator { left: 39.5%; top: 5%; width: 8%; height: 8%; }
.creator-hero .nav-login { left: 76%; top: 5%; width: 7%; height: 8%; }
.creator-hero .nav-apply { left: 83.5%; top: 4%; width: 11%; height: 9%; }
.creator-hero .creator-apply { left: 8.5%; top: 72.8%; width: 17%; height: 8.5%; }
.creator-hero .creator-how { left: 26.3%; top: 72.8%; width: 9.7%; height: 8.5%; }

.mobile-slices {
  display: grid;
  gap: 12px;
}

.crop {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  background: #f6f8fb;
}

.crop > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.mobile-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mobile-button,
.dialog-submit,
.dialog-close {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--blue);
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-button.primary,
.dialog-submit {
  background: var(--blue);
  color: #fff;
}

.mobile-button.secondary,
.dialog-close {
  background: #fff;
  color: var(--ink);
}

.application-dialog {
  width: min(94vw, 780px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(1, 15, 43, 0.3);
}

.application-dialog::backdrop {
  background: rgba(2, 10, 24, 0.64);
  backdrop-filter: blur(6px);
}

.dialog-inner {
  max-height: 92vh;
  overflow: auto;
  padding: clamp(20px, 4vw, 38px);
  background: linear-gradient(145deg, #fff 0%, #f5f8ff 100%);
}

.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.dialog-top p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.dialog-top h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.dialog-x {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

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

.field {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9e1ed;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 400;
  outline: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 88, 248, 0.12);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.4;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #70d09b;
  border-radius: 12px;
  background: #effcf4;
  color: #0d6535;
  font-weight: 700;
}

.form-success.show {
  display: block;
}

.prototype-note {
  margin: 0;
  padding: 18px 22px;
  background: #06142b;
  color: #d4def0;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 720px) {
  .mobile-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(12, 29, 61, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
  }

  .mobile-logo {
    display: block;
    flex: 0 0 128px;
    width: 128px;
  }

  .mobile-logo .crop {
    display: block;
    width: 100%;
    border-radius: 0;
    background: #fff;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-nav-actions a,
  .mobile-nav-actions button {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid var(--blue);
    background: #fff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-actions .primary {
    background: var(--blue);
    color: #fff;
  }

  .page-shell {
    width: 100%;
  }

  .art-section,
  .art-section.flush,
  .art-section.compact {
    padding: 18px 14px;
  }

  .desktop-art {
    display: none;
  }

  .mobile-art {
    display: block;
  }

  .mobile-art.mobile-slices,
  .mobile-slices {
    display: grid;
  }

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

  .field.full {
    grid-column: auto;
  }

  .dialog-actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }

  .prototype-note {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
