:root {
  --void: #17121f;
  --void-2: #241832;
  --ink: #221925;
  --paper: #fff3f8;
  --paper-shadow: #f4cada;
  --lace: #f9dce8;
  --rose: #ff78a6;
  --ribbon: #d84b7e;
  --mint: #8ff4cf;
  --cyan: #8fd9ff;
  --lilac: #c9a7ff;
  --butter: #fff1a8;
  --white: #fffafd;
  --line: rgba(255, 250, 253, 0.2);
  --dark-line: rgba(34, 25, 37, 0.24);
  --soft-shadow: 0 28px 80px rgba(12, 7, 20, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  overflow: hidden;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 120, 166, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 217, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--void), #1f1527 48%, #0f1220);
  background-size:
    48px 48px,
    48px 48px,
    100% 100%;
  color: var(--white);
  font-family:
    "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.35;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 250, 253, 0.06) 18% 19%, transparent 19% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

p,
h1,
h2 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.65rem 0.8rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.dream-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.screen {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  height: calc(100svh - 82px);
  padding: 3rem 4rem 1.4rem;
}

.menu-zone {
  max-width: 760px;
}

.system-line,
.flyer-label,
.service-kicker,
.inquiry-bar span {
  font-family:
    "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.system-line {
  color: rgba(255, 250, 253, 0.64);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 700;
}

.hole-mark {
  position: relative;
  display: block;
  width: 4.35rem;
  height: 4.35rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
}

.hole-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hole-ring {
  fill: none;
  stroke: var(--paper);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.3;
}

.ring-one {
  stroke-width: 5.5;
}

.rabbit-shape {
  fill: var(--paper);
}

h1 {
  max-width: 10ch;
  margin-top: 1.6rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.intro-copy {
  max-width: 35rem;
  margin-top: 1.6rem;
  color: rgba(255, 250, 253, 0.75);
  font-size: 1.08rem;
}

.main-menu {
  display: grid;
  gap: 0.35rem;
  width: min(30rem, 100%);
  margin-top: 2rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 3.45rem;
  padding: 0 1rem;
  background: rgba(255, 250, 253, 0.05);
  color: rgba(255, 250, 253, 0.82);
  cursor: pointer;
  text-align: left;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.menu-item span {
  font-size: 1.5rem;
  font-weight: 900;
}

.menu-item strong {
  color: var(--mint);
  font-size: 1.45rem;
}

.menu-item:hover,
.menu-item:focus-visible,
.menu-item.is-active {
  background: linear-gradient(90deg, rgba(255, 120, 166, 0.24), rgba(143, 244, 207, 0.08));
  color: var(--white);
  transform: translateX(0.35rem);
}

.status-panel {
  position: relative;
  min-height: 4.5rem;
  width: min(34rem, 100%);
  margin-top: 1rem;
  border-left: 2px solid var(--rose);
  padding: 0.8rem 0 0.8rem 1rem;
  color: rgba(255, 250, 253, 0.72);
}

.panel-copy {
  position: absolute;
  inset: 0 0 auto 1rem;
  max-width: 32rem;
  opacity: 0;
  transform: translateY(0.4rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.panel-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.flyer-zone {
  justify-self: end;
  width: min(33rem, 100%);
}

.service-kicker {
  margin-bottom: 0.75rem;
  color: rgba(255, 250, 253, 0.7);
  text-align: right;
}

.tear-flyer {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #ffe4ef);
  background-size:
    22px 22px,
    22px 22px,
    100% 100%;
  box-shadow: var(--soft-shadow);
  padding: 1.45rem 1.45rem 0;
  transform: rotate(1.2deg);
}

.tear-flyer::before {
  position: absolute;
  inset: 0.55rem;
  border: 1px dashed rgba(34, 25, 37, 0.22);
  pointer-events: none;
  content: "";
}

.flyer-pin {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--ribbon);
  box-shadow: 0 0 0 0.35rem rgba(216, 75, 126, 0.16);
}

.flyer-label {
  color: rgba(34, 25, 37, 0.58);
}

h2 {
  margin-top: 0.65rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.84;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.96rem;
  font-weight: 800;
}

.service-list li::before {
  position: absolute;
  left: 0;
  color: var(--ribbon);
  content: "*";
}

.flyer-note {
  margin-top: 1rem;
  border-top: 1px solid var(--dark-line);
  padding-top: 0.9rem;
  color: rgba(34, 25, 37, 0.72);
  font-size: 0.94rem;
}

.tear-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 1.2rem -1.45rem 0;
  border-top: 2px dashed rgba(34, 25, 37, 0.34);
}

.tear-tab {
  display: block;
  min-height: 6.25rem;
  border-right: 1px dashed rgba(34, 25, 37, 0.3);
  padding: 0;
  background: transparent;
  color: rgba(34, 25, 37, 0.78);
  cursor: grab;
  font-family:
    "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.tear-tab span,
.pulling-tab span {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  transform: rotate(90deg);
  white-space: nowrap;
}

.tear-tab:hover,
.tear-tab:focus-visible {
  background: rgba(255, 120, 166, 0.16);
}

.tear-tab:active {
  cursor: grabbing;
}

.tear-tab.is-torn {
  border-right-color: rgba(255, 250, 253, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 120, 166, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 217, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, var(--void), #1f1527 48%, #0f1220);
  background-size:
    48px 48px,
    48px 48px,
    100% 100%;
  box-shadow:
    inset 0 14px 14px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 250, 253, 0.08);
  clip-path: polygon(0 0, 11% 5%, 21% 0, 34% 4%, 48% 0, 63% 5%, 78% 0, 91% 4%, 100% 0, 100% 100%, 0 100%);
  cursor: default;
}

.tear-tab.is-torn span {
  opacity: 0;
}

.tear-tab:last-child {
  border-right: 0;
}

.pulling-tab {
  position: fixed;
  z-index: 12;
  display: block;
  border: 1px dashed rgba(34, 25, 37, 0.3);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #ffe4ef);
  background-size:
    22px 22px,
    22px 22px,
    100% 100%;
  box-shadow: 0 18px 38px rgba(12, 7, 20, 0.26);
  color: rgba(34, 25, 37, 0.78);
  font-family:
    "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}

.tab-prompt {
  position: fixed;
  right: 1rem;
  bottom: calc(82px + 1rem);
  z-index: 13;
  width: min(21rem, calc(100vw - 2rem));
  min-height: 8.5rem;
  border: 1px dashed rgba(34, 25, 37, 0.34);
  padding: 1rem 1rem 4rem;
  background:
    linear-gradient(90deg, rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(34, 25, 37, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), #ffe4ef);
  background-size:
    22px 22px,
    22px 22px,
    100% 100%;
  box-shadow: 0 22px 58px rgba(12, 7, 20, 0.36);
  color: var(--ink);
  opacity: 0;
  transform: translateY(0.45rem) rotate(-0.4deg);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.tab-prompt::before {
  position: absolute;
  inset: 0.5rem;
  border: 1px dashed rgba(34, 25, 37, 0.18);
  pointer-events: none;
  content: "";
}

.tab-prompt.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-0.4deg);
}

.prompt-label {
  color: rgba(34, 25, 37, 0.58);
  font-family:
    "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.prompt-domain {
  margin-top: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.copy-domain {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-height: 2.5rem;
  border: 1px solid rgba(34, 25, 37, 0.42);
  padding: 0 0.9rem;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
}

.copy-domain:hover,
.copy-domain:focus-visible {
  background: var(--ribbon);
}

.inquiry-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 82px;
  padding: 0.8rem 4rem 1.3rem;
  border-top: 1px solid var(--line);
  background: rgba(12, 7, 20, 0.36);
  color: rgba(255, 250, 253, 0.8);
  backdrop-filter: blur(18px);
}

.inquiry-bar p {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.inquiry-bar a {
  overflow-wrap: anywhere;
}

.inquiry-bar span {
  color: rgba(255, 250, 253, 0.5);
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .screen {
    grid-template-columns: 1fr 0.8fr;
    gap: 1.25rem;
    padding: 2rem 2rem 1rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .tear-tab {
    min-height: 4.8rem;
  }

  .inquiry-bar {
    padding-inline: 2rem;
  }
}

@media (max-width: 760px) {
  .screen {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    height: calc(100svh - 108px);
    padding: 1rem;
  }

  .brand-lockup {
    margin-top: 0.7rem;
  }

  h1 {
    max-width: 12ch;
    margin-top: 0.8rem;
    font-size: 2.7rem;
  }

  .intro-copy {
    margin-top: 0.7rem;
    font-size: 0.92rem;
  }

  .main-menu {
    margin-top: 0.9rem;
  }

  .menu-item {
    min-height: 2.75rem;
  }

  .menu-item span {
    font-size: 1.08rem;
  }

  .status-panel {
    min-height: 3.6rem;
    margin-top: 0.65rem;
    font-size: 0.86rem;
  }

  .flyer-zone {
    justify-self: stretch;
    width: 100%;
  }

  .service-kicker {
    display: none;
  }

  .tear-flyer {
    padding: 0.85rem 0.85rem 0;
    transform: rotate(-0.4deg);
  }

  h2 {
    font-size: 2.25rem;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 0.7rem;
    margin-top: 0.7rem;
  }

  .service-list li {
    font-size: 0.78rem;
  }

  .flyer-note {
    display: none;
  }

  .tear-tabs {
    margin: 0.75rem -0.85rem 0;
  }

  .tear-tab {
    min-height: 3.35rem;
    font-size: 0.58rem;
  }

  .inquiry-bar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    min-height: 108px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }

  .tab-prompt {
    bottom: calc(108px + 0.75rem);
    min-height: 7.2rem;
    padding-bottom: 3.5rem;
  }

  .prompt-domain {
    font-size: 1.55rem;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .screen {
    padding-block: 1.4rem 0.7rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .intro-copy {
    font-size: 0.94rem;
  }

  .main-menu {
    margin-top: 1rem;
  }

  .tear-tab {
    min-height: 4.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
