@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&family=Pacifico&display=swap");

:root {
  --font-garamond: "EB Garamond";
  --font-inter: "Inter";
  --font-pacifico: "Pacifico";
  --ink: #fff5ff;
  --soft: rgba(255, 245, 255, 0.76);
  --muted: rgba(255, 245, 255, 0.58);
  --plum: #17001f;
  --plum-mid: #2d0737;
  --surface: #25082f;
  --surface-strong: #3a0a43;
  --pink: #ff2ac8;
  --cyan: #45eff8;
  --amber: #ffb23f;
  --lime: #b9fa68;
  --line: rgba(255, 255, 255, 0.16);
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--plum);
  color: var(--ink);
  font-family: var(--font-inter), Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.wordmark-text {
  font-family: var(--font-pacifico), cursive;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 12px rgba(69, 239, 248, 0.28);
}

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

nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--soft);
  font-family: var(--font-pacifico), cursive;
  font-size: 0.94rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 340px;
  padding: 28px max(20px, calc((100% - 1180px) / 2)) 32px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 42, 200, 0.13), transparent 36%),
    linear-gradient(145deg, #17001f 0%, #3d073f 54%, #102b35 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 10%, black 65%, black 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1 {
  margin-bottom: 8px;
  max-width: 720px;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.9;
  font-weight: 500;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: #fff7ff;
  text-shadow: 0 0 16px rgba(255, 42, 200, 0.68), 0 0 48px rgba(255, 42, 200, 0.32);
}

h1 strong {
  color: #effeff;
  font-family: var(--font-pacifico), cursive;
  font-size: 0.72em;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 0 14px rgba(69, 239, 248, 0.66), 0 0 44px rgba(69, 239, 248, 0.28);
}

.neon-line {
  width: min(440px, 82%);
  height: 5px;
  margin: 8px 0 14px;
  border-radius: 4px;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 42, 200, 0.78), 0 0 44px rgba(255, 42, 200, 0.34);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.48;
}

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

.action {
  min-height: 48px;
  padding: 13px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

.action.primary {
  background: var(--cyan);
  color: var(--plum);
  box-shadow: 0 0 20px rgba(69, 239, 248, 0.4);
}

.action.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.section,
footer {
  width: var(--page);
  margin-inline: auto;
}

.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.section {
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 48px;
  align-items: end;
}

.section-heading h2,
.free-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 5rem;
  line-height: 0.94;
  font-weight: 500;
  color: #fff7ff;
  text-shadow: 0 0 18px rgba(255, 42, 200, 0.55);
}

.section-heading > p,
.free-copy > p {
  margin-bottom: 0;
  color: var(--soft);
  line-height: 1.6;
}

.quick-access {
  width: var(--page);
  margin: 0 auto;
  padding: 58px 0 20px;
}

.quick-heading {
  margin-bottom: 20px;
}

.quick-heading h2 {
  margin: 0;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.05;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-tile {
  min-height: 218px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quick-tile:hover,
.quick-tile:focus-visible {
  border-color: rgba(69, 239, 248, 0.62);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.quick-tile > span {
  margin-bottom: 20px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quick-tile > strong {
  margin-bottom: 8px;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.quick-tile > small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.quick-tile > b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 500;
}

.quick-tile i {
  font-style: normal;
}

.prompt-tile {
  border-color: rgba(69, 239, 248, 0.42);
  background: linear-gradient(145deg, rgba(69, 239, 248, 0.11), transparent 58%), var(--surface);
}

.setups-tile {
  border-color: rgba(69, 239, 248, 0.42);
  background: linear-gradient(145deg, rgba(69, 239, 248, 0.11), transparent 58%), var(--surface);
}

.guide-tile {
  border-color: rgba(255, 178, 63, 0.46);
  background: linear-gradient(145deg, rgba(255, 178, 63, 0.12), transparent 58%), var(--surface);
}

.shop-section {
  padding-top: 72px;
}

.shop-heading {
  margin-bottom: 26px;
  align-items: start;
}

.shop-title a {
  display: inline-block;
  text-decoration: none;
}

.shop-title a > span {
  display: inline-block;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 500;
}

.shop-intro > p:first-child {
  margin-bottom: 14px;
  color: var(--soft);
  line-height: 1.6;
}

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

.desk-link {
  min-height: 176px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.desk-link:hover,
.desk-link:focus-visible,
.storefront-link:hover,
.storefront-link:focus-visible {
  border-color: rgba(69, 239, 248, 0.62);
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.desk-link:first-child {
  border-color: rgba(69, 239, 248, 0.46);
  background: linear-gradient(145deg, rgba(69, 239, 248, 0.1), transparent 62%), var(--surface);
}

.desk-link-copy {
  min-width: 0;
}

.desk-link-copy strong,
.storefront-link strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.desk-link-copy small {
  color: var(--muted);
  font-family: var(--font-inter), Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
}

.desk-note {
  display: block;
  margin: -1px 0 8px;
  color: var(--amber);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desk-link-copy > span,
.storefront-link small {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.desk-link > b,
.storefront-link > b {
  align-self: flex-end;
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 400;
}

.desk-multi {
  justify-content: flex-start;
}

.desk-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.desk-actions a {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.desk-actions a:hover,
.desk-actions a:focus-visible {
  text-decoration: underline;
}

.desk-actions i {
  font-style: normal;
}

.storefront-link {
  border-color: rgba(255, 42, 200, 0.42);
  background: linear-gradient(145deg, rgba(255, 42, 200, 0.13), transparent 62%), var(--surface);
}

.desk-disclosure {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 178, 63, 0.44);
  border-radius: 8px;
  background: rgba(255, 178, 63, 0.08);
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.desk-disclosure strong {
  color: var(--amber);
  font-weight: 500;
}

.free-section {
  padding: 62px 0 72px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.free-copy h2 strong {
  color: #effeff;
  font-family: var(--font-pacifico), cursive;
  font-size: 0.72em;
  font-weight: 400;
  text-shadow: 0 0 15px rgba(69, 239, 248, 0.7);
}

.free-copy > p {
  max-width: 600px;
  margin-top: 14px;
}

.free-action {
  min-width: 0;
}

.free-list {
  display: grid;
  gap: 10px;
}

.free-list > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.free-list span {
  color: var(--muted);
  line-height: 1.5;
}

.free-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 500;
}

.signup-form {
  margin-top: 16px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.55fr);
  gap: 12px;
  background:
    linear-gradient(145deg, rgba(255, 42, 200, 0.16), transparent 54%),
    #210529;
}

.signup-form label {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 9px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.signup-form input,
.signup-form button {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
}

.signup-form input {
  padding: 0 14px;
  border: 1px solid rgba(69, 239, 248, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.signup-form input::placeholder {
  color: var(--muted);
}

.signup-form button {
  border: 0;
  background: var(--pink);
  color: var(--plum);
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 42, 200, 0.42);
}

.signup-form p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.setups-page-hero {
  width: var(--page);
  margin: 0 auto;
  padding: 64px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.setups-page-hero h1 {
  margin-bottom: 14px;
  font-size: 4.6rem;
  line-height: 0.96;
  text-shadow: 0 0 18px rgba(255, 42, 200, 0.5);
}

.setups-page-hero > div > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.55;
}

.setup-detail-list {
  width: var(--page);
  margin: 0 auto;
  padding: 28px 0 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.setup-detail {
  min-height: 240px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.setup-detail:first-child {
  border-color: rgba(69, 239, 248, 0.46);
  background: linear-gradient(145deg, rgba(69, 239, 248, 0.1), transparent 62%), var(--surface);
}

.setup-detail-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.setup-detail h2 {
  margin-bottom: 8px;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 500;
}

.setup-detail p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.setup-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.setup-detail-actions a {
  min-height: 44px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(69, 239, 248, 0.46);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.setup-detail-actions a:hover,
.setup-detail-actions a:focus-visible {
  background: rgba(69, 239, 248, 0.1);
}

.storefront-detail {
  border-color: rgba(255, 42, 200, 0.42);
  background: linear-gradient(145deg, rgba(255, 42, 200, 0.13), transparent 62%), var(--surface);
}

.library-main {
  min-height: calc(100vh - 76px);
}

.library-hero {
  width: var(--page);
  margin: 0 auto;
  padding: 68px 0 34px;
}

.library-hero h1 {
  margin-bottom: 14px;
  font-size: 4.6rem;
  line-height: 0.95;
  text-shadow: 0 0 16px rgba(255, 42, 200, 0.5);
}

.library-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.library-grid {
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.library-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 42, 200, 0.1), transparent 60%), var(--surface);
}

.library-card:first-child {
  border-color: rgba(69, 239, 248, 0.42);
  background: linear-gradient(145deg, rgba(69, 239, 248, 0.1), transparent 60%), var(--surface);
}

.library-card > span {
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.library-card h2 {
  margin-bottom: 12px;
  font-family: var(--font-garamond), Georgia, serif;
  font-size: 2.35rem;
  line-height: 1.05;
  font-weight: 500;
}

.library-card p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.library-card a {
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(69, 239, 248, 0.5);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.library-card a:hover,
.library-card a:focus-visible {
  background: rgba(69, 239, 248, 0.1);
}

footer {
  min-height: 145px;
  padding: 42px 0 48px;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

footer p {
  margin: 0;
}

.signature-rule {
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.signature-rule > span {
  height: 1px;
  background: rgba(255, 42, 200, 0.42);
}

.signature-rule strong {
  color: var(--cyan);
  font-family: var(--font-pacifico), cursive;
  font-size: 1.55rem;
  font-weight: 400;
  transform: rotate(-2deg);
  text-shadow: 0 0 14px rgba(69, 239, 248, 0.34);
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.8rem;
  }

  .section-heading h2,
  .free-copy h2 {
    font-size: 4.2rem;
  }

  .quick-grid,
  .desk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .free-section,
  .setups-page-hero {
    grid-template-columns: 1fr;
  }

  .setups-page-hero {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  .site-header {
    padding: 14px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

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

  nav a {
    min-height: 44px;
    padding: 10px 6px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    text-align: center;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 340px;
    padding: 24px 14px 28px;
    background:
      linear-gradient(0deg, rgba(23, 0, 31, 0.96), rgba(61, 7, 63, 0.78)),
      linear-gradient(145deg, #17001f 0%, #3d073f 58%, #102b35 100%);
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.94;
  }

  .hero-intro {
    margin-bottom: 13px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

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

  .action {
    width: 100%;
  }

  .quick-grid,
  .desk-grid {
    grid-template-columns: 1fr;
  }

  .quick-tile {
    min-height: 190px;
  }

  .desk-link {
    min-height: 154px;
    padding: 15px 14px;
  }

  .desk-link-copy strong,
  .storefront-link strong {
    font-size: 1.3rem;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading h2,
  .free-copy h2 {
    font-size: 3.25rem;
  }

  .free-section {
    gap: 34px;
    padding: 52px 0 58px;
  }

  .signup-form {
    padding: 20px 14px;
    grid-template-columns: 1fr;
  }

  .signup-form label,
  .signup-form p {
    grid-column: auto;
  }

  .setups-page-hero {
    padding: 44px 0 30px;
  }

  .setups-page-hero h1 {
    font-size: 3rem;
  }

  .setup-detail-list {
    grid-template-columns: 1fr;
    padding-bottom: 58px;
  }

  .setup-detail {
    min-height: 210px;
    padding: 20px;
  }

  .setup-detail-actions {
    display: grid;
  }

  .setup-detail-actions a {
    width: 100%;
  }

  .library-hero {
    padding: 46px 0 28px;
  }

  .library-hero h1 {
    font-size: 3.2rem;
  }

  .library-grid {
    grid-template-columns: 1fr;
    padding-bottom: 58px;
  }

  .library-card {
    min-height: 250px;
    padding: 22px 20px;
  }

  .library-card h2 {
    font-size: 2rem;
  }

}

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