:root {
  --bg: #080908;
  --text: #e9dfc7;
  --muted: #9c988d;
  --accent: #d1ad62;
  --line: rgba(209, 173, 98, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 81, 35, 0.17), transparent 30%),
    linear-gradient(115deg, #050605 0%, #0c0d0b 52%, #080908 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background: linear-gradient(115deg, transparent 0 48%, rgba(233,223,199,.08) 50%, transparent 52%);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px 10px;
}

.glass-panel {
  position: relative;
  width: min(100%, 980px);
  padding: clamp(42px, 7vw, 78px) clamp(20px, 5vw, 72px);
  border: 1px solid rgba(233, 223, 199, .22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035) 42%, rgba(15,20,16,.2));
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.15), inset -1px -1px 0 rgba(209,173,98,.06), 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255,255,255,.14), transparent 24%, transparent 72%, rgba(209,173,98,.08));
}

.hero-inner {
  display: grid;
  place-items: center;
  gap: 24px;
  perspective: 900px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--accent); color: var(--accent); font-size: 1.05rem; font-weight: 700; transform: rotate(45deg); }
.brand-mark::first-letter { display: inline-block; transform: rotate(-45deg); }

.title-stage {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
  padding: 16px 0;
}

.coming-title {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  display: flex;
  font-size: clamp(1.6rem, 5vw, 8rem);
  line-height: .9;
  letter-spacing: .12em;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(233, 223, 199, .82);
  text-shadow: 1px 1px 0 rgba(255,255,255,.25), 0 12px 24px rgba(0,0,0,.45);
  animation: title-arrive 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}
.title-shadow { position: absolute; inset: 0; color: transparent; white-space: nowrap; font-size: clamp(1.6rem, 5vw, 8rem); line-height: .9; letter-spacing: .12em; font-weight: 900; font-style: italic; text-transform: uppercase; -webkit-text-stroke: 1px rgba(233, 223, 199, .28); transform: translate3d(6px, 7px, -18px); animation: shadow-arrive 1.2s ease forwards; }
.hero-note { color: var(--muted); font-family: Arial, sans-serif; font-size: .84rem; letter-spacing: .06em; animation: fade-up .8s .55s both; }
.store-row { animation: fade-up .8s .7s both; }

@keyframes title-arrive { from { letter-spacing: .38em; transform: translateZ(-100px); } to { letter-spacing: .12em; transform: translateZ(0); } }
@keyframes shadow-arrive { from { transform: translate3d(2px, 3px, -60px); } to { transform: translate3d(6px, 7px, -18px); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.store-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  color: var(--text);
  min-width: 180px;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background .2s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #0b0b09;
  font-size: 1rem;
  font-weight: 900;
}

.store-badge small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.store-badge strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.footer {
  padding: 0 0 26px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.glass-dock {
  width: max-content;
  margin: 0 auto;
  padding: 7px;
  border: 1px solid rgba(233,223,199,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.1), 0 14px 35px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(209,173,98,.22);
  background: rgba(255,255,255,.035);
  color: var(--accent);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

@media (max-width: 600px) {
  .brand {
    letter-spacing: 0.1em;
    font-size: 0.72rem;
  }

  .hero { padding-inline: 8px; }
  .title-shadow { font-size: clamp(1.6rem, 8vw, 8rem); }
  .brand-mark { width: 28px; height: 28px; }
  .glass-panel { border-radius: 16px; }
  .glass-dock { border-radius: 14px; }

  .store-row {
    flex-direction: column;
    width: 100%;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }
}

body {
  background: #000;
  overflow-x: hidden;
}

body::before { display: none; }

.solo-coming {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.simple-title h1 {
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  max-width: calc(100vw - 48px);
  font-size: clamp(1.35rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
  animation: simple-rise .9s cubic-bezier(.16,1,.3,1) both;
}

.simple-title {
  position: relative;
  z-index: 1;
}

.social-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 24px 26px;
}

.social-footer a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease;
}

.social-footer a:hover { color: #fff; border-color: #fff; }

.simple-title {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@keyframes simple-rise {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes simple-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .simple-title h1 {
    font-size: clamp(1.35rem, 8vw, 3rem);
    letter-spacing: .08em;
  }

  .social-footer { gap: 10px; }
}

/* Dashboard glass composition */
body {
  background:
    radial-gradient(circle at 25% 16%, rgba(105, 139, 43, .23), transparent 25%),
    radial-gradient(circle at 78% 68%, rgba(46, 110, 112, .18), transparent 27%),
    radial-gradient(circle at 93% 48%, rgba(184, 119, 46, .2), transparent 18%),
    #0a0b0b;
  font-family: Arial, Helvetica, sans-serif;
}

.dashboard { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 34px; }
.glass { border: 1px solid rgba(255,255,255,.16); background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.035) 48%, rgba(20,24,22,.28)); box-shadow: inset 1px 1px 0 rgba(255,255,255,.13), 0 20px 55px rgba(0,0,0,.24); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.topbar { min-height: 56px; display: flex; align-items: center; gap: 28px; padding: 8px 14px 8px 18px; border-radius: 30px; }
.topbar .brand { margin-right: auto; font-size: .72rem; color: var(--text); }
.topbar .brand-mark { width: 28px; height: 28px; font-size: .9rem; }
.nav-links { display: flex; gap: 4px; padding: 4px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(0,0,0,.18); }
.nav-links a, .status { padding: 8px 15px; border-radius: 15px; color: rgba(233,223,199,.65); font-size: .68rem; white-space: nowrap; }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,.12); }
.status { display: flex; align-items: center; gap: 7px; color: var(--text); }
.status i { width: 6px; height: 6px; border-radius: 50%; background: #b7e746; box-shadow: 0 0 10px #b7e746; }
.dashboard-grid { display: grid; grid-template-columns: 1fr 1.35fr 1fr; grid-template-rows: auto auto; gap: 16px; margin-top: 16px; }
.dashboard-grid article { border-radius: 18px; padding: 24px; min-height: 238px; overflow: hidden; position: relative; }
.progress-card { background: linear-gradient(135deg, rgba(146,184,64,.24), rgba(255,255,255,.045) 60%); }
.launch-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(71,94,89,.12) 52%, rgba(30,31,26,.28)); }
.activity-card { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035)); }
.schedule-card { grid-column: 1 / 3; min-height: 176px !important; background: linear-gradient(105deg, rgba(51,111,110,.2), rgba(255,255,255,.06) 56%, rgba(105,65,104,.18)); }
.eyebrow { color: rgba(233,223,199,.72); font-size: .7rem; letter-spacing: .02em; }
.progress-number, .activity-number { display: block; margin: 18px 0 12px; color: var(--text); font-size: 3rem; font-weight: 400; letter-spacing: -.08em; }
.progress-number span, .activity-number span { margin-left: 4px; font-size: .9rem; letter-spacing: 0; color: var(--muted); }
.progress-card p { max-width: 205px; color: rgba(233,223,199,.62); font-size: .7rem; line-height: 1.5; }
.progress-line { height: 4px; margin: 24px 0 12px; border-radius: 4px; background: rgba(255,255,255,.12); }
.progress-line span { display: block; width: 64%; height: 100%; border-radius: inherit; background: #c4ed39; box-shadow: 0 0 13px rgba(196,237,57,.8); }
.metric-row, .card-heading { display: flex; align-items: center; justify-content: space-between; color: rgba(233,223,199,.55); font-size: .65rem; }
.metric-row b { color: #c4ed39; font-weight: 400; }
.launch-card .eyebrow { margin-bottom: 20px; }
.launch-card .title-stage { padding: 0; transform: scale(.67); margin: -10px 0; }
.launch-card .coming-title, .launch-card .title-shadow { font-size: clamp(2.8rem, 5vw, 5.5rem); }
.launch-card .hero-note { margin-top: 4px; font-family: Arial, Helvetica, sans-serif; font-size: .7rem; }
.launch-link { display: inline-flex; gap: 8px; margin-top: 20px; padding: 9px 14px; border: 1px solid rgba(209,173,98,.4); border-radius: 8px; color: var(--text); font-size: .68rem; background: rgba(255,255,255,.06); }
.launch-link span, .arrow { color: var(--accent); }
.mini-pill { padding: 5px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: var(--muted); font-size: .58rem; }
.activity-number { margin-bottom: 20px; }
.bars { display: flex; align-items: end; gap: 6px; height: 94px; }
.bars i { width: 20px; height: 42%; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.08); }
.bars i:nth-child(2) { height: 30%; }.bars i:nth-child(3) { height: 58%; }.bars i:nth-child(4) { height: 92%; }.bars i:nth-child(5) { height: 74%; }.bars i:nth-child(6) { height: 64%; }.bars i:nth-child(7) { height: 78%; }
.bars i.highlight { background: rgba(255,255,255,.85); box-shadow: 0 0 20px rgba(255,255,255,.28); }
.days { display: flex; justify-content: space-between; margin-top: 8px; color: var(--muted); font-size: .58rem; }
.schedule-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.schedule-items div { display: grid; grid-template-columns: 28px 1fr; column-gap: 10px; align-items: center; padding: 12px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.055); }
.schedule-items b { grid-row: span 2; color: var(--accent); font-size: .8rem; font-weight: 400; }.schedule-items span { color: var(--text); font-size: .72rem; }.schedule-items small { color: var(--muted); font-size: .58rem; }

@media (max-width: 760px) {
  .dashboard { width: min(100% - 24px, 520px); padding-top: 14px; }
  .topbar { gap: 10px; }.nav-links { display: none; }.status { padding-right: 4px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }.launch-card { grid-column: 1 / -1; grid-row: 1; min-height: 270px !important; }.progress-card { grid-column: 1; grid-row: 2; }.activity-card { grid-column: 2; grid-row: 2; }.schedule-card { grid-column: 1 / -1; grid-row: 3; }
  .dashboard-grid article { padding: 18px; }.bars i { width: 15px; }
}

.solo-coming {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.solo-stage {
  position: relative;
  padding: 42px 58px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.13), 0 24px 70px rgba(0,0,0,.35);
  transform-style: preserve-3d;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.solo-stage::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 21px;
  background: linear-gradient(115deg, rgba(255,255,255,.13), transparent 32%, rgba(209,173,98,.08));
}

.solo-stage h1, .solo-shadow {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 7vw, 7rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: .9;
}

.solo-stage h1 {
  color: rgba(233,223,199,.88);
  text-shadow: 1px 1px 0 rgba(255,255,255,.25), 0 14px 28px rgba(0,0,0,.5);
  animation: solo-arrive 1.1s cubic-bezier(.16,1,.3,1) both;
}

.solo-shadow {
  position: absolute;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233,223,199,.25);
  transform: translate3d(8px, 10px, -20px);
  animation: solo-shadow-arrive 1.1s ease both;
}

@keyframes solo-arrive {
  from { letter-spacing: .35em; transform: translateZ(-100px); }
  to { letter-spacing: .12em; transform: translateZ(0); }
}

@keyframes solo-shadow-arrive {
  from { transform: translate3d(2px, 3px, -60px); }
  to { transform: translate3d(8px, 10px, -20px); }
}

@media (max-width: 600px) {
  .solo-stage { width: 100%; padding: 34px 14px; text-align: center; }
  .solo-stage h1, .solo-shadow { font-size: clamp(1.55rem, 8.5vw, 3.2rem); letter-spacing: .08em; }
}

/* Final minimal state */
body {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 184, 35, .16), transparent 25%),
    radial-gradient(circle at 50% 40%, rgba(255, 116, 0, .1), transparent 46%),
    #000 !important;
  background-image: none !important;
}

body { background-image: radial-gradient(circle at 50% 40%, rgba(255,184,35,.16), transparent 25%), radial-gradient(circle at 50% 40%, rgba(255,116,0,.1), transparent 46%) !important; }

.simple-title {
  position: static;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

.simple-title h1 {
  max-width: calc(100vw - 48px);
  color: #fff;
  text-shadow: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 6vw, 6rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
  animation: none;
}

.simple-title {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 8vw, 84px) clamp(30px, 9vw, 120px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.simple-title h1 { animation: simple-rise .9s cubic-bezier(.16,1,.3,1) both; }

.logo-image {
  display: grid;
  place-items: center;
  width: clamp(76px, 10vw, 108px);
  aspect-ratio: 1;
  margin: 0 auto 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(255,154,0,.38);
  animation: logo-arrive 1s cubic-bezier(.16,1,.3,1) both;
}

.site-status {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,.55);
  font-family: Arial, Helvetica, sans-serif;
  display: block;
  width: clamp(190px, 32vw, 330px);
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
  box-shadow: none;
  animation: logo-arrive 1s cubic-bezier(.16,1,.3,1) both;
}

.progress-rule span { display: block; width: 18%; height: 100%; background: #fff; }
.progress-label { display: flex; justify-content: space-between; width: min(100%, 330px); color: rgba(255,255,255,.42); font: .55rem Arial, Helvetica, sans-serif; }
.notify-link { display: inline-block; margin-top: 24px; padding: 9px 22px; border: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.8); font: .62rem Arial, Helvetica, sans-serif; transition: background .2s ease, color .2s ease; }
.notify-link:hover { background: #fff; color: #000; }

.social-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 24px 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-footer a { color: rgba(255,255,255,.55); transition: color .2s ease; }
.social-footer a:hover { color: #fff; }

@keyframes simple-rise {
  from { opacity: 0; transform: translateY(42px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logo-arrive {
  from { opacity: 0; transform: scale(.7) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
  .simple-title { padding: 34px 18px; }
  .social-footer { gap: 14px; font-size: .56rem; }
}

/* Vintage barber-salon color grade */
body {
  background-color: #100b0b !important;
  background-image:
    radial-gradient(circle at 50% 38%, rgba(183, 126, 42, .18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(92, 19, 24, .34), transparent 58%),
    repeating-linear-gradient(118deg, rgba(255,255,255,.018) 0 2px, transparent 2px 54px),
    linear-gradient(125deg, #080808 0%, #241314 48%, #0c0909 100%) !important;
  color: #ead9b2;
}

.simple-title h1 {
  color: #e8c36c;
  text-shadow: 0 2px 0 #6c3d16, 0 0 24px rgba(232,195,108,.24);
}

.site-status, .progress-label { color: rgba(234,217,178,.55); }
.progress-rule { background: rgba(234,217,178,.28); }
.progress-rule span { background: #d5a849; box-shadow: 0 0 10px rgba(213,168,73,.5); }
.notify-link { border-color: rgba(213,168,73,.5); color: #ead9b2; }
.notify-link:hover { background: #d5a849; color: #100b0b; }

.simple-title {
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible;
}
.social-footer a { border-color: rgba(213,168,73,.38); color: #d5a849; }
.social-footer a:hover { border-color: #f2d48a; color: #f2d48a; }

.solo-coming { flex: 1; min-height: 0; display: grid; place-items: center; padding: 72px 24px 24px; }
.simple-title { display: flex; flex-direction: column; align-items: center; }
.logo-image { width: clamp(180px, 23vw, 280px); margin-bottom: 26px; }
.simple-title h1 { font-size: clamp(1.55rem, 5.5vw, 4.5rem); letter-spacing: .16em; text-align: center; }
.social-footer { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0 24px 24px; }
.contact-links, .app-links { display: flex; align-items: center; justify-content: center; gap: 10px; }
.contact-links a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(213,168,73,.38); border-radius: 50%; color: #d5a849; font: 700 .82rem Arial, sans-serif; }
.contact-links a:hover { background: #d5a849; color: #100b0b; }
.app-link { display: inline-flex; align-items: center; gap: 9px; min-width: 140px; padding: 9px 12px; border: 1px solid rgba(213,168,73,.38); color: #ead9b2; font: 600 .65rem Arial, sans-serif; }
.app-link svg { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }
.app-link small { display: block; margin-bottom: 2px; color: rgba(234,217,178,.56); font-size: .42rem; letter-spacing: .08em; }
.app-link.disabled { opacity: .52; }
.copyright { flex-basis: auto; }

@media (max-width: 600px) {
  .solo-coming { padding-top: 52px; }
  .logo-image { width: min(68vw, 240px); }
  .simple-title h1 { font-size: clamp(1.35rem, 7.5vw, 3rem); letter-spacing: .1em; }
  .app-link { min-width: 132px; padding: 8px 9px; }
}

/* Use the supplied logo image as the background artwork. */
body {
  position: relative;
  background: #d5d0c4 !important;
  background-image: none !important;
  color: #1f2722;
}

body::after {
  display: none;
}

.solo-coming, .social-footer { position: relative; z-index: 1; }
.logo-image { position: relative; z-index: 1; }
.social-footer { flex-wrap: wrap; row-gap: 12px; }
.copyright { flex-basis: 100%; color: rgba(27,33,29,.55); font: .58rem Arial, Helvetica, sans-serif; letter-spacing: .06em; text-align: center; }

.social-footer { flex-direction: column; align-items: center; gap: 16px; }
.contact-links, .app-links { display: flex; align-items: center; justify-content: center; gap: 10px; }
.contact-links a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(27,33,29,.36); border-radius: 50%; color: #1b211d; font: 700 .82rem Arial, Helvetica, sans-serif; transition: background .2s ease, color .2s ease; }
.contact-links svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-links .icon-facebook { fill: currentColor; stroke: none; }
.contact-links .icon-dot { fill: currentColor; stroke: none; }
.contact-links a:hover { background: #1b211d; color: #d5d0c4; }
.app-link { display: inline-flex; align-items: center; gap: 8px; min-width: 128px; padding: 8px 12px; border: 1px solid rgba(27,33,29,.36); color: #1b211d; font: 600 .66rem Arial, Helvetica, sans-serif; text-align: left; }
.app-link > span:first-child { font-size: 1rem; }.app-link small { display: block; font-size: .43rem; letter-spacing: .08em; opacity: .62; }.app-link.disabled { opacity: .5; }

.simple-title h1 { color: #1b211d; text-shadow: none; }
.social-footer a { border-color: rgba(27,33,29,.36); color: #1b211d; }
.social-footer a:hover { border-color: #1b211d; color: #1b211d; }

.site-header {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 2;
}

.brand-name {
  color: #1b211d;
  font: 700 .72rem Arial, Helvetica, sans-serif;
  letter-spacing: .2em;
}

.brand-name:hover { color: #000; }

.brand-name::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 8px;
  background: currentColor;
  opacity: .65;
}

.solo-coming {
  flex: 1;
  min-height: 0;
}

html, body { overflow-y: hidden; }

@media (max-width: 600px) {
  .site-header { top: 20px; left: 20px; }
}

.solo-coming { padding: 72px 24px 24px; }
.simple-title { display: flex; flex-direction: column; align-items: center; }
.logo-image { width: clamp(150px, 18vw, 220px); margin-bottom: 22px; }
.simple-title h1 { font-size: clamp(1.5rem, 5vw, 4.2rem); letter-spacing: .14em; text-align: center; }
.simple-title > .app-links { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.simple-title .app-link { display: inline-flex; align-items: center; gap: 9px; min-width: 140px; padding: 9px 12px; border: 1px solid rgba(213,168,73,.38); color: #ead9b2; font: 600 .65rem Arial, sans-serif; text-align: left; }
.simple-title .app-link svg { width: 21px; height: 21px; fill: currentColor; flex: 0 0 auto; }
.simple-title .app-link small { display: block; margin-bottom: 2px; color: rgba(234,217,178,.56); font-size: .42rem; letter-spacing: .08em; }
.simple-title .app-link.disabled { opacity: .52; }
.social-footer { flex-wrap: nowrap; row-gap: 0; }

@media (max-width: 600px) {
  .solo-coming { padding: 58px 16px 18px; }
  .logo-image { width: min(52vw, 190px); }
  .simple-title h1 { font-size: clamp(1.3rem, 7vw, 3rem); letter-spacing: .09em; }
  .simple-title > .app-links { width: 100%; gap: 8px; margin-top: 22px; }
  .simple-title .app-link { min-width: 0; flex: 1; padding: 8px 7px; font-size: .58rem; }
  .social-footer { flex-wrap: wrap; row-gap: 12px; }
}

html { height: auto; min-height: 100%; overflow-y: auto !important; }
body { height: auto; min-height: 100vh; overflow: visible !important; }

.header-brand { display: inline-flex; align-items: center; gap: 12px; color: #1b211d; }
.header-brand img { width: 34px; height: 34px; object-fit: cover; border-radius: 50%; }
.header-brand .brand-name { display: inline; color: inherit; font: 700 .7rem Arial, Helvetica, sans-serif; letter-spacing: .18em; }
.header-brand .brand-name::after { display: none; }
.brand-divider { width: 1px; height: 28px; background: currentColor; opacity: .45; }
.site-header { top: 24px; left: 28px; }

.logo-image { width: clamp(128px, 15vw, 190px); margin-bottom: 18px; }
.simple-title > .app-links { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px; }
.simple-title .app-link { display: inline-flex; align-items: center; gap: 8px; min-width: 132px; padding: 8px 10px; border: 1px solid rgba(27,33,29,.36); color: #1b211d; background: rgba(255,255,255,.14); font: 600 .62rem Arial, sans-serif; text-align: left; }
.simple-title .app-link svg { display: block; width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.simple-title .app-link small { display: block; margin-bottom: 2px; font-size: .4rem; letter-spacing: .08em; opacity: .62; }
.simple-title .app-link.disabled { opacity: .52; }

@media (max-width: 600px) {
  .site-header { top: 18px; left: 18px; }
  .header-brand img { width: 28px; height: 28px; }
  .brand-divider { height: 23px; }
  .simple-title > .app-links { width: 100%; gap: 7px; }
  .simple-title .app-link { min-width: 0; flex: 1; padding: 8px 7px; }
}

.logo-image {
  width: clamp(120px, 14vw, 180px) !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.header-brand img {
  width: 32px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

@media (max-width: 600px) {
  .logo-image { width: min(46vw, 170px) !important; }
  .header-brand img { width: 27px !important; }
}

/* Final production polish */
.simple-title { gap: 0; }
.logo-image { display: block; object-fit: contain; }
.simple-title h1 { margin: 0; }
.simple-title .app-link { border-radius: 3px; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.simple-title .app-link:hover { transform: translateY(-2px); border-color: #1b211d; background: rgba(255,255,255,.3); }
.simple-title .app-link.disabled:hover { transform: none; }
.contact-links a:focus-visible, .app-link:focus-visible, .brand-name:focus-visible, .header-brand:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.social-footer { transition: opacity .3s ease; }

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

html, body { overflow-y: auto; }
body { display: block; }
.solo-coming { min-height: 100vh; height: 100vh; padding: 92px 24px 34px; }
.simple-title h1 { animation: simple-rise .95s cubic-bezier(.16,1,.3,1) both; }
.coming-note { margin: 18px 0 0; color: rgba(27,33,29,.62); font: .72rem Arial, Helvetica, sans-serif; letter-spacing: .06em; }
.simple-title > .app-links { margin-top: 24px; }
.social-footer { min-height: 34vh; padding-top: 12vh; padding-bottom: 30px; opacity: 0; animation: footer-reveal .8s .8s ease forwards; }

@keyframes footer-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .solo-coming { padding: 72px 16px 26px; }
  .coming-note { max-width: 270px; text-align: center; line-height: 1.5; }
  .social-footer { min-height: 38vh; padding-top: 12vh; }
}
