:root {
  --ink: #17233f;
  --muted: #64708a;
  --line: #e4e7f2;
  --panel: #ffffff;
  --soft: #faf8ff;
  --soft-2: #f5f1ff;
  --purple: #7247d8;
  --purple-2: #8d65e8;
  --green: #5f9f4c;
  --shadow: 0 10px 30px rgba(40, 34, 80, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f8fc;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

button {
  font: inherit;
}

.shell {
  width: min(980px, calc(100% - 28px));
  margin: 24px auto 44px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.exit {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  padding: 9px 13px;
  cursor: pointer;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.experience-head {
  padding: 26px 28px 18px;
}

.eyebrow {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.93rem;
}

.pill {
  background: var(--soft-2);
  border-radius: 999px;
  padding: 7px 11px;
}

.intro {
  margin: 20px 0 0;
  max-width: 680px;
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ececf4;
}

.arrival-actions {
  text-align: center;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #faf7ff);
}

.arrival-copy {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--muted);
}

.primary {
  appearance: none;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-radius: 15px;
  padding: 15px 28px;
  min-width: 220px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(114, 71, 216, 0.22);
}

.practice-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

/* EXPERIENCE STATE */

.stage {
  display: none;
}

.stage.is-active {
  display: block;
}

.arrival.is-hidden {
  display: none;
}

.stage-head {
  padding: 18px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stage-title {
  font-weight: 800;
  font-size: 1.08rem;
}

.progress {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d9dcec;
  background: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}

.dot.completed {
  color: var(--purple);
}

.dot.current {
  border-color: var(--purple);
  background: var(--purple);
}

/* HOST + CONVERSATION */

.host-panel {
  margin: 16px 18px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.host-current {
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--purple);
}

.speaker {
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 6px;
}

.host-text {
  line-height: 1.55;
  font-size: 1.02rem;
}

.replay {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 11px;
  padding: 8px 11px;
  cursor: pointer;
  color: var(--purple);
  font-weight: 700;
}

.conversation-wrap {
  padding: 14px 18px 18px;
}

.conversation-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}

.conversation {
  max-height: 190px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fcfcff;
}

.turn {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.turn:last-child {
  border-bottom: 0;
}

.turn-name {
  font-weight: 800;
  margin-bottom: 4px;
}

.turn.host .turn-name {
  color: var(--purple);
}

.turn.user .turn-name {
  color: var(--green);
}

.turn p {
  margin: 0;
  line-height: 1.5;
}

/* USER TURN */

.your-turn {
  text-align: center;
  padding: 26px 18px 18px;
}

.your-turn h2 {
  margin: 0 0 7px;
  font-size: 1.15rem;
  color: var(--purple);
}

.your-turn p {
  margin: 0 0 18px;
  color: var(--muted);
}

.mic {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  color: #ffffff;
  background: linear-gradient(145deg, var(--purple), var(--purple-2));
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(114, 71, 216, 0.25);
}

.mic-status {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* DREW HELP */

.help {
  margin: 4px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

.help-toggle {
  width: 100%;
  border: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
}

.help-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.drew {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1ecff;
  color: var(--purple);
  font-weight: 900;
  flex: 0 0 auto;
}

.help-name,
.help-sub {
  display: block;
}

.help-name {
  font-weight: 800;
}

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

.help-body {
  display: none;
  border-top: 1px solid var(--line);
}

.help.open .help-body {
  display: block;
}

.help-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.help-item:last-child {
  border-bottom: 0;
}

.help-item strong {
  display: block;
  color: var(--purple);
  margin-bottom: 6px;
}

.help-item p {
  margin: 0;
  line-height: 1.5;
}

.footer-note {
  margin-top: 14px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

/* MOBILE */

@media (max-width: 700px) {
  .shell {
    width: min(100% - 18px, 980px);
    margin-top: 10px;
  }

  .topbar {
    padding: 11px 13px;
  }

  .experience-head {
    padding: 20px 18px 15px;
  }

  .intro {
    font-size: 1rem;
  }

  .stage-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .host-current {
    grid-template-columns: auto 1fr;
  }

  .replay {
    grid-column: 2;
    justify-self: start;
  }

  .hero {
    aspect-ratio: 4 / 3;
  }
}
/* =========================================================
   EXPERIENCE VCR — floating transient media control
   ========================================================= */

.experience-vcr {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;

  width: min(390px, calc(100vw - 28px));

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;

  padding: 13px 14px;

  border: 1px solid rgba(114, 71, 216, 0.18);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 18px 50px rgba(23, 35, 63, 0.16);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.experience-vcr[hidden] {
  display: none;
}

.experience-vcr__icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--soft-2);
  color: var(--purple);

  font-size: 1.15rem;
}

.experience-vcr__content {
  min-width: 0;
}

.experience-vcr__title {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.experience-vcr__detail {
  margin-top: 2px;

  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.experience-vcr__media {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
}

.experience-vcr__progress {
  width: 100%;
  height: 6px;

  accent-color: var(--purple);
}

.experience-vcr__time {
  flex: 0 0 auto;

  color: var(--muted);
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}

.experience-vcr__stop {
  border: 1px solid var(--line);
  border-radius: 11px;

  padding: 8px 10px;

  background: #ffffff;
  color: var(--purple);

  font-size: 0.8rem;
  font-weight: 800;

  cursor: pointer;
}

.experience-vcr__stop:hover {
  background: var(--soft);
}

.mic:disabled {
  cursor: default;
  opacity: 0.55;
  box-shadow: none;
}

@media (max-width: 700px) {
  .experience-vcr {
    right: 10px;
    bottom: 10px;
    left: 10px;

    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-vcr {
    scroll-behavior: auto;
  }
}
/* USER TURN — stays visually attached to the current scene */

.your-turn {
  text-align: center;
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, #faf7ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.your-turn h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--purple);
}

.your-turn p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mic {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0;
  color: #ffffff;
  background: linear-gradient(145deg, var(--purple), var(--purple-2));
  font-size: 1.65rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(114, 71, 216, 0.25);
}

.mic-status {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.85rem;
}
.your-turn {
  text-align: center;
  padding: 12px 18px 14px;
  background: linear-gradient(180deg, #faf7ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.your-turn h2 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--purple);
}

.your-turn p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}


/* =========================================================
   EXPERIENCE COCKPIT — scene + Help Journal + mic
   ========================================================= */

:root {
  --experience-scene-size: .7;
}

.stage-visual {
  width: 100%;
  background: #ffffff;
}

.stage .stage-hero {
  width: calc(100% * var(--experience-scene-size));
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: width 120ms ease;
}

.stage-visual-size {
  display: grid;
  grid-template-columns: 32px minmax(110px, 240px) 32px 46px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 9px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.stage-visual-size-button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.15rem;
}

.stage-visual-size-range {
  width: 100%;
  accent-color: var(--purple);
}

.stage-visual-size-value {
  color: var(--muted);
  font-size: .8rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.help.help-journal {
  margin-top: 10px;
}

.help-journal .help-body {
  display: none;
  max-height: min(34vh, 300px);
  overflow-y: auto;
}

.help-journal.open .help-body {
  display: block;
}

.help-journal-guidance {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--line);
}

.help-journal-hint,
.help-journal-more {
  margin: 0;
  line-height: 1.45;
}

.help-journal-more {
  margin-top: 8px;
  padding: 9px 10px;
  border-radius: 12px;
  background: var(--soft-2);
}

.help-journal-more-toggle {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--purple);
  padding: 0;
  cursor: pointer;
  font-weight: 800;
}

.help-journal-vocab {
  padding: 10px 12px 12px;
}

.help-journal-vocab:empty {
  display: none;
}

.help-journal-vocab-title {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: .88rem;
  font-weight: 800;
}

.help-journal .experience-help-vocab-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-journal .experience-help-vocab-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 11px;
  background: rgba(114, 71, 216, .045);
}

.help-journal .experience-help-vocab-term {
  font-weight: 800;
}

.help-journal .experience-help-vocab-save {
  border: 0;
  background: transparent;
  color: var(--purple);
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.help-journal .experience-help-vocab-save:disabled {
  color: var(--muted);
  cursor: default;
}

.help-journal-mic {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  text-align: left;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.help-journal-mic .mic {
  width: 54px;
  height: 54px;
  font-size: 1.35rem;
}

.help-journal-mic .mic-status {
  margin-top: 0;
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 10px, 980px);
    margin-top: 5px;
  }

  .topbar {
    margin-bottom: 7px;
  }

  .stage-head {
    padding: 9px 12px 7px;
    gap: 5px;
  }

  .stage-head .eyebrow {
    display: none;
  }

  .stage-title {
    font-size: .92rem;
    line-height: 1.25;
  }

  .progress {
    gap: 5px;
  }

  .dot {
    width: 10px;
    height: 10px;
    font-size: 8px;
  }

  .stage .stage-hero {
    aspect-ratio: 4 / 3;
  }

  .stage-visual-size {
    grid-template-columns: 28px minmax(90px, 1fr) 28px 42px;
    padding: 4px 10px 6px;
  }

  .stage-visual-size-button {
    width: 28px;
    height: 28px;
  }

  .host-panel {
    margin: 7px 8px 0;
  }

  .host-current {
    padding: 9px 10px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .avatar {
    width: 34px;
    height: 34px;
  }

  .speaker {
    margin-bottom: 2px;
    font-size: .86rem;
  }

  .host-text {
    font-size: .92rem;
    line-height: 1.35;
    max-height: 3.8em;
    overflow-y: auto;
  }

  .replay {
    grid-column: auto;
    justify-self: auto;
    padding: 6px 8px;
    font-size: .78rem;
  }

  .conversation-wrap {
    padding: 7px 10px 9px;
  }

  .conversation-title {
    margin-bottom: 5px;
    font-size: .82rem;
  }

  .conversation {
    max-height: 78px;
  }

  .turn {
    padding: 7px 9px;
    font-size: .84rem;
  }

  .help.help-journal {
    margin: 7px 8px 8px;
  }

  .help-toggle {
    padding: 9px 10px;
  }

  .drew {
    width: 34px;
    height: 34px;
  }

  .help-name {
    font-size: .92rem;
  }

  .help-sub {
    font-size: .76rem;
    line-height: 1.25;
  }

  .help-journal .help-body {
    max-height: 23vh;
  }

  .help-journal-guidance {
    padding: 9px 10px 8px;
    font-size: .88rem;
  }

  .help-journal-vocab {
    padding: 8px 9px 9px;
    font-size: .84rem;
  }

  .help-journal-mic {
    padding: 7px 10px;
  }

  .help-journal-mic .mic {
    width: 50px;
    height: 50px;
  }

  .footer-note {
    display: none;
  }
}

/* =========================================================
   INGLE CONVERSATION CONTROL
   One persistent control for host playback, learner mic,
   recording, processing, and completion.
   ========================================================= */

.conversation-control-mount {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(940px, calc(100% - 48px));
  border: 1px solid rgba(114, 71, 216, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 44px rgba(23, 35, 63, .16);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ingle-conversation-control {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ingle-conversation-control[hidden] {
  display: none;
}

.ingle-conversation-control__primary {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--purple);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(114, 71, 216, .22);
  transition:
    transform 100ms ease,
    background 140ms ease,
    box-shadow 140ms ease,
    opacity 140ms ease;
}

.ingle-conversation-control__primary:active:not(:disabled) {
  transform: scale(.96);
}

.ingle-conversation-control__primary:disabled {
  cursor: default;
  opacity: .72;
  box-shadow: none;
}

.ingle-conversation-control__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.ingle-conversation-control__content {
  min-width: 0;
}

.ingle-conversation-control__title {
  font-weight: 850;
  line-height: 1.2;
}

.ingle-conversation-control__detail {
  margin-top: 2px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.3;
}

.ingle-conversation-control__media {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.ingle-conversation-control__progress {
  width: 100%;
  height: 6px;
  accent-color: var(--purple);
}

.ingle-conversation-control__time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .74rem;
  font-variant-numeric: tabular-nums;
}

/* HOST IS SPEAKING */
.ingle-conversation-control.is-playback
.ingle-conversation-control__primary {
  background: var(--purple);
}

/* LEARNER'S TURN — available, but mic is NOT live */
.ingle-conversation-control.is-ready
.ingle-conversation-control__primary {
  background: var(--purple);
  box-shadow: 0 9px 22px rgba(114, 71, 216, .28);
  animation: ingle-mic-ready 1.8s ease-in-out 2;
}

.ingle-conversation-control.is-ready
.ingle-conversation-control__title {
  color: var(--purple);
}

/* LEARNER IS SPEAKING — mic IS live */
.ingle-conversation-control.is-recording
.ingle-conversation-control__primary {
  background: #39a85a;
  box-shadow: 0 9px 22px rgba(57, 168, 90, .28);
}

.ingle-conversation-control.is-recording
.ingle-conversation-control__title {
  color: #287c42;
}

/* PROCESSING / WAITING */
.ingle-conversation-control.is-processing
.ingle-conversation-control__primary,
.ingle-conversation-control.is-waiting
.ingle-conversation-control__primary {
  background: #8b92a4;
}

/* COMPLETE */
.ingle-conversation-control.is-complete
.ingle-conversation-control__primary {
  background: var(--green);
}

/* Legacy VCR and old mic wrapper are obsolete in Experience cockpit. */
.experience-vcr {
  display: none !important;
}

.help-journal-mic {
  display: none !important;
}

/* Keep page content visible above the fixed control. */
.stage.is-active {
  padding-bottom: 96px;
}

@keyframes ingle-mic-ready {
  0%,
  100% {
    box-shadow: 0 9px 22px rgba(114, 71, 216, .28);
  }

  50% {
    box-shadow:
      0 9px 22px rgba(114, 71, 216, .28),
      0 0 0 7px rgba(114, 71, 216, .10);
  }
}

@media (max-width: 700px) {
  .conversation-control-mount {
    width: calc(100% - 20px);
    bottom: 10px;
    border-radius: 16px;
  }

  .ingle-conversation-control {
    gap: 9px;
    padding: 7px 9px;
  }

  .ingle-conversation-control__primary {
    width: 50px;
    height: 50px;
  }

  .ingle-conversation-control__icon {
    font-size: 1.2rem;
  }

  .ingle-conversation-control__title {
    font-size: .9rem;
  }

  .ingle-conversation-control__detail {
    font-size: .74rem;
  }

  .ingle-conversation-control__media {
    margin-top: 4px;
  }

  .stage.is-active {
    padding-bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingle-conversation-control.is-ready
  .ingle-conversation-control__primary {
    animation: none;
  }
}


/* =========================================================
   SHARED INGLE HELP — EXPERIENCE INTEGRATION
   Help floats above the Experience-owned conversation control.
   ========================================================= */

#ingleHelpRoot {
  position: relative;
  z-index: 1300;
}

#ingleHelpRoot .ingle-help {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(112px, calc(94px + env(safe-area-inset-bottom)));
  z-index: 1300;
}

/* The persistent Experience control remains authoritative for
   host playback, learner mic, pause/resume and touchless realtime. */
.conversation-control-mount {
  z-index: 1200;
}

@media (max-width: 700px) {
  #ingleHelpRoot .ingle-help {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(92px, calc(78px + env(safe-area-inset-bottom)));
    width: calc(100vw - 20px);
  }
}
/* Prevent the default Experience from flashing while
   the requested Experience is loading. */
.experience-booting #arrival,
.experience-booting #stage {
    visibility: hidden;
}