/* ============================================================
   DAILY WINS JOURNAL — Landing Page
   Palette: charcoal/black + gold + white
   ============================================================ */

:root {
  --black: #0a0a0b;
  --charcoal: #131316;
  --charcoal-2: #1a1a1e;
  --line: rgba(255, 255, 255, 0.08);
  --white: #f4f2ee;
  --grey: #999999;
  --grey-dim: #6b6862;
  --gold: #c8a24a;
  --gold-bright: #e2c477;
  --gold-soft: rgba(200, 162, 74, 0.14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --display: "Oswald", "Inter", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.gold { color: var(--gold); }

/* ---------- Shared typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow--center { text-align: center; display: block; }

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-top: 18px;
}

.section-head { text-align: center; margin-bottom: 64px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  box-shadow: 0 8px 30px rgba(200, 162, 74, 0.22);
  border-color: transparent;
}
.btn--gold:hover {
  background: #ffffff;
  color: #1a1408;
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(200, 162, 74, 0.45);
  filter: none;
}
.btn--gold:active {
  transform: translateY(0);
  background: var(--gold-bright);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--nav {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 0.22em;
  border: 1px solid rgba(226, 196, 119, 0.7);
}

.btn--lg { padding: 17px 38px; font-size: 13px; }
.btn--xl { padding: 22px 56px; font-size: 15px; letter-spacing: 0.2em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 15px;
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.nav__brand:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(200, 162, 74, 0.4);
}
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
}
.nav__links a:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(200, 162, 74, 0.45);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.72) 0%, rgba(10,10,11,0.25) 35%, rgba(10,10,11,0.55) 75%, rgba(10,10,11,0.96) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.7) 0%, rgba(10,10,11,0.05) 60%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px 28px 80px;
  width: 100%;
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.4rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 20px 0 0;
  text-transform: uppercase;
}
.hero__title-sub {
  display: block;
  font-weight: 300;
  color: var(--gold);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.14em;
  font-size: 0.5em;
  margin-top: 8px;
}

.hero__tagline {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  color: #999999;
  margin-top: 28px;
  max-width: 640px;
  line-height: 1.45;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__meta {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__meta .dot { color: var(--gold); }

/* ---- On-load hero text reveal (fast + smooth) ---- */
@keyframes heroReveal {
  from { opacity: 0; transform: translate3d(0, 26px, 0); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero__content > .eyebrow,
.hero__title,
.hero__tagline,
.hero__cta,
.hero__meta {
  opacity: 0;
  animation: heroReveal 0.6s var(--ease) both;
}
.hero__content > .eyebrow { animation-delay: 0.05s; }
.hero__title             { animation-delay: 0.14s; }
.hero__tagline           { animation-delay: 0.26s; }
.hero__cta               { animation-delay: 0.36s; }
.hero__meta              { animation-delay: 0.46s; }

.anno {
  opacity: 0;
  animation: heroReveal 0.5s var(--ease) both;
  animation-delay: 0.6s;
}

/* Thin editorial annotations (desktop only) */
.hero__annotations { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.anno {
  position: absolute;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.anno::before {
  content: "";
  position: absolute;
  left: -34px; top: 50%;
  width: 26px; height: 1px;
  background: rgba(255,255,255,0.35);
}
.anno--1 { top: 26%; right: 12%; }
.anno--2 { top: 46%; right: 8%; }
.anno--3 { top: 66%; right: 14%; }
@media (max-width: 900px) { .hero__annotations { display: none; } }

/* ============================================================
   HOOK
   ============================================================ */
.hook {
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--black);
  text-align: center;
}
.hook__label {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}
.hook__headline {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 26px auto 30px;
  max-width: 900px;
  letter-spacing: 0.01em;
}
.hook__body {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: #999999;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   SCIENCE
   ============================================================ */
.science {
  padding: clamp(70px, 10vw, 130px) 0;
  background: linear-gradient(180deg, var(--black), var(--charcoal));
  border-top: 1px solid var(--line);
}
.science__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 40px 34px 38px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 74, 0.4);
  background: #1d1d22;
}
.card:hover::after { transform: scaleX(1); }

.card__num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.card__title {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.card__sub {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 6px 0 18px;
  font-weight: 500;
}
.card__body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: #999999;
  line-height: 1.62;
}

.card--quote {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  background: radial-gradient(140% 140% at 0% 0%, rgba(200,162,74,0.1), transparent 60%), var(--charcoal-2);
  border-color: rgba(200, 162, 74, 0.25);
}
.card__quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--white);
}

/* ============================================================
   BOOK SHOWCASE
   ============================================================ */
.book {
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--line);
}
.book__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.book__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2600px;
  perspective-origin: 52% 42%;
  min-height: 580px;
}
.book__glow {
  position: absolute;
  inset: -6% -6% -14%;
  background: radial-gradient(circle at 50% 45%, rgba(200,162,74,0.20), transparent 62%);
  filter: blur(26px);
}

/* ---- Realistic 3D hardcover ---- */
.book-3d {
  position: relative;
  transform-style: preserve-3d;
  animation: bookFloat 6s ease-in-out infinite;
}
.book-3d__box {
  --bw: 340px;   /* cover width  */
  --bh: 530px;   /* cover height */
  --bd: 48px;    /* thickness    */
  position: relative;
  width: var(--bw);
  height: var(--bh);
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-33deg);
  transition: transform 0.9s var(--ease);
}
.book-3d:hover .book-3d__box {
  transform: rotateX(3deg) rotateY(-19deg);
}

.bookface {
  position: absolute;
  top: 50%;
  left: 50%;
  backface-visibility: hidden;
}

/* Front cover + back cover */
.bookface--front,
.bookface--back {
  width: var(--bw);
  height: var(--bh);
  border-radius: 2px 7px 7px 2px;
  overflow: hidden;
}
.bookface--front {
  transform: translate(-50%, -50%) translateZ(calc(var(--bd) / 2));
  background: #0b0b0d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.bookface--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Lighting on the cover: highlight near spine, shadow on outer edge */
.bookface__gloss {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 20%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.bookface--back {
  transform: translate(-50%, -50%) translateZ(calc(var(--bd) / -2)) rotateY(180deg);
  background: linear-gradient(180deg, #141417, #08080a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Spine (left) */
.bookface--spine {
  width: var(--bd);
  height: var(--bh);
  border-radius: 4px 0 0 4px;
  transform: translate(-50%, -50%) translateX(calc(var(--bw) / -2)) rotateY(-90deg);
  background:
    linear-gradient(90deg, #050506 0%, #18181c 42%, #2c2c33 52%, #111114 78%, #060608 100%);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.55);
}

/* Fore-edge: stacked pages (right) */
.bookface--edge {
  width: var(--bd);
  height: var(--bh);
  transform: translate(-50%, -50%) translateX(calc(var(--bw) / 2)) rotateY(90deg);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0) 34%),
    repeating-linear-gradient(to right,
      #f1ebdb 0, #f1ebdb 1px,
      #cec4a8 1px, #cec4a8 2.5px);
}

/* Top & bottom page stacks */
.bookface--top,
.bookface--bottom {
  width: var(--bw);
  height: var(--bd);
  background:
    repeating-linear-gradient(to right,
      #f3eddd 0, #f3eddd 1px,
      #d4cbb0 1px, #d4cbb0 2.5px);
}
.bookface--top {
  transform: translate(-50%, -50%) translateY(calc(var(--bh) / -2)) rotateX(90deg);
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.16);
}
.bookface--bottom {
  transform: translate(-50%, -50%) translateY(calc(var(--bh) / 2)) rotateX(-90deg);
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.28);
}

/* Soft contact shadow on the ground */
.book-3d__floor {
  position: absolute;
  z-index: -1;
  bottom: 46px;
  left: 50%;
  width: 62%;
  height: 50px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 70%);
  filter: blur(18px);
}

@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.book__lead {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: #999999;
  margin: 24px 0 30px;
  line-height: 1.6;
}
.check-list { list-style: none; margin: 0 0 36px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   INSIDE / FULL BLEED
   ============================================================ */
.inside {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inside__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.inside__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,0.94) 10%, rgba(10,10,11,0.55) 60%, rgba(10,10,11,0.85) 100%);
}
.inside__content { position: relative; z-index: 2; padding: 90px 28px; }
.inside__headline {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.inside__body {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: #999999;
  max-width: 540px;
  margin: 24px 0 36px;
  line-height: 1.6;
}

/* ============================================================
   BUY / FINAL CTA
   ============================================================ */
.buy {
  padding: clamp(90px, 13vw, 170px) 0;
  background: radial-gradient(120% 120% at 50% 0%, rgba(200,162,74,0.08), transparent 55%), var(--black);
  border-top: 1px solid var(--line);
}
.buy__inner { text-align: center; max-width: 720px; }
.buy__title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.02;
  margin: 18px 0 24px;
}
.buy__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.buy__amount {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 5rem);
  color: var(--gold);
  line-height: 1;
}
.buy__was {
  font-size: 1.6rem;
  color: var(--grey-dim);
  text-decoration: line-through;
}
.buy__tagline {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 400;
  color: #999999;
  margin-bottom: 40px;
  line-height: 1.55;
}
.buy__trust {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dim);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.buy__trust .dot { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 50px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__brand {
  font-family: var(--display);
  letter-spacing: 0.3em;
  font-size: 14px;
  color: var(--white);
}
.footer__copy {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey-dim);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  display: none;
  text-align: center;
  padding: 17px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.sticky-cta:hover {
  background: #ffffff;
  border-color: var(--gold-bright);
  box-shadow: 0 14px 44px rgba(200, 162, 74, 0.45);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .science__grid { grid-template-columns: repeat(2, 1fr); }
  .book__grid { grid-template-columns: 1fr; text-align: center; }
  .book__copy { display: flex; flex-direction: column; align-items: center; }
  .check-list { text-align: left; }
  .book__visual { min-height: 480px; }
  .book-3d__box { --bw: 270px; --bh: 420px; --bd: 40px; transform: rotateX(5deg) rotateY(-26deg); }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__inner { padding: 14px 20px; }
  .btn--nav {
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero__content { padding: 120px 22px 120px; }
  .hero__cta .btn--ghost { display: none; }
  .science__grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .buy { padding-bottom: 120px; }
  .footer__inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero__meta { gap: 10px; font-size: 10px; }
  .btn--xl { padding: 18px 32px; font-size: 13px; }
  .book__visual { min-height: 420px; }
  .book-3d__box { --bw: 230px; --bh: 358px; --bd: 34px; }
}

.checkout-banner {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 120;
  max-width: min(92vw, 520px);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  border: 1px solid var(--line);
  background: rgba(19, 19, 22, 0.94);
  backdrop-filter: blur(10px);
}
.checkout-banner.in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.checkout-banner--success {
  border-color: rgba(200, 162, 74, 0.45);
  color: var(--white);
}
.checkout-banner--cancel {
  color: var(--grey);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__content > .eyebrow,
  .hero__title,
  .hero__tagline,
  .hero__cta,
  .hero__meta,
  .anno { opacity: 1; transform: none; filter: none; }
}
