:root {
  --ink: #0f1115;
  --paper: #f7f2ec;
  --punch: #ff6b35;
  --acid: #c5f36b;
  --mint: #6cf3c2;
  --outline: #f6c344;
  --muted: #adb8c0;
  --off-black: #0d1017;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 107, 53, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(108, 243, 194, 0.2),
      transparent 35%
    ),
    repeating-linear-gradient(
      -45deg,
      #0f1115,
      #0f1115 12px,
      #11141d 12px,
      #11141d 24px
    );
  color: var(--paper);
  min-height: 100vh;
}

img {
  pointer-events: none;
}

.rough-body {
  padding: 32px 18px 48px;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  gap: 12px;
}

.header-mark {
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  padding: 8px 14px;
  border: 2px solid var(--outline);
  background: linear-gradient(
    120deg,
    rgba(255, 107, 53, 0.25),
    rgba(11, 13, 19, 0.95)
  );
  box-shadow: 6px 6px 0 rgba(255, 107, 53, 0.32);
}

.header-note {
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audio-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 14px 10px;
  border: 2px solid rgba(245, 193, 68, 0.35);
  border-radius: 14px;
  background: rgba(13, 16, 23, 0.7);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.audio-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.audio-title {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.audio-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.audio-strip audio {
  width: 100%;
  max-width: 320px;
  background: transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 36px;
}

.hero-copy {
  background: rgba(13, 16, 23, 0.7);
  padding: 24px 20px;
  border: 2px solid rgba(245, 193, 68, 0.35);
  border-radius: 14px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.4);
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--paper);
  text-shadow: 4px 4px 0 rgba(255, 107, 53, 0.4);
}

.hero-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  color: var(--paper);
}

.chip-orange {
  background: rgba(255, 107, 53, 0.18);
}

.chip-green {
  background: rgba(108, 243, 194, 0.16);
}

.chip-ink {
  background: rgba(13, 16, 23, 0.8);
  border-color: rgba(245, 193, 68, 0.5);
}

.chip-acid {
  background: rgba(197, 243, 107, 0.18);
  border-color: rgba(197, 243, 107, 0.6);
}

.chip-mint {
  background: rgba(108, 243, 194, 0.2);
  border-color: rgba(108, 243, 194, 0.55);
}

.chip-sunset {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(255, 214, 165, 0.24));
  border-color: rgba(255, 107, 53, 0.4);
}

.chip-inklight {
  background: rgba(15, 17, 23, 0.6);
  border-color: rgba(173, 184, 192, 0.4);
}

.chip-plasma {
  background: linear-gradient(135deg, rgba(108, 243, 194, 0.18), rgba(255, 107, 53, 0.18));
  border-color: rgba(246, 195, 68, 0.45);
}

.chip-amber {
  background: rgba(246, 195, 68, 0.2);
  border-color: rgba(246, 195, 68, 0.55);
}

.countdown-block {
  border: 2px dashed rgba(245, 193, 68, 0.6);
  padding: 14px;
  border-radius: 12px;
  background: rgba(13, 16, 23, 0.7);
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--paper);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 10px;
}

.countdown-cell {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.35);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.count-number {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 2.2rem;
  color: var(--acid);
  line-height: 1;
}

.count-unit {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.signup-card {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.16),
    rgba(10, 12, 18, 0.96)
  );
  border: 2px solid var(--outline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 10px 12px 0 rgba(255, 107, 53, 0.35);
  position: relative;
  overflow: hidden;
}

.signup-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(245, 193, 68, 0.35);
  pointer-events: none;
}

.card-headline {
  font-family: Arial, sans-serif;
  font-size: 1.9rem;
  margin: 0 0 6px;
}

.card-text {
  margin: 0 0 16px;
  color: var(--paper);
}

.ideas-proof {
  background: rgba(13, 16, 23, 0.8);
  border: 2px dashed rgba(245, 193, 68, 0.4);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.35);
}

.ideas-headline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.ideas-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.5);
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.ideas-sub {
  margin: 0;
  color: var(--muted);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.idea-card {
  border: 2px solid rgba(108, 243, 194, 0.35);
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(
    135deg,
    rgba(108, 243, 194, 0.12),
    rgba(10, 12, 18, 0.9)
  );
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.35);
}

.idea-title {
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.idea-copy {
  margin: 0;
  color: var(--paper);
}

.form-label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.rough-input {
  background: rgba(15, 17, 23, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  padding: 12px;
  border-radius: 10px;
  width: 100%;
  outline: none;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.rough-input:focus {
  border-color: var(--outline);
}

.help-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.coach-block {
  margin: 18px 0 14px;
}

.coach-label {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}

.coach-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.1s ease, border-color 0.1s ease;
}

.coach-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 193, 68, 0.7);
}

.coach-tile input {
  display: none;
}

.coach-frame {
  display: inline-flex;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  justify-content: center;
}

.coachimage {
  width: 100%;
  height: auto;
}

.coachtext {
  color: var(--paper);
  font-size: 0.95rem;
}

.coach-tile input:checked ~ .coach-frame {
  border-color: var(--outline);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.35);
}

.coach-tile input:checked ~ .coachtext {
  color: var(--acid);
  font-weight: 700;
}

.rough-button {
  width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--acid);
  color: #071014;
  font-weight: 800;
  text-transform: uppercase;
  border: 2px solid #071014;
  box-shadow: 5px 6px 0 #071014;
}

.rough-button:hover {
  background: #e4ff9c;
}

.features {
  background: rgba(13, 16, 23, 0.8);
  border: 2px solid rgba(245, 193, 68, 0.35);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.35);
}

.section-header {
  margin-bottom: 18px;
}

.section-title {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  margin: 0;
  text-shadow: 3px 3px 0 rgba(255, 107, 53, 0.45);
}

.section-sub {
  margin: 6px 0 0;
  color: var(--muted);
}

.screenshots {
  background: rgba(13, 16, 23, 0.8);
  border: 2px solid rgba(245, 193, 68, 0.35);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.screenshot-grid {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.screenshot-card {
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.35);
  width: clamp(220px, 26vw, 320px);
  position: relative;
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card + .screenshot-card {
  margin-left: -50px;
}

.screenshot-card:nth-child(1) {
  transform: rotate(-6deg) translateY(10px);
  z-index: 4;
}

.screenshot-card:nth-child(2) {
  transform: rotate(-2deg) translateY(0);
  z-index: 3;
}

.screenshot-card:nth-child(3) {
  transform: rotate(3deg) translateY(12px);
  z-index: 2;
}

.screenshot-card:nth-child(4) {
  transform: rotate(7deg) translateY(4px);
  z-index: 1;
}

.screenshot-card:hover {
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.55);
  transform: rotate(0deg) translateY(-4px);
  z-index: 5;
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.screenshot-caption {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 107, 53, 0.18);
  pointer-events: none;
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--paper);
}

a {
  color: var(--mint);
}

@media (max-width: 640px) {
  .rough-body {
    padding: 20px 14px 36px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signup-card {
    box-shadow: 6px 8px 0 rgba(255, 107, 53, 0.35);
  }

  .audio-strip {
    flex-direction: column;
    align-items: center;
  }

  .screenshot-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .screenshot-card,
  .screenshot-card + .screenshot-card {
    margin-left: 0;
    transform: none;
    width: 100%;
  }

  .screenshot-card:nth-child(1),
  .screenshot-card:nth-child(2),
  .screenshot-card:nth-child(3),
  .screenshot-card:nth-child(4) {
    transform: none !important;
  }

  .screenshot-card:hover {
    transform: translateY(-2px);
  }
}
