:root {
  --bg: #000;
  --panel: #080b10;
  --panel2: #0d1219;
  --line: rgba(255,255,255,.16);
  --line2: rgba(89,220,255,.55);
  --text: #fff;
  --muted: rgba(255,255,255,.66);
  --cyan: #59dcff;
  --blue: #248cff;
  --pink: #ff33cc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 0%, rgba(89,220,255,.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,51,204,.12), transparent 24%),
    #000;
  color: var(--text);
  font-family: "Titillium Web", system-ui, sans-serif;
}

body {
  display: grid;
  place-items: start center;
}

.shell {
  width: min(760px, calc(100% - 32px));
  padding: 56px 0 48px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  text-align: left;
}

.mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--blue);
  border-radius: 18px;
  color: var(--cyan);
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 0 30px rgba(36,140,255,.25);
}

.eyebrow {
  margin: 0 0 2px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 72px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 700;
}

.communityPanel {
  width: min(480px, 100%);
  margin: 0 auto 24px;
  border: 1px solid var(--line2);
  border-radius: 18px;
  background: rgba(89,220,255,.1);
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 0 36px rgba(89,220,255,.12);
}

.communityPanel strong {
  display: block;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1.2;
}

.communityPanel span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(8,11,16,.88);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 0 60px rgba(0,0,0,.6);
}

h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(38px, 6vw, 58px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 700;
}

.lede {
  margin: 18px auto 34px;
  max-width: 560px;
  text-align: center;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.25;
}

.view {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
}

label span,
small {
  color: var(--muted);
  font-weight: 400;
}

input,
textarea,
button {
  width: 100%;
  border-radius: 16px;
  font: inherit;
  font-size: 18px;
}

input,
textarea {
  border: 1px solid var(--line);
  background: #030405;
  color: #fff;
  padding: 16px 18px;
  outline: none;
}

textarea {
  min-height: 122px;
  resize: vertical;
  line-height: 1.35;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(89,220,255,.12);
}

button {
  min-height: 58px;
  border: 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

.help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.connected {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(89,220,255,.25);
  border-radius: 16px;
  background: rgba(89,220,255,.07);
  padding: 14px 16px;
}

.connected span {
  color: var(--muted);
}

.connected strong {
  color: var(--cyan);
}

.result {
  border: 1px solid rgba(89,220,255,.45);
  border-radius: 18px;
  background: rgba(89,220,255,.08);
  padding: 18px;
  color: var(--muted);
}

.result strong {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 20px;
}

.result a {
  display: inline-block;
  margin: 8px 12px 0 0;
}

.notes {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  line-height: 1.35;
}

a {
  color: var(--cyan);
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  border: 1px solid var(--pink);
  border-radius: 16px;
  background: #110715;
  padding: 15px 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 34px rgba(255,51,204,.18);
}

.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .shell {
    width: min(380px, calc(100% - 24px));
    padding-top: 34px;
  }

  .hero {
    align-items: center;
  }

  .mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 24px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 40px;
  }

  .lede {
    font-size: 19px;
  }

  .connected {
    display: grid;
  }
}

.hero h1 {
  letter-spacing: -.045em;
}

.communityPanel {
  width: min(520px, 100%);
}

.communityPanel strong {
  white-space: nowrap;
}

.optionalCode {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding: 13px 16px;
}

.optionalCode summary {
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
}

.optionalCode label {
  margin-top: 14px;
}

.modeTabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modeButton {
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 15px;
}

.modeButton.active {
  border-color: var(--cyan);
  background: rgba(89,220,255,.14);
  color: #fff;
}

.modePanel {
  display: grid;
  gap: 18px;
}

@media (max-width: 640px) {
  .communityPanel strong {
    white-space: normal;
  }

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

.communityChooser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -14px auto 30px;
  color: var(--muted);
  font-size: 16px;
}

.communityChooser select {
  width: auto;
  min-width: 140px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(89,220,255,.10);
  border: 1px solid rgba(89,220,255,.45);
  font-weight: 700;
}

h2 span {
  color: var(--cyan);
}

@media (max-width: 640px) {
  .communityChooser {
    display: grid;
    gap: 8px;
    text-align: center;
  }

  .communityChooser select {
    width: 100%;
  }
}

/* SecretSkies fixed snap layout */
.shell {
  width: 800px !important;
  max-width: 800px !important;
  min-width: 800px !important;
}

.card {
  width: 800px !important;
  max-width: 800px !important;
  min-width: 800px !important;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  width: 800px !important;
  max-width: 800px !important;
  min-width: 800px !important;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 48px !important;
  line-height: .95 !important;
  white-space: nowrap;
  letter-spacing: -.055em;
}

.lede {
  max-width: none !important;
  font-size: 22px !important;
  white-space: nowrap;
}

.communityChooser {
  margin-top: 18px !important;
  margin-bottom: 34px !important;
}

.addCommunityBox {
  display: grid;
  gap: 14px;
  margin: -14px auto 30px;
  padding: 18px;
  border: 1px solid rgba(89,220,255,.35);
  border-radius: 18px;
  background: rgba(89,220,255,.06);
}

.addCommunityBox button {
  min-height: 48px;
}

@media (max-width: 799px) {
  .shell {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding-top: 34px;
  }

  .card {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding: 24px !important;
  }

  .hero {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
  }

  h1 {
    font-size: 42px !important;
    letter-spacing: -.045em !important;
  }

  h2 {
    font-size: 29px !important;
    line-height: 1 !important;
    white-space: normal;
  }

  .lede {
    font-size: 17px !important;
    line-height: 1.18 !important;
    white-space: normal;
  }

  .communityChooser {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .communityChooser select {
    width: 100%;
  }
}

/* Blacksky-only cleanup */
.communityChooser,
.addCommunityBox {
  display: none !important;
}

/* SecretSkies headline alignment fix */
.card h2 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 42px !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;
  white-space: nowrap !important;
}

.card .lede {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 18px auto 34px !important;
  text-align: center !important;
  font-size: 19px !important;
  line-height: 1.22 !important;
  white-space: nowrap !important;
}

.card {
  text-align: left !important;
}

@media (max-width: 799px) {
  .card h2 {
    font-size: 28px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }

  .card .lede {
    font-size: 16px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    max-width: 320px !important;
  }
}

.fileBox input {
  border: 1px dashed rgba(89,220,255,.35);
  background: rgba(89,220,255,.04);
  cursor: pointer;
}

.loadedSkeetBox {
  border: 1px solid rgba(89,220,255,.35);
  border-radius: 16px;
  background: rgba(89,220,255,.06);
  padding: 14px 16px;
  color: var(--muted);
}

.loadedSkeetBox strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 3px;
}

.result a {
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 700;
}

/* Media and alt text polish */
.loadedSkeetBox span {
  display: block;
  line-height: 1.3;
}

input[id$="AltInput"] {
  border-color: rgba(89,220,255,.24);
}

.mediaPanel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(89,220,255,.22);
  border-radius: 16px;
  background: rgba(89,220,255,.045);
  padding: 14px;
}

select {
  width: 100%;
  border-radius: 16px;
  font: inherit;
  font-size: 18px;
  border: 1px solid var(--line);
  background: #030405;
  color: #fff;
  padding: 16px 18px;
  outline: none;
}

/* SecretSkies controlled line breaks */
.mobileLine {
  display: none;
}

.desktopLine {
  display: inline;
}

@media (max-width: 799px) {
  .desktopLine {
    display: none;
  }

  .mobileLine {
    display: inline;
  }

  .card h2 {
    font-size: 34px !important;
    line-height: 1.03 !important;
    letter-spacing: -.055em !important;
    text-align: center !important;
  }

  .card .lede {
    max-width: 340px !important;
    font-size: 18px !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }
}

/* Mobile headline color correction */
.card h2,
.card h2 .mobileLine,
.card h2 .desktopLine {
  color: #fff !important;
}

.card h2 #communityNameHeadline,
.card h2 #communityNameHeadlineMobile {
  color: var(--cyan) !important;
}

.card .lede,
.card .lede .mobileLine,
.card .lede .desktopLine {
  color: var(--muted) !important;
}

.card .lede #communityNameInline,
.card .lede #communityNameInlineMobile {
  color: var(--muted) !important;
}

/* SecretSkies cloud lock icon */
.mark {
  overflow: hidden;
}

.markIcon {
  width: 34px;
  height: 34px;
  display: block;
}

.cloudLockBody {
  fill: #7FDBFF;
}

.cloudLockShackle {
  fill: none;
  stroke: #04131d;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloudLockHole {
  fill: #04131d;
}

/* Exact cloud-lock icon swap */
.mark {
  overflow: hidden;
}

.markIcon {
  width: 36px;
  height: 36px;
  display: block;
}

.cloudLockOutline,
.cloudLockShackle {
  fill: none;
  stroke: #7FDBFF;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloudLockKeyholeTop,
.cloudLockKeyholeStem {
  fill: #7FDBFF;
}

/* Use uploaded PNG inside SecretSkies frame */
.mark {
  overflow: hidden;
}

.markPng {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}


/* SecretSkies cloud lock logo fix */
.brand img,
.logo img,
header img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}


/* Public compatibility test block */
.publicTestView {
  margin-bottom: 26px;
}

.testBox {
  display: grid;
  gap: 12px;
  margin: 22px 0 18px;
  text-align: left;
}

.testBox p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.72);
  line-height: 1.35;
}

.testBox strong {
  color: #fff;
}

.testActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.buttonLink {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  background: linear-gradient(90deg, #59dcff, #2b8cff);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.secondaryLink {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}

.testHelp {
  text-align: center;
  margin-top: 18px;
  opacity: .7;
}

/* Force cloud lock to render inside the existing blue frame */
.mark img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 799px) {
  .testActions {
    grid-template-columns: 1fr;
  }
}


/* Simple app/community test landing */
.appTestView {
  margin: 26px 0 26px;
}

.primaryLink,
.secondaryButton {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.primaryLink {
  background: linear-gradient(90deg, #59dcff, #2b8cff);
  color: #fff;
}

.secondaryButton {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
}

.testHelp {
  text-align: center;
  margin-top: 16px;
}

.mark img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain !important;
  display: block !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.72);
}

.modal.hidden {
  display: none;
}

.modalCard {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(89,220,255,.34);
  border-radius: 22px;
  background: #07090f;
  padding: 26px;
  box-shadow: 0 0 40px rgba(89,220,255,.16);
}

.modalClose {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modalCard h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.modalIntro {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
}

.testedList {
  display: grid;
  gap: 10px;
}

.testedList div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.testedList span {
  color: rgba(255,255,255,.68);
}


/* Copyable test URL flow */
.copyLabel {
  text-align: left;
}

.copyRow {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 10px;
  margin-top: 8px;
}

.copyRow input {
  margin: 0;
  min-width: 0;
  font-size: 14px;
}

.copyRow button {
  margin: 0;
  min-height: 52px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(90deg, #59dcff, #2b8cff);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.appDirectoryModal {
  width: min(620px, 100%);
}

.directoryShell {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.azLegend {
  position: sticky;
  top: 12px;
  display: grid;
  gap: 4px;
  justify-items: center;
  padding-top: 44px;
}

.azLegend a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.azLegend a:hover {
  color: #59dcff;
  background: rgba(89,220,255,.1);
}

.testedTable {
  display: grid;
  gap: 8px;
}

.testedHead,
.testedRow {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  align-items: center;
}

.testedHead {
  color: rgba(255,255,255,.54);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 12px;
}

.testedRow {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.testedRow strong {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: 13px;
  text-align: center;
}

.testedRow.works strong {
  background: rgba(89,220,255,.2);
  color: #59dcff;
  border: 1px solid rgba(89,220,255,.55);
}

.testedRow.no strong {
  background: rgba(255,59,92,.16);
  color: #ff5c7c;
  border: 1px solid rgba(255,92,124,.48);
}

.testedRow.unknown strong {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 799px) {
  .copyRow {
    grid-template-columns: 1fr;
  }

  .directoryShell {
    grid-template-columns: 22px 1fr;
    gap: 10px;
  }

  .testedHead,
  .testedRow {
    grid-template-columns: 1fr 88px;
  }
}


/* Simpler SecretSkies landing pass */
.simpleInstruction {
  max-width: 420px;
  margin: 22px auto 14px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.35;
  text-align: center;
}

.simpleCopyRow {
  margin-top: 0;
}

.textButton {
  width: auto;
  min-height: 0;
  margin: 16px auto 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #59dcff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

#loginView {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 799px) {
  .simpleInstruction {
    font-size: 16px;
  }
}


/* Tighten hero spacing and emphasize Bluesky */
.blueWord {
  color: #2b8cff;
}

.card h2 {
  margin-bottom: 12px !important;
}

.lede {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  white-space: nowrap;
}

.appTestView {
  margin-top: 10px !important;
}

.simpleInstruction {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

@media (max-width: 799px) {
  .lede {
    white-space: nowrap;
  }

  .card h2 {
    margin-bottom: 10px !important;
  }

  .simpleInstruction {
    margin-top: 8px !important;
  }
}


/* Tighten hero spacing and emphasize Bluesky */
.blueWord {
  color: #2b8cff;
}

.card h2 {
  margin-bottom: 12px !important;
}

.lede {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  white-space: nowrap;
}

.appTestView {
  margin-top: 10px !important;
}

.simpleInstruction {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

@media (max-width: 799px) {
  .lede {
    white-space: nowrap;
  }

  .card h2 {
    margin-bottom: 10px !important;
  }

  .simpleInstruction {
    margin-top: 8px !important;
  }
}


/* SecretSkies report button */
.reportButton {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(90deg, #59dcff, #2b8cff);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

#reportModal label {
  display: block;
  margin-top: 14px;
  text-align: left;
}

#reportModal input {
  width: 100%;
}


/* Collapse SecretSkies test so login becomes the main action */
.testDetails {
  margin: 18px 0 18px !important;
  border: 1px solid rgba(89,220,255,.28);
  border-radius: 16px;
  background: rgba(89,220,255,.045);
  overflow: hidden;
}

.testDetails summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

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

.testDetails summary::after {
  content: " +";
  color: #59dcff;
}

.testDetails[open] summary::after {
  content: " –";
}

.testDetailsInner {
  padding: 0 18px 18px;
}

.testDetails .simpleInstruction {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  font-size: 15px;
}

.testDetails .copyRow {
  grid-template-columns: 1fr 76px;
}

.testDetails .copyRow input {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testDetails .copyRow button {
  min-height: 46px;
}

.testDetails .reportButton {
  min-height: 46px;
  margin-top: 10px;
}

.testDetails .textButton {
  margin-top: 12px;
  margin-bottom: 0;
}

#loginView {
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

@media (max-width: 799px) {
  .testDetails .copyRow {
    grid-template-columns: 1fr;
  }
}


/* Collapse SecretSkies test so login becomes the main action */
.testDetails {
  margin: 18px 0 18px !important;
  border: 1px solid rgba(89,220,255,.28);
  border-radius: 16px;
  background: rgba(89,220,255,.045);
  overflow: hidden;
}

.testDetails summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

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

.testDetails summary::after {
  content: " +";
  color: #59dcff;
}

.testDetails[open] summary::after {
  content: " –";
}

.testDetailsInner {
  padding: 0 18px 18px;
}

.testDetails .simpleInstruction {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  font-size: 15px;
}

.testDetails .copyRow {
  grid-template-columns: 1fr 76px;
}

.testDetails .copyRow input {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testDetails .copyRow button {
  min-height: 46px;
}

.testDetails .reportButton {
  min-height: 46px;
  margin-top: 10px;
}

.testDetails .textButton {
  margin-top: 12px;
  margin-bottom: 0;
}

#loginView {
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

@media (max-width: 799px) {
  .testDetails .copyRow {
    grid-template-columns: 1fr;
  }
}


/* Collapse SecretSkies test so login becomes the main action */
.testDetails {
  margin: 18px 0 18px !important;
  border: 1px solid rgba(89,220,255,.28);
  border-radius: 16px;
  background: rgba(89,220,255,.045);
  overflow: hidden;
}

.testDetails summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

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

.testDetails summary::after {
  content: " +";
  color: #59dcff;
}

.testDetails[open] summary::after {
  content: " –";
}

.testDetailsInner {
  padding: 0 18px 18px;
}

.testDetails .simpleInstruction {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  font-size: 15px;
}

.testDetails .copyRow {
  grid-template-columns: 1fr 76px;
}

.testDetails .copyRow input {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testDetails .copyRow button {
  min-height: 46px;
}

.testDetails .reportButton {
  min-height: 46px;
  margin-top: 10px;
}

.testDetails .textButton {
  margin-top: 12px;
  margin-bottom: 0;
}

#loginView {
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

@media (max-width: 799px) {
  .testDetails .copyRow {
    grid-template-columns: 1fr;
  }
}


/* Make the edit-button test disclosure compact */
.testDetails {
  width: fit-content !important;
  max-width: 100% !important;
  margin: 18px auto 18px !important;
  border-radius: 999px !important;
  background: transparent !important;
  border: 1px solid rgba(89,220,255,.45) !important;
}

.testDetails summary {
  padding: 9px 18px !important;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.testDetails[open] {
  width: 100% !important;
  border-radius: 16px !important;
  background: rgba(89,220,255,.045) !important;
}

.testDetails[open] summary {
  padding: 14px 18px !important;
}

.testDetailsInner {
  padding: 0 18px 18px !important;
}


/* Refine expanded edit-button test panel */
.testDetails[open] {
  width: min(560px, 100%) !important;
  margin: 16px auto 22px !important;
  border-radius: 18px !important;
  background: rgba(5, 12, 18, .78) !important;
  border: 1px solid rgba(89,220,255,.38) !important;
  box-shadow: 0 0 24px rgba(89,220,255,.08) !important;
}

.testDetails[open] summary {
  padding: 12px 16px !important;
  font-size: 15px !important;
  line-height: 1 !important;
  border-bottom: 1px solid rgba(89,220,255,.22);
}

.testDetailsInner {
  padding: 16px 18px 18px !important;
}

.testDetails .simpleInstruction {
  max-width: 440px !important;
  margin: 0 auto 14px !important;
  font-size: 14px !important;
  line-height: 1.28 !important;
  color: rgba(255,255,255,.72) !important;
}

.testDetails .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 70px !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
}

.testDetails .copyRow input {
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 14px !important;
  border-radius: 13px !important;
  font-size: 13px !important;
}

.testDetails .copyRow button {
  height: 44px !important;
  min-height: 44px !important;
  border-radius: 13px !important;
  font-size: 15px !important;
  padding: 0 10px !important;
}

.testDetails .reportButton {
  height: 44px !important;
  min-height: 44px !important;
  margin-top: 8px !important;
  border-radius: 13px !important;
  font-size: 15px !important;
}

.testDetails .textButton {
  display: block !important;
  width: fit-content !important;
  margin: 12px auto 0 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  color: #59dcff !important;
}

@media (max-width: 799px) {
  .testDetails[open] {
    width: 100% !important;
  }

  .testDetails .copyRow {
    grid-template-columns: 1fr !important;
  }

  .testDetails .copyRow button {
    width: 100% !important;
  }
}


/* Final cleanup for edit-button test disclosure */
.testDetails {
  width: fit-content !important;
  max-width: 100% !important;
  margin: 16px auto 20px !important;
  border: 1px solid rgba(89,220,255,.42) !important;
  border-radius: 999px !important;
  background: rgba(89,220,255,.035) !important;
  overflow: hidden !important;
}

.testDetails summary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.testDetails summary::after {
  content: " +" !important;
  color: #59dcff !important;
  margin-left: 4px !important;
}

.testDetails[open] summary::after {
  content: " -" !important;
}

.testDetails[open] {
  width: min(500px, 100%) !important;
  border-radius: 18px !important;
  background: rgba(5,12,18,.82) !important;
}

.testDetails[open] summary {
  width: 100% !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  border-bottom: 1px solid rgba(89,220,255,.2) !important;
}

.testDetailsInner {
  padding: 15px 18px 18px !important;
}

.testDetails .simpleInstruction {
  max-width: 390px !important;
  margin: 0 auto 14px !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.74) !important;
}

.testDetails .copyRow {
  grid-template-columns: 1fr 68px !important;
  gap: 8px !important;
  margin: 0 0 10px !important;
}

.testDetails .copyRow input,
.testDetails .copyRow button,
.testDetails .reportButton {
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 13px !important;
  font-size: 14px !important;
}

.testDetails .copyRow input {
  padding: 0 13px !important;
}

.testDetails .reportButton {
  margin-top: 8px !important;
}

.testDetails .textButton {
  margin: 12px auto 0 !important;
  font-size: 13px !important;
}

@media (max-width: 799px) {
  .testDetails[open] {
    width: 100% !important;
  }

  .testDetails .simpleInstruction {
    max-width: 300px !important;
  }

  .testDetails .copyRow {
    grid-template-columns: 1fr !important;
  }
}


/* Make the edit-test disclosure match the app buttons */
.testDetails {
  width: 100% !important;
  margin: 18px auto 22px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  overflow: visible !important;
}

.testDetails summary {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.06) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.testDetails summary::after {
  content: "" !important;
  display: none !important;
}

.testDetails[open] {
  width: 100% !important;
  border: 1px solid rgba(89,220,255,.35) !important;
  border-radius: 18px !important;
  background: rgba(5,12,18,.82) !important;
  overflow: hidden !important;
}

.testDetails[open] summary {
  border: 0 !important;
  border-bottom: 1px solid rgba(89,220,255,.2) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.testDetails[open] summary::after {
  content: "" !important;
}


/* Match "Will it work" section to the Email Code details styling */
.testDetails {
  width: 100% !important;
  margin: 18px 0 22px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

.testDetails summary {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.78) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  box-shadow: none !important;
  cursor: pointer !important;
  list-style: revert !important;
}

.testDetails summary::-webkit-details-marker {
  display: inline-block !important;
}

.testDetails summary::after {
  content: "" !important;
  display: none !important;
}

.testDetails[open] {
  width: 100% !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

.testDetails[open] summary {
  min-height: 48px !important;
  padding: 0 16px !important;
  border: 0 !important;
  background: transparent !important;
}

.testDetailsInner {
  padding: 0 16px 16px !important;
}

.testDetails .simpleInstruction {
  max-width: none !important;
  margin: 0 0 14px !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.72) !important;
}

.testDetails .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 76px !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

.testDetails .copyRow input,
.testDetails .copyRow button,
.testDetails .reportButton {
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
}

.testDetails .reportButton {
  margin-top: 10px !important;
}

.testDetails .textButton {
  margin: 12px 0 0 !important;
  text-align: left !important;
  font-size: 13px !important;
}

@media (max-width: 799px) {
  .testDetails .copyRow {
    grid-template-columns: 1fr !important;
  }
}


/* FINAL: make Will-it-work match the Email Code disclosure exactly */
.testDetails,
.testDetails[open] {
  width: 100% !important;
  margin: 18px 0 22px !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.testDetails summary,
.testDetails[open] summary {
  display: list-item !important;
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 16px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.78) !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  cursor: pointer !important;
  list-style: disclosure-closed !important;
}

.testDetails[open] summary {
  list-style: disclosure-open !important;
  padding-bottom: 12px !important;
}

.testDetails summary::-webkit-details-marker {
  display: inline-block !important;
  color: rgba(255,255,255,.78) !important;
}

.testDetails summary::after,
.testDetails[open] summary::after {
  content: none !important;
  display: none !important;
}

.testDetailsInner {
  padding: 0 16px 16px !important;
}

.testDetails .simpleInstruction {
  max-width: none !important;
  margin: 0 0 14px !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.72) !important;
}

.testDetails .copyRow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

.testDetails .copyRow input,
.testDetails .copyRow button,
.testDetails .reportButton {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
}

.testDetails .reportButton {
  margin-top: 10px !important;
}

.testDetails .textButton {
  display: inline-block !important;
  width: auto !important;
  margin: 12px 0 0 !important;
  text-align: left !important;
  font-size: 13px !important;
}


/* FINAL: make Will-it-work match the Email Code disclosure exactly */
.testDetails,
.testDetails[open] {
  width: 100% !important;
  margin: 18px 0 22px !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.testDetails summary,
.testDetails[open] summary {
  display: list-item !important;
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 16px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.78) !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  cursor: pointer !important;
  list-style: disclosure-closed !important;
}

.testDetails[open] summary {
  list-style: disclosure-open !important;
  padding-bottom: 12px !important;
}

.testDetails summary::-webkit-details-marker {
  display: inline-block !important;
  color: rgba(255,255,255,.78) !important;
}

.testDetails summary::after,
.testDetails[open] summary::after {
  content: none !important;
  display: none !important;
}

.testDetailsInner {
  padding: 0 16px 16px !important;
}

.testDetails .simpleInstruction {
  max-width: none !important;
  margin: 0 0 14px !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.72) !important;
}

.testDetails .copyRow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

.testDetails .copyRow input,
.testDetails .copyRow button,
.testDetails .reportButton {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
}

.testDetails .reportButton {
  margin-top: 10px !important;
}

.testDetails .textButton {
  display: inline-block !important;
  width: auto !important;
  margin: 12px 0 0 !important;
  text-align: left !important;
  font-size: 13px !important;
}


/* FINAL OVERRIDE: app test disclosure should match Email Code exactly */
#appTestView.optionalCode {
  width: 100% !important;
  margin: 18px 0 22px !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

#appTestView.optionalCode summary {
  display: list-item !important;
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 16px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.78) !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  cursor: pointer !important;
  list-style: disclosure-closed !important;
}

#appTestView.optionalCode[open] summary {
  list-style: disclosure-open !important;
  padding-bottom: 12px !important;
}

#appTestView.optionalCode summary::-webkit-details-marker {
  display: inline-block !important;
}

#appTestView.optionalCode summary::after {
  content: none !important;
  display: none !important;
}

#appTestView .testDetailsInner {
  padding: 0 16px 16px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 14px !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.72) !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input,
#appTestView .copyRow button,
#appTestView .reportButton {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
}

#appTestView .textButton {
  display: inline-block !important;
  width: auto !important;
  margin: 12px 0 0 !important;
  text-align: left !important;
  font-size: 13px !important;
}


/* Center the whole login flow */
.card,
#loginView,
#appTestView,
#composeView {
  text-align: center !important;
}

#loginView label,
#composeView label {
  text-align: center !important;
}

#loginView input,
#loginView textarea,
#loginView select,
#composeView input,
#composeView textarea,
#composeView select {
  text-align: center !important;
}

/* Match app-test disclosure to Email Code, including the little arrow */
#appTestView.optionalCode {
  width: 100% !important;
  margin: 18px 0 22px !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
  box-shadow: none !important;
  text-align: left !important;
}

#appTestView.optionalCode summary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 16px !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  list-style: none !important;
  text-align: center !important;
}

#appTestView.optionalCode summary::-webkit-details-marker {
  display: none !important;
}

#appTestView.optionalCode summary::before {
  content: "▶" !important;
  display: inline-block !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 12px !important;
  transform: translateY(-1px) !important;
}

#appTestView.optionalCode[open] summary::before {
  content: "▼" !important;
}

#appTestView.optionalCode summary::after {
  content: none !important;
  display: none !important;
}

#appTestView .testDetailsInner {
  padding: 0 16px 16px !important;
  text-align: center !important;
}

#appTestView .simpleInstruction {
  max-width: 420px !important;
  margin: 0 auto 14px !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.72) !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input,
#appTestView .copyRow button,
#appTestView .reportButton {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  text-align: center !important;
}

#appTestView .textButton {
  display: inline-block !important;
  width: auto !important;
  margin: 12px auto 0 !important;
  text-align: center !important;
  font-size: 13px !important;
}

/* Keep the Gaf link centered too */
.notes {
  text-align: center !important;
}


/* =========================================================
   SecretSkies SkyShred visual clone pass
   ========================================================= */

:root {
  --ss-bg: #000;
  --ss-card: #07090d;
  --ss-card-2: #101217;
  --ss-line: rgba(255,255,255,.18);
  --ss-muted: rgba(255,255,255,.66);
  --ss-cyan: #59dcff;
  --ss-blue: #2b8cff;
  --ss-pink: #ff33cc;
}

html,
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(89,220,255,.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255,51,204,.14), transparent 32%),
    #000 !important;
  color: #fff !important;
  font-family: "Titillium Web", system-ui, sans-serif !important;
}

body {
  margin: 0 !important;
}

.shell {
  width: 800px !important;
  max-width: 800px !important;
  min-width: 800px !important;
  margin: 0 auto !important;
  padding: 42px 0 52px !important;
  text-align: center !important;
}

/* Top brand lockup like SkyShred */
.hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  margin: 0 0 52px !important;
}

.mark {
  width: 78px !important;
  height: 78px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
}

.mark img {
  width: 78px !important;
  height: 78px !important;
  object-fit: contain !important;
  display: block !important;
}

.hero h1 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 70px !important;
  line-height: .9 !important;
  letter-spacing: -.075em !important;
  font-weight: 700 !important;
}

.hero h1 span {
  color: var(--ss-blue) !important;
}

/* Make the intro feel like SkyShred hero, not an inner app card */
.card {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

.card h2 {
  margin: 0 auto 20px !important;
  color: #fff !important;
  font-size: 58px !important;
  line-height: 1.03 !important;
  letter-spacing: -.065em !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.blueWord {
  color: var(--ss-blue) !important;
}

.lede {
  margin: 0 auto 42px !important;
  color: var(--ss-muted) !important;
  font-size: 29px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

/* SkyShred-style divider + info row, adapted for SecretSkies */
.secretBand {
  width: 100% !important;
  margin: 0 auto 44px !important;
  padding: 34px 0 38px !important;
  border-top: 1px solid var(--ss-line) !important;
  border-bottom: 1px solid var(--ss-line) !important;
  display: grid !important;
  grid-template-columns: 170px 1fr !important;
  align-items: center !important;
  text-align: left !important;
}

.secretBandIcon {
  display: grid !important;
  place-items: center !important;
}

.secretBandIcon img {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain !important;
}

.secretBandText {
  display: grid !important;
  gap: 2px !important;
  color: #fff !important;
  font-size: 31px !important;
  line-height: 1.16 !important;
  font-weight: 500 !important;
}

.secretBandText strong {
  color: #fff !important;
  font-size: 34px !important;
  font-weight: 600 !important;
}

.secretBandText span {
  color: rgba(255,255,255,.74) !important;
}

/* Login card now matches SkyShred card */
#loginView {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 36px !important;
  border: 1px solid var(--ss-line) !important;
  border-radius: 28px !important;
  background: rgba(7,9,13,.88) !important;
  box-shadow: none !important;
  text-align: left !important;
}

#loginView label {
  display: block !important;
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: 26px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: left !important;
}

#loginView input {
  width: 100% !important;
  height: 102px !important;
  margin: 18px 0 0 !important;
  padding: 0 30px !important;
  border: 1px solid var(--ss-line) !important;
  border-radius: 26px !important;
  background: #000 !important;
  color: #fff !important;
  font-size: 29px !important;
  font-weight: 600 !important;
  text-align: left !important;
  box-shadow: none !important;
}

#loginView input::placeholder {
  color: rgba(255,255,255,.52) !important;
}

.help {
  margin: -2px 0 30px !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 25px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.help a {
  color: var(--ss-cyan) !important;
  font-weight: 700 !important;
}

/* Keep the edit test, but make it part of the flow */
#appTestView.optionalCode {
  width: 100% !important;
  margin: 0 auto 28px !important;
  border: 1px solid var(--ss-line) !important;
  border-radius: 26px !important;
  background: rgba(7,9,13,.76) !important;
  text-align: left !important;
  overflow: hidden !important;
}

#appTestView.optionalCode summary {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  min-height: 82px !important;
  padding: 0 28px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 24px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  list-style: none !important;
  text-align: left !important;
}

#appTestView.optionalCode summary::-webkit-details-marker {
  display: none !important;
}

#appTestView.optionalCode summary::before {
  content: "▶" !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 18px !important;
}

#appTestView.optionalCode[open] summary::before {
  content: "▼" !important;
}

#appTestView .testDetailsInner {
  padding: 0 28px 28px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 22px !important;
  max-width: none !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 22px !important;
  line-height: 1.32 !important;
  text-align: left !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 122px !important;
  gap: 12px !important;
  margin: 0 0 18px !important;
}

#appTestView .copyRow input {
  height: 74px !important;
  min-height: 74px !important;
  border-radius: 22px !important;
  font-size: 19px !important;
  padding: 0 22px !important;
  text-align: left !important;
}

#appTestView .copyRow button,
#appTestView .reportButton {
  height: 74px !important;
  min-height: 74px !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: linear-gradient(90deg, var(--ss-cyan), var(--ss-blue)) !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

#appTestView .reportButton {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .textButton {
  display: block !important;
  width: fit-content !important;
  margin: 18px auto 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ss-cyan) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* Email code disclosure follows same SkyShred scale */
.optionalCode {
  border-radius: 22px !important;
}

.optionalCode summary {
  font-size: 23px !important;
}

.optionalCode label {
  font-size: 22px !important;
}

/* Login button */
#loginButton,
button#loginButton {
  width: 100% !important;
  height: 100px !important;
  min-height: 100px !important;
  margin-top: 34px !important;
  border: 0 !important;
  border-radius: 26px !important;
  background: linear-gradient(90deg, var(--ss-cyan), var(--ss-blue)) !important;
  color: #fff !important;
  font-size: 30px !important;
  font-weight: 700 !important;
}

/* Footer */
.notes {
  margin: 34px auto 0 !important;
  color: rgba(255,255,255,.66) !important;
  font-size: 21px !important;
  text-align: center !important;
}

.notes a {
  color: var(--ss-cyan) !important;
  font-weight: 700 !important;
}

/* Logged-in composer still usable, but inherits the new card system */
#composeView {
  width: 100% !important;
  margin: 0 auto !important;
  padding: 36px !important;
  border: 1px solid var(--ss-line) !important;
  border-radius: 28px !important;
  background: rgba(7,9,13,.88) !important;
  text-align: left !important;
}

/* Locked layouts only. Desktop 800. Mobile 380. */
@media (max-width: 799px) {
  .shell {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding: 40px 0 44px !important;
  }

  .hero {
    gap: 16px !important;
    margin-bottom: 42px !important;
  }

  .mark,
  .mark img {
    width: 58px !important;
    height: 58px !important;
  }

  .hero h1 {
    font-size: 46px !important;
  }

  .card h2 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    white-space: normal !important;
    margin-bottom: 16px !important;
  }

  .lede {
    font-size: 19px !important;
    margin-bottom: 30px !important;
    white-space: nowrap !important;
  }

  .secretBand {
    grid-template-columns: 88px 1fr !important;
    padding: 22px 0 26px !important;
    margin-bottom: 28px !important;
  }

  .secretBandIcon img {
    width: 56px !important;
    height: 56px !important;
  }

  .secretBandText {
    font-size: 18px !important;
  }

  .secretBandText strong {
    font-size: 20px !important;
  }

  #loginView,
  #composeView {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  #loginView label {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  #loginView input {
    height: 60px !important;
    border-radius: 17px !important;
    font-size: 17px !important;
    padding: 0 17px !important;
    margin-top: 10px !important;
  }

  .help {
    font-size: 15px !important;
    margin-bottom: 22px !important;
  }

  #appTestView.optionalCode {
    border-radius: 18px !important;
    margin-bottom: 22px !important;
  }

  #appTestView.optionalCode summary {
    min-height: 56px !important;
    padding: 0 18px !important;
    gap: 10px !important;
    font-size: 16px !important;
  }

  #appTestView.optionalCode summary::before {
    font-size: 12px !important;
  }

  #appTestView .testDetailsInner {
    padding: 0 18px 18px !important;
  }

  #appTestView .simpleInstruction {
    font-size: 15px !important;
  }

  #appTestView .copyRow {
    grid-template-columns: 1fr !important;
  }

  #appTestView .copyRow input,
  #appTestView .copyRow button,
  #appTestView .reportButton {
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
  }

  #loginButton,
  button#loginButton {
    height: 68px !important;
    min-height: 68px !important;
    border-radius: 18px !important;
    font-size: 19px !important;
    margin-top: 22px !important;
  }

  .notes {
    font-size: 14px !important;
  }
}


/* =========================================================
   FINAL SecretSkies = SkyShred layout match
   Desktop: compact two-column layout.
   Mobile: locked 380px stacked layout.
   ========================================================= */

html,
body {
  background:
    radial-gradient(circle at 34% 0%, rgba(89,220,255,.12), transparent 28%),
    radial-gradient(circle at 76% 14%, rgba(255,51,204,.13), transparent 32%),
    #000 !important;
  font-family: "Titillium Web", system-ui, sans-serif !important;
  color: #fff !important;
  overflow-x: hidden !important;
}

.shell {
  width: 1180px !important;
  max-width: 1180px !important;
  min-width: 1180px !important;
  margin: 0 auto !important;
  padding: 62px 0 48px !important;
  text-align: left !important;
}

/* Logo row */
.hero {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  width: 520px !important;
  margin: 0 0 34px 58px !important;
}

.mark,
.mark img {
  width: 74px !important;
  height: 74px !important;
}

.mark {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero h1 {
  margin: 0 !important;
  font-size: 56px !important;
  line-height: .92 !important;
  letter-spacing: -.07em !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.hero h1 span {
  color: #2b8cff !important;
}

/* Main two-column page */
.card {
  display: grid !important;
  grid-template-columns: 520px 430px !important;
  column-gap: 64px !important;
  row-gap: 0 !important;
  width: 1040px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

/* Left side hero copy */
.card h2 {
  grid-column: 1 !important;
  margin: 0 0 16px !important;
  font-size: 42px !important;
  line-height: 1.04 !important;
  letter-spacing: -.055em !important;
  font-weight: 700 !important;
  color: #fff !important;
  white-space: normal !important;
  text-align: left !important;
}

.card h2 .desktopLine {
  display: inline !important;
}

.blueWord {
  color: #2b8cff !important;
}

.lede {
  grid-column: 1 !important;
  margin: 0 0 28px !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.68) !important;
  white-space: normal !important;
  text-align: left !important;
}

/* Hide the large band from earlier poster pass */
.secretBand {
  display: none !important;
}

/* Test disclosure becomes the small left-side info module */
#appTestView.optionalCode {
  grid-column: 1 !important;
  width: 100% !important;
  margin: 14px 0 0 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 18px !important;
  background: rgba(7,9,13,.82) !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

#appTestView.optionalCode summary {
  min-height: 58px !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  color: rgba(255,255,255,.8) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  text-align: left !important;
  list-style: none !important;
}

#appTestView.optionalCode summary::-webkit-details-marker {
  display: none !important;
}

#appTestView.optionalCode summary::before {
  content: "▶" !important;
  color: rgba(255,255,255,.75) !important;
  font-size: 12px !important;
  transform: translateY(-1px) !important;
}

#appTestView.optionalCode[open] summary::before {
  content: "▼" !important;
}

#appTestView.optionalCode summary::after {
  display: none !important;
  content: none !important;
}

#appTestView .testDetailsInner {
  padding: 0 18px 18px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 14px !important;
  max-width: none !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.68) !important;
  text-align: left !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 74px !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  text-align: left !important;
}

#appTestView .copyRow button,
#appTestView .reportButton {
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

#appTestView .reportButton {
  margin: 10px 0 0 !important;
}

#appTestView .textButton {
  display: inline-block !important;
  margin: 12px 0 0 !important;
  font-size: 13px !important;
  text-align: left !important;
}

/* Right-side login card */
#loginView {
  grid-column: 2 !important;
  grid-row: 1 / span 5 !important;
  align-self: start !important;
  width: 430px !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  background: rgba(7,9,13,.9) !important;
  box-shadow: none !important;
  text-align: left !important;
}

#loginView label {
  display: block !important;
  margin: 0 0 22px !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-align: left !important;
}

#loginView input {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 10px 0 0 !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 14px !important;
  background: #000 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#loginView input::placeholder {
  color: rgba(255,255,255,.48) !important;
}

.help {
  margin: -4px 0 20px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.62) !important;
  text-align: left !important;
}

.help a {
  color: #59dcff !important;
  font-weight: 700 !important;
}

/* Email code disclosure same compact style */
#loginView .optionalCode {
  margin: 0 0 18px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

#loginView .optionalCode summary {
  min-height: 50px !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,.76) !important;
  display: flex !important;
  align-items: center !important;
}

#loginView .optionalCode label {
  padding: 0 16px 16px !important;
  margin: 0 !important;
  font-size: 15px !important;
}

#loginButton,
button#loginButton {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 18px 0 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, #59dcff, #2b8cff) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* Footer */
.notes {
  width: 1040px !important;
  margin: 40px auto 0 !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  text-align: center !important;
}

.notes a {
  color: #59dcff !important;
  font-weight: 700 !important;
}

/* Composer after login */
#composeView {
  grid-column: 1 / span 2 !important;
  width: 100% !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  background: rgba(7,9,13,.9) !important;
}

/* Locked mobile. No fluid responsive drift. */
@media (max-width: 799px) {
  .shell {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding: 38px 0 44px !important;
  }

  .hero {
    width: 100% !important;
    margin: 0 0 42px !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .mark,
  .mark img {
    width: 58px !important;
    height: 58px !important;
  }

  .hero h1 {
    font-size: 46px !important;
  }

  .card {
    display: block !important;
    width: 380px !important;
    margin: 0 auto !important;
  }

  .card h2 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 16px !important;
  }

  .lede {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  #appTestView.optionalCode {
    width: 100% !important;
    margin: 0 0 22px !important;
  }

  #appTestView .copyRow {
    grid-template-columns: 1fr !important;
  }

  #loginView {
    width: 100% !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  #loginView label {
    font-size: 17px !important;
    margin-bottom: 20px !important;
  }

  #loginView input {
    height: 60px !important;
    min-height: 60px !important;
    border-radius: 17px !important;
    font-size: 17px !important;
  }

  .help {
    font-size: 15px !important;
  }

  #loginButton,
  button#loginButton {
    height: 64px !important;
    min-height: 64px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
  }

  .notes {
    width: 380px !important;
    font-size: 14px !important;
  }
}


/* =========================================================
   SECRET SKIES FINAL: use the actual SkyShred page structure
   ========================================================= */

:root {
  --bg: #000;
  --panel: #080b10;
  --panel2: #11141a;
  --line: rgba(255,255,255,.18);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --cyan: #59dcff;
  --blue: #2b8cff;
  --pink: #ff33cc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at 34% 0%, rgba(89,220,255,.12), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(255,51,204,.13), transparent 35%),
    #000 !important;
  color: var(--text) !important;
  font-family: "Titillium Web", system-ui, sans-serif !important;
}

.app {
  width: 1000px !important;
  min-width: 1000px !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 60px 0 40px !important;
}

.landing {
  display: grid !important;
  grid-template-columns: 520px 420px !important;
  gap: 40px !important;
  align-items: start !important;
}

.intro {
  width: 520px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 0 40px !important;
}

.logo {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  display: block !important;
}

.brandWord {
  color: #fff !important;
  font-size: 52px !important;
  line-height: .9 !important;
  letter-spacing: -.07em !important;
  font-weight: 700 !important;
}

.brandWord span {
  color: var(--blue) !important;
}

.intro h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: 40px !important;
  line-height: 1.04 !important;
  letter-spacing: -.055em !important;
  font-weight: 700 !important;
}

.intro h1 span {
  color: var(--blue) !important;
}

.lede {
  margin: 0 0 32px !important;
  color: var(--muted) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
}

.priceLine {
  display: grid !important;
  grid-template-columns: 74px 1fr !important;
  gap: 20px !important;
  align-items: center !important;
  margin: 0 0 28px !important;
  padding: 26px 0 !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

.freeBadge {
  width: 58px !important;
  height: 58px !important;
  border: 4px solid var(--blue) !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  color: var(--cyan) !important;
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.secretBadge {
  font-size: 30px !important;
}

.card,
.loginCard {
  width: 420px !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  background: rgba(8,11,16,.92) !important;
  box-shadow: none !important;
}

#loginView {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

#loginView label {
  display: block !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: left !important;
}

#loginView input,
#composeView input,
#composeView textarea,
#composeView select {
  width: 100% !important;
  min-height: 52px !important;
  margin-top: 10px !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 14px !important;
  background: #000 !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#composeView textarea {
  min-height: 120px !important;
  padding-top: 14px !important;
}

#loginView input::placeholder {
  color: rgba(255,255,255,.48) !important;
}

.tinyHelp,
.unlockHint,
.help {
  margin: -4px 0 22px !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

.tinyHelp a,
.help a,
footer a {
  color: var(--cyan) !important;
  font-weight: 700 !important;
}

.optionalCode {
  margin: 0 0 18px !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

.optionalCode summary {
  min-height: 50px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: left !important;
  cursor: pointer !important;
}

.optionalCode summary::-webkit-details-marker {
  display: inline-block !important;
}

.optionalCode label {
  padding: 0 16px 16px !important;
  margin: 0 !important;
  font-size: 15px !important;
}

button,
#loginButton {
  font-family: inherit !important;
}

#loginButton {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 18px 0 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, var(--cyan), var(--blue)) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

/* SecretSkies test card mirrors SkyShred rateCard position and scale */
.rateCard,
.secretTestCard {
  width: 360px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#appTestView.optionalCode {
  margin: 0 !important;
  width: 100% !important;
}

#appTestView .testDetailsInner {
  padding: 0 16px 16px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 14px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 74px !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input {
  height: 48px !important;
  min-height: 48px !important;
  font-size: 13px !important;
}

#appTestView .copyRow button,
#appTestView .reportButton {
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, var(--cyan), var(--blue)) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
}

#appTestView .reportButton {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .textButton {
  width: auto !important;
  min-height: 0 !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--cyan) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

footer {
  margin: 44px auto 0 !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

footer p {
  margin: 0 0 6px !important;
}

/* Logged-in composer */
#composeView {
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  text-align: left !important;
}

.modeTabs,
.connected,
.modePanel,
.result {
  margin-bottom: 18px !important;
}

.modeButton,
#postButton,
#editButton {
  min-height: 48px !important;
  border-radius: 14px !important;
}

/* Locked mobile like SkyShred */
@media (max-width: 799px) {
  .app {
    width: 380px !important;
    min-width: 380px !important;
    max-width: 380px !important;
    padding: 42px 0 36px !important;
  }

  .landing {
    display: block !important;
    width: 380px !important;
  }

  .intro {
    width: 380px !important;
    text-align: center !important;
  }

  .brand {
    justify-content: center !important;
    gap: 14px !important;
    margin-bottom: 36px !important;
  }

  .logo {
    width: 58px !important;
    height: 58px !important;
  }

  .brandWord {
    font-size: 46px !important;
  }

  .intro h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }

  .lede {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .priceLine {
    grid-template-columns: 74px 1fr !important;
    gap: 16px !important;
    padding: 24px 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
    font-size: 17px !important;
  }

  .freeBadge {
    width: 58px !important;
    height: 58px !important;
  }

  .rateCard,
  .secretTestCard {
    width: 100% !important;
    margin-bottom: 28px !important;
  }

  .card,
  .loginCard {
    width: 380px !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  #loginView label {
    font-size: 17px !important;
    margin-bottom: 20px !important;
  }

  #loginView input,
  #composeView input,
  #composeView textarea,
  #composeView select {
    min-height: 60px !important;
    border-radius: 17px !important;
    font-size: 17px !important;
  }

  #appTestView .copyRow {
    grid-template-columns: 1fr !important;
  }

  #loginButton {
    height: 64px !important;
    min-height: 64px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
  }

  footer {
    font-size: 14px !important;
  }
}


/* =========================================================
   SECRET SKIES FINAL VISUAL MATCH
   This overrides the earlier too-heavy poster styling.
   Goal: match the SkyShred homepage scale and weight.
   ========================================================= */

body {
  font-family: "Titillium Web", system-ui, sans-serif !important;
  background:
    radial-gradient(circle at 35% 0%, rgba(89,220,255,.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255,51,204,.13), transparent 34%),
    #000 !important;
  color: #fff !important;
}

.app {
  width: 1000px !important;
  max-width: 1000px !important;
  min-width: 1000px !important;
  margin: 0 auto !important;
  padding: 62px 0 42px !important;
}

.landing {
  display: grid !important;
  grid-template-columns: 520px 420px !important;
  gap: 40px !important;
  align-items: start !important;
  width: 1000px !important;
  margin: 0 auto !important;
}

.intro {
  width: 520px !important;
  text-align: left !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  margin: 0 0 36px !important;
}

.logo {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  display: block !important;
}

.brandWord {
  color: #fff !important;
  font-size: 52px !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
  font-weight: 600 !important;
}

.brandWord span {
  color: #2b8cff !important;
  font-weight: 600 !important;
}

.intro h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: 38px !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.intro h1 span {
  color: #2b8cff !important;
  font-weight: 600 !important;
}

.lede {
  margin: 0 0 30px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.priceLine {
  display: grid !important;
  grid-template-columns: 74px 1fr !important;
  gap: 20px !important;
  align-items: center !important;
  margin: 0 0 28px !important;
  padding: 26px 0 !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.freeBadge,
.secretBadge {
  width: 58px !important;
  height: 58px !important;
  border: 4px solid #2b8cff !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  color: #59dcff !important;
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.card.loginCard,
.loginCard {
  width: 420px !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  background: rgba(8,11,16,.92) !important;
  box-shadow: none !important;
}

#loginView {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

#loginView label {
  display: block !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#loginView input {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 10px 0 0 !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 14px !important;
  background: #000 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#loginView input::placeholder {
  color: rgba(255,255,255,.48) !important;
}

.tinyHelp,
.help,
.unlockHint {
  margin: -4px 0 22px !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.tinyHelp a,
.help a,
footer a {
  color: #59dcff !important;
  font-weight: 600 !important;
}

.optionalCode {
  margin: 0 0 18px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

.optionalCode summary {
  min-height: 50px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: left !important;
  cursor: pointer !important;
}

#loginButton {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 18px 0 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, #59dcff, #2b8cff) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* SecretSkies test card in SkyShred rateCard scale */
.secretTestCard,
.rateCard {
  width: 360px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#appTestView.optionalCode {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .testDetailsInner {
  padding: 0 16px 16px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 14px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 74px !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  text-align: left !important;
}

#appTestView .copyRow button,
#appTestView .reportButton {
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, #59dcff, #2b8cff) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

#appTestView .reportButton {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .textButton {
  width: auto !important;
  min-height: 0 !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #59dcff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

footer {
  margin: 44px auto 0 !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

footer p {
  margin: 0 0 6px !important;
}

/* Mobile lock */
@media (max-width: 799px) {
  .app {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding: 42px 0 36px !important;
  }

  .landing {
    display: block !important;
    width: 380px !important;
  }

  .intro {
    width: 380px !important;
    text-align: center !important;
  }

  .brand {
    justify-content: center !important;
    gap: 14px !important;
    margin-bottom: 36px !important;
  }

  .logo {
    width: 58px !important;
    height: 58px !important;
  }

  .brandWord {
    font-size: 46px !important;
  }

  .intro h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }

  .lede {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .priceLine {
    grid-template-columns: 74px 1fr !important;
    gap: 16px !important;
    padding: 24px 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
    font-size: 17px !important;
  }

  .secretTestCard,
  .rateCard {
    width: 100% !important;
    margin-bottom: 28px !important;
  }

  .card.loginCard,
  .loginCard {
    width: 380px !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  #loginView label {
    font-size: 17px !important;
    margin-bottom: 20px !important;
  }

  #loginView input {
    height: 60px !important;
    min-height: 60px !important;
    border-radius: 17px !important;
    font-size: 17px !important;
  }

  #appTestView .copyRow {
    grid-template-columns: 1fr !important;
  }

  #loginButton {
    height: 64px !important;
    min-height: 64px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
  }
}


/* =========================================================
   SECRET SKIES FINAL VISUAL MATCH
   This overrides the earlier too-heavy poster styling.
   Goal: match the SkyShred homepage scale and weight.
   ========================================================= */

body {
  font-family: "Titillium Web", system-ui, sans-serif !important;
  background:
    radial-gradient(circle at 35% 0%, rgba(89,220,255,.12), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255,51,204,.13), transparent 34%),
    #000 !important;
  color: #fff !important;
}

.app {
  width: 1000px !important;
  max-width: 1000px !important;
  min-width: 1000px !important;
  margin: 0 auto !important;
  padding: 62px 0 42px !important;
}

.landing {
  display: grid !important;
  grid-template-columns: 520px 420px !important;
  gap: 40px !important;
  align-items: start !important;
  width: 1000px !important;
  margin: 0 auto !important;
}

.intro {
  width: 520px !important;
  text-align: left !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  margin: 0 0 36px !important;
}

.logo {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  display: block !important;
}

.brandWord {
  color: #fff !important;
  font-size: 52px !important;
  line-height: .95 !important;
  letter-spacing: -.055em !important;
  font-weight: 600 !important;
}

.brandWord span {
  color: #2b8cff !important;
  font-weight: 600 !important;
}

.intro h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: 38px !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.intro h1 span {
  color: #2b8cff !important;
  font-weight: 600 !important;
}

.lede {
  margin: 0 0 30px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  text-align: left !important;
}

.priceLine {
  display: grid !important;
  grid-template-columns: 74px 1fr !important;
  gap: 20px !important;
  align-items: center !important;
  margin: 0 0 28px !important;
  padding: 26px 0 !important;
  border-top: 1px solid rgba(255,255,255,.18) !important;
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

.freeBadge,
.secretBadge {
  width: 58px !important;
  height: 58px !important;
  border: 4px solid #2b8cff !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  color: #59dcff !important;
  font-size: 30px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.card.loginCard,
.loginCard {
  width: 420px !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 22px !important;
  background: rgba(8,11,16,.92) !important;
  box-shadow: none !important;
}

#loginView {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

#loginView label {
  display: block !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#loginView input {
  width: 100% !important;
  height: 52px !important;
  min-height: 52px !important;
  margin: 10px 0 0 !important;
  padding: 0 16px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 14px !important;
  background: #000 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#loginView input::placeholder {
  color: rgba(255,255,255,.48) !important;
}

.tinyHelp,
.help,
.unlockHint {
  margin: -4px 0 22px !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.tinyHelp a,
.help a,
footer a {
  color: #59dcff !important;
  font-weight: 600 !important;
}

.optionalCode {
  margin: 0 0 18px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 14px !important;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden !important;
}

.optionalCode summary {
  min-height: 50px !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: left !important;
  cursor: pointer !important;
}

#loginButton {
  width: 100% !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 18px 0 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, #59dcff, #2b8cff) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

/* SecretSkies test card in SkyShred rateCard scale */
.secretTestCard,
.rateCard {
  width: 360px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#appTestView.optionalCode {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .testDetailsInner {
  padding: 0 16px 16px !important;
}

#appTestView .simpleInstruction {
  margin: 0 0 14px !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

#appTestView .copyRow {
  display: grid !important;
  grid-template-columns: 1fr 74px !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
}

#appTestView .copyRow input {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  text-align: left !important;
}

#appTestView .copyRow button,
#appTestView .reportButton {
  height: 48px !important;
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(90deg, #59dcff, #2b8cff) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

#appTestView .reportButton {
  width: 100% !important;
  margin: 0 !important;
}

#appTestView .textButton {
  width: auto !important;
  min-height: 0 !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #59dcff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

footer {
  margin: 44px auto 0 !important;
  color: rgba(255,255,255,.64) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

footer p {
  margin: 0 0 6px !important;
}

/* Mobile lock */
@media (max-width: 799px) {
  .app {
    width: 380px !important;
    max-width: 380px !important;
    min-width: 380px !important;
    padding: 42px 0 36px !important;
  }

  .landing {
    display: block !important;
    width: 380px !important;
  }

  .intro {
    width: 380px !important;
    text-align: center !important;
  }

  .brand {
    justify-content: center !important;
    gap: 14px !important;
    margin-bottom: 36px !important;
  }

  .logo {
    width: 58px !important;
    height: 58px !important;
  }

  .brandWord {
    font-size: 46px !important;
  }

  .intro h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }

  .lede {
    font-size: 18px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
  }

  .priceLine {
    grid-template-columns: 74px 1fr !important;
    gap: 16px !important;
    padding: 24px 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
    font-size: 17px !important;
  }

  .secretTestCard,
  .rateCard {
    width: 100% !important;
    margin-bottom: 28px !important;
  }

  .card.loginCard,
  .loginCard {
    width: 380px !important;
    padding: 20px !important;
    border-radius: 22px !important;
  }

  #loginView label {
    font-size: 17px !important;
    margin-bottom: 20px !important;
  }

  #loginView input {
    height: 60px !important;
    min-height: 60px !important;
    border-radius: 17px !important;
    font-size: 17px !important;
  }

  #appTestView .copyRow {
    grid-template-columns: 1fr !important;
  }

  #loginButton {
    height: 64px !important;
    min-height: 64px !important;
    border-radius: 18px !important;
    font-size: 18px !important;
  }
}
