/* REP Hybrid — Find Your Mix
   World: apple.com, executed straight. Huge restrained type, massive air,
   near-white grounds, one accent reserved entirely for action.
   Colorways: each archetype owns a hue (data/matrix.json → archetypes[*].hue),
   applied at result time as --arch-accent/--arch-deep; washes derive via color-mix.
   Brand swap: --accent and the wordmark are the only values REP's kit changes. */

@font-face {
  font-family: "InterVariable";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* grounds */
  --white: #ffffff;
  --ground: #fbfbfd;
  --ground-2: #f5f5f7;
  --hairline: #d2d2d7;

  /* ink — Apple's own #86868b tertiary fails 4.5:1 on these grounds, so the
     scale is darkened one step and every grey below clears the floor. */
  --ink: #1d1d1f;
  --ink-2: #515154;
  --ink-3: #6e6e73;

  /* the one accent — REP's, not Apple's. Swap this when the kit lands. */
  --accent: #0d6e5f;
  --accent-deep: #0a564a;
  --accent-wash: #eef5f3;

  --radius: 18px;
  --radius-sm: 12px;
  --pill: 980px;

  --font: "InterVariable", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI Variable Display", "Segoe UI", Roboto, system-ui, sans-serif;

  --ease: cubic-bezier(0.28, 0.11, 0.32, 1);

  /* colorway slots — house teal until a result assigns an archetype hue */
  --arch-accent: var(--accent);
  --arch-deep: var(--accent-deep);
  --arch-wash: color-mix(in srgb, var(--arch-accent) 7%, var(--ground));
  --arch-wash-strong: color-mix(in srgb, var(--arch-accent) 12%, var(--ground));
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #000000;
    --ground: #161617;
    --ground-2: #1d1d1f;
    --hairline: #3a3a3c;
    --ink: #f5f5f7;
    --ink-2: #b8b8bd;
    --ink-3: #98989d;
    --accent-wash: #12312b;
    --arch-wash: color-mix(in srgb, var(--arch-accent) 16%, var(--ground));
    --arch-wash-strong: color-mix(in srgb, var(--arch-accent) 24%, var(--ground));
  }
}
/* Component-level dark overrides live in ONE block at the END of this file —
   they must come after the base rules or the cascade hands the win back. */

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* browser surfaces — themed, not defaulted */
::selection { background: var(--accent); color: #fff; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
* { scrollbar-color: var(--hairline) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

.shell {
  max-width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ---------- chrome: Apple's slim global bar ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark span { color: var(--ink-3); font-weight: 400; }

.progress {
  flex: 1;
  max-width: 220px;
  height: 3px;
  margin: 0 auto;
  background: var(--hairline);
  border-radius: 99px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.progress.on { opacity: 1; }
.progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.5s var(--ease);
}

.count {
  font-size: 12px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
  text-align: right;
  visibility: hidden;
}
.count.on { visibility: visible; }

/* ---------- screens ---------- */
.screen { display: none; flex: 1; flex-direction: column; }
.screen.on { display: flex; }

/* entrance is scoped: intro/questions/gate rise on swap (it IS the screen
   transition); the result page stages its own reveal instead. */
#screen-intro.on > *,
#screen-q.on > *,
#screen-gate.on > * {
  animation: rise 0.6s var(--ease) both;
}
.screen.back-nav.on > * { animation-name: rise-back; }
@keyframes rise {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes rise-back {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: none; }
}
#screen-intro.on > * { animation-name: rise-up; }
@keyframes rise-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* boot spinner — visible from first paint until data lands */
#boot {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ground);
  z-index: 40;
}
#boot .spin {
  width: 26px;
  height: 26px;
  border: 3px solid var(--hairline);
  border-top-color: var(--ink-2);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .screen.on > *, #screen-intro.on > * { animation: none; }
  .progress i, .bar-fill { transition: none; }
  .reveal-label, .arch-name, .arch-tag, .echo, .arch-body, .bars { animation: none !important; opacity: 1 !important; transform: none !important; }
  .cycle span { animation: none !important; opacity: 0; }
  .cycle span:first-child { opacity: 1; }
}

/* ---------- intro: the Apple hero ---------- */
.intro {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(64px, 14vh, 140px) 22px clamp(56px, 10vh, 100px);
  background: var(--ground);
}

/* the living hero: the headline's own first line — a class name cycling at
   FULL display scale (Apple "Whoosh." energy), never an eyebrow above it. */
.cycle {
  display: block;
  height: 1.22em;
  font-size: clamp(40px, 9vw, 80px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--accent);
  position: relative;
  width: 100%;
}
.cycle span {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  animation: cycle-fade 7.2s var(--ease) infinite;
}
@keyframes cycle-fade {
  0%, 22% { opacity: 1; transform: none; }
  27%, 95% { opacity: 0; transform: translateY(-6px); }
  96% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: none; }
}

.intro h1 {
  font-size: clamp(40px, 9vw, 80px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 14ch;
  text-wrap: balance;
}


.intro .sub {
  margin-top: 18px;
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.42;
  color: var(--ink-2);
  max-width: 34ch;
  text-wrap: balance;
}

.intro .foot {
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-3);
}

/* ---------- questions ---------- */
#screen-q {
  align-items: center;
  padding: clamp(48px, 9vh, 88px) 22px 64px;
}

.stem {
  font-size: clamp(30px, 5.4vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.022em;
  text-align: center;
  max-width: 17ch;
  margin: 0 auto clamp(32px, 5vh, 52px);
  text-wrap: balance;
}

.opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}

/* Apple's configurator tile: bordered, generous, accent on select */
.opt {
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 19px 52px 19px 22px;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.opt:hover { border-color: var(--ink-3); }
.opt.picked {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.opt[disabled] { cursor: default; }

.opt .l {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.014em;
}
.opt .s {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 2px;
  letter-spacing: -0.008em;
}

/* the checkmark that lands on selection */
.opt::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.22s var(--ease), transform 0.32s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M5.5 10.4l3 3 6-6.4'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}
.opt.picked::after { opacity: 1; transform: scale(1); }

.back {
  display: block;
  margin: 30px auto 0;
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 12px;
}
.back:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- gate ---------- */
.gate {
  align-items: center;
  padding: clamp(48px, 9vh, 88px) 22px 64px;
}
.gate h2 {
  font-size: clamp(30px, 5.4vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.022em;
  text-align: center;
  max-width: 16ch;
  margin: 0 auto 14px;
  text-wrap: balance;
}
.gate .sub {
  text-align: center;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 36ch;
  margin: 0 auto clamp(28px, 4vh, 40px);
  text-wrap: balance;
}
.gate form { width: 100%; max-width: 420px; margin: 0 auto; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 7px;
  letter-spacing: -0.004em;
}
.field input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  padding: 15px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder { color: var(--ink-3); }
.field input {
  caret-color: var(--accent);
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.field.bad input { border-color: #b3261e; }
.field .err {
  color: #b3261e;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}
.field.bad .err { display: block; }

.small-print {
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}

/* ---------- buttons: Apple pill ---------- */
.btn {
  display: inline-block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--pill);
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 14px 26px;
  cursor: pointer;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.12s var(--ease);
}
.btn:hover { background: var(--accent-deep); }
.btn:active { transform: scale(0.985); }

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--hairline);
}
.btn.ghost:hover { background: var(--ground-2); border-color: var(--ink-3); }

.intro .btn { width: auto; min-width: 200px; }

/* ---------- result: the Apple product page, in the archetype's colorway ---------- */
.result { padding: 0; }

.arch-card {
  text-align: center;
  padding: clamp(56px, 11vh, 108px) 22px clamp(48px, 8vh, 84px);
  background: radial-gradient(120% 90% at 50% 0%, var(--arch-wash-strong), var(--arch-wash) 55%, var(--ground));
}

/* staged reveal: quiet label → bars draw + counts tick → the name lands */
.arch-card .reveal-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 18px;
  animation: rise-up 0.5s var(--ease) both;
}
.arch-name, .arch-tag, .echo, .arch-body { animation: reveal-in 0.7s var(--ease) both; }
.arch-name { animation-delay: 0.9s; }
.arch-tag { animation-delay: 1.05s; }
.echo { animation-delay: 1.2s; }
.arch-body { animation-delay: 1.3s; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

.echo {
  margin: 18px auto 0;
  font-size: 14px;
  color: var(--ink-2);
  max-width: 60ch;
}
.echo .echo-label { color: var(--ink-3); }
.echo .sep { color: var(--ink-3); padding: 0 7px; }

.arch-name {
  font-size: clamp(44px, 10.5vw, 92px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.028em;
  max-width: 13ch;
  margin: 0 auto;
  text-wrap: balance;
}

.arch-tag {
  margin: 16px auto 0;
  font-size: clamp(19px, 2.8vw, 26px);
  line-height: 1.32;
  font-weight: 500;
  color: var(--ink);
  max-width: 26ch;
  letter-spacing: -0.016em;
  text-wrap: balance;
}

.arch-body {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
  text-wrap: pretty;
}

/* score bars */
.bars {
  margin: clamp(38px, 6vh, 60px) auto 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  animation: rise-up 0.5s var(--ease) 0.15s both;
}
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; }
.bar-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.004em;
}
.bar-val {
  font-size: 13px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.bar-track {
  grid-column: 1 / -1;
  height: 4px;
  background: var(--hairline);
  border-radius: 99px;
  overflow: hidden;
}
.bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--arch-accent);
  border-radius: 99px;
  transition: transform 0.9s var(--ease);
}

/* sections alternate ground, Apple-style — no cards, no borders */
.panel {
  padding: clamp(48px, 8vh, 84px) 22px;
  max-width: 720px;
  margin: 0 auto;
}

.panel h3 {
  font-size: clamp(26px, 4.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: clamp(26px, 4vh, 40px);
  text-wrap: balance;
}

/* the mix — Apple spec list with the number as the hero */
.mix-row {
  display: grid;
  grid-template-columns: clamp(74px, 12vw, 96px) 1fr;
  gap: 2px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.mix-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.mix-n {
  font-size: clamp(34px, 6vw, 44px);
  font-weight: 600;
  color: var(--arch-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  line-height: 1;
}
.mix-name {
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 600;
  letter-spacing: -0.018em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.mix-name .ico { flex: none; width: 21px; height: 21px; color: var(--arch-accent); }
.mix-name .ico svg { display: block; width: 100%; height: 100%; }
.mix-line {
  grid-column: 2;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.42;
}

/* the seven-day strip — the plan at a glance */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 640px;
  margin: 0 auto;
}
.wd {
  border-radius: var(--radius-sm);
  padding: 12px 4px 14px;
  text-align: center;
  background: var(--ground-2);
}
.wd.onday { background: var(--arch-wash-strong); }
.wd .d {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.wd.onday .d { color: var(--arch-deep); }
.wd .c {
  margin: 8px auto 0;
  width: 22px;
  height: 22px;
  color: var(--arch-accent);
}
.wd .c svg { display: block; width: 100%; height: 100%; }
.wd .rest { margin: 8px auto 0; width: 5px; height: 5px; border-radius: 50%; background: var(--hairline); }
.wd .n {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.006em;
  color: var(--ink);
  line-height: 1.25;
  overflow-wrap: break-word;
}
.week-line {
  font-size: 15px;
  color: var(--ink-2);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
  text-wrap: balance;
}

.notes {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.note {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
  text-wrap: pretty;
}

/* consult — the one tinted section: a full-bleed band, never a floating box.
   .panel's `margin: 0 auto` must go too — auto margins block flex stretch. */
.consult {
  background: var(--ground-2);
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: center;
}
.consult > * { max-width: 46ch; margin-left: auto; margin-right: auto; }
.consult h4 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.consult p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
.consult .btn { width: auto; min-width: 220px; }
.consult p.small-print {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 14px;
}

.row-2 {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 22px clamp(40px, 6vh, 64px);
}
.row-2 .btn { margin-top: 0; width: auto; min-width: 190px; }

/* the close — a statement, not a trail-off */
.result-foot {
  text-align: center;
  padding: clamp(64px, 12vh, 120px) 22px clamp(72px, 12vh, 120px);
  background: radial-gradient(110% 100% at 50% 100%, var(--arch-wash-strong), var(--ground) 70%);
  border-top: 1px solid var(--hairline);
}
.result-foot .open {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 600;
  letter-spacing: -0.024em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.result-foot p {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.result-foot .btn { width: auto; min-width: 220px; }
.result-foot .retake-quiet {
  display: inline-block;
  margin-top: 22px;
  background: none;
  border: none;
  color: var(--accent);
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.result-foot .retake-quiet:hover { text-decoration: underline; text-underline-offset: 3px; }

.gate-fatal { color: #b3261e; text-align: center; margin-top: 16px; }

@media (max-width: 480px) {
  .top { padding: 0 16px; }
  .mix-row { grid-template-columns: 50px 1fr; }
  .row-2 { flex-direction: column; }
  .row-2 .btn { width: 100%; }
}

/* ---------- deep-profile additions ---------- */

/* chapter interstitial — a beat between chapters, reuses .stem for the title */
.chapter-beat {
  text-align: center;
  cursor: pointer;
}
.chapter-n {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 14px;
}

/* the portrait line — "a coach wrote this about you" */
.portrait-panel { text-align: center; }
.portrait-line {
  font-size: 19px;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.5;
  text-wrap: pretty;
}
.portrait-line + .portrait-line { margin-top: 12px; }

/* niggle line inside the recovery panel's .notes block — slightly emphasized */
.note.niggle { color: var(--ink); }

/* coach brief — a small heading plus one line of chips, inside consult or its own panel */
p.brief-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.014em;
  margin-top: 30px;
  margin-bottom: 10px;
  text-wrap: balance;
}
p.brief-line {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* the close — one settled line before the buttons */
.close-line {
  text-align: center;
  font-size: 19px;
  color: var(--ink);
  max-width: 46ch;
  margin: 0 auto clamp(28px, 4vh, 40px);
  padding: 0 22px;
  text-wrap: pretty;
}

/* ---------- dark mode, apple.com's own grammar ----------
   One block, last in the file, so every override actually wins the cascade.
   Black page, #161617 bands, elevated tiles, accent text lightened to hold
   contrast on dark grounds. Token flips live in :root at the top. */
@media (prefers-color-scheme: dark) {
  .top {
    background: rgba(22, 22, 23, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .wordmark { color: var(--ink); }

  /* interactive surfaces elevate off the black, Apple dark-configurator style */
  .opt,
  .field input {
    background: var(--ground);
    border-color: #424245;
  }
  .opt:hover { border-color: var(--ink-3); }
  .wd { background: var(--ground-2); }

  /* accent-as-text lightens; accent-as-fill (buttons, bars) stays as chosen */
  .cycle,
  .mix-n,
  .back,
  .btn.ghost,
  .result-foot .retake-quiet {
    color: color-mix(in srgb, var(--arch-accent, var(--accent)) 55%, #ffffff);
  }
  .btn.ghost { border-color: #424245; }
  .btn.ghost:hover { background: var(--ground); border-color: var(--ink-3); }
  .wd.onday .d { color: color-mix(in srgb, var(--arch-accent) 45%, #ffffff); }
  .wd .c { color: color-mix(in srgb, var(--arch-accent) 55%, #ffffff); }
}
