/* ============================================================
   calibrí — warm/hybrid design system
   Structure inspired by an airy minimal health-tech layout,
   skinned with the brand's earthy palette (ivory / espresso / olive).
   ============================================================ */

:root {
  /* Palette — hybrid warm */
  --bg:          #F2EEE4; /* warm ivory canvas */
  --surface:     #FBF9F3; /* lighter card surface */
  --surface-2:   #EAE3D3; /* soft panel (logo light tone) */
  --ink:         #26221C; /* espresso text */
  --ink-soft:    #5F594C; /* muted body */
  --ink-faint:   #8A836F; /* captions */
  --olive:       #4E5A3A; /* accent */
  --olive-deep:  #394230;
  --olive-soft:  #E7EADD; /* olive tint bg */
  --line:        #E2DACA; /* hairline borders */
  --pill-bg:     #26221C; /* dark CTA */
  --pill-ink:    #F4F0E6; /* CTA text */
  --star:        #D9A23B; /* warm gold */
  --error:       #B4462F;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-pill: 9999px;

  /* Spacing rhythm */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 80px;
  --sp-xl: 124px;

  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

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

/* ---------- Typography ---------- */
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }

.display {
  font-size: clamp(42px, 4.9vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.display em { color: var(--olive); font-style: normal; }
.h-lg { font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -0.02em; }
.h-md { font-size: clamp(24px, 3vw, 38px); line-height: 1.15; letter-spacing: -0.02em; }
.h-sm { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.25; letter-spacing: -0.01em; }

.lead { font-size: clamp(18px, 2.1vw, 22px); line-height: 1.5; color: var(--ink-soft); }
.body { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--olive);
}
.muted { color: var(--ink-faint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: 16px; font-weight: 600;
  border-radius: var(--r-pill); border: 1px solid transparent;
  padding: 13px 24px; min-height: 48px; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pill-bg); color: var(--pill-ink); }
.btn-primary:hover { background: #35302700; background: #33302a; box-shadow: 0 8px 24px -12px rgba(38,34,28,.6); }
.btn-olive { background: var(--olive); color: #F4F0E6; }
.btn-olive:hover { background: var(--olive-deep); box-shadow: 0 8px 24px -12px rgba(57,66,48,.6); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: rgba(38,34,28,.05); }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 9px 18px; font-size: 15px; }

.link-underline { color: var(--olive); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }

/* ---------- Nav ---------- */
.nav-outer { position: sticky; top: 0; z-index: 50; padding: 14px 0; }
.nav {
  display: flex; align-items: center; gap: 20px;
  background: rgba(251,249,243,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 12px 10px 20px;
  box-shadow: 0 6px 24px -18px rgba(38,34,28,.45);
}
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav .btn { margin-left: 8px; }
.lang-switch {
  display: inline-grid; place-items: center; flex: 0 0 auto;
  width: 36px; height: 36px; margin-left: 2px;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--ink-soft); background: rgba(255,255,255,.45);
  text-decoration: none; font-size: 12px; font-weight: 750; letter-spacing: .05em;
}
.lang-switch:hover { color: var(--ink); border-color: #C9C0AF; }

/* Official black wordmark for the site's light surfaces. */
.wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.wordmark-image {
  width: 132px;
  height: auto;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(34px, 4.5vw, 58px) 0 clamp(68px, 8vw, 112px); }
.hero-bands {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  filter: blur(70px); opacity: .55; pointer-events: none;
  background:
    radial-gradient(38% 60% at 22% 30%, rgba(120,145,90,.55), transparent 70%),
    radial-gradient(34% 55% at 55% 20%, rgba(217,162,59,.40), transparent 70%),
    radial-gradient(40% 60% at 80% 40%, rgba(150,170,200,.42), transparent 70%),
    radial-gradient(36% 50% at 65% 65%, rgba(211,150,120,.38), transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: clamp(44px, 6vw, 80px); align-items: center; }
.hero-copy { text-align: left; }
.hero .lead { max-width: 650px; margin: 24px 0 0; }
.hero-cta { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; margin-top: 32px; }
.trial-note { margin-top: 16px; font-size: 14px; color: var(--ink-faint); }
.trial-note strong { color: var(--ink-soft); font-weight: 600; }

.hero-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge-tg {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--olive-soft); color: var(--olive-deep);
  border: 1px solid #D5DAC5; border-radius: var(--r-pill);
  padding: 6px 14px; font-size: 13px; font-weight: 600;
}
.badge-tagline { background: rgba(251,249,243,.72); color: var(--ink-soft); border-color: var(--line); }

/* product proof */
.proof { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; color: var(--ink-faint); font-size: 13.5px; }
.proof i { width: 4px; height: 4px; border-radius: 50%; background: var(--olive); opacity: .55; }

.hero-demo { position: relative; min-height: 560px; isolation: isolate; }
.meal-photo { position: absolute; inset: 22px 0 88px 40px; margin: 0; border-radius: 36px; overflow: hidden; border: 8px solid rgba(251,249,243,.95); box-shadow: 0 34px 80px -28px rgba(38,34,28,.5); transform: rotate(2deg); }
.meal-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(38,34,28,.08); border-radius: 28px; pointer-events: none; }
.meal-photo img { width: 100%; height: 100%; object-fit: cover; }
.meal-photo figcaption { position: absolute; left: 18px; top: 18px; display: flex; align-items: center; gap: 9px; background: rgba(251,249,243,.92); backdrop-filter: blur(10px); border-radius: var(--r-pill); padding: 8px 13px; font-size: 12px; font-weight: 650; }
.meal-photo figcaption .demo-wordmark { width: 56px; height: auto; object-fit: contain; }
.meal-photo figcaption span { padding-left: 9px; border-left: 1px solid var(--line); }
.scan-pill { position: absolute; z-index: 3; top: 0; right: -12px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 16px 40px -22px rgba(38,34,28,.55); border-radius: var(--r-pill); padding: 11px 16px; font-size: 13px; font-weight: 650; }
.scan-pill span { display: inline-block; width: 8px; height: 8px; background: #5E8B4A; border-radius: 50%; margin-right: 7px; box-shadow: 0 0 0 4px rgba(94,139,74,.14); }
.result-card { position: absolute; z-index: 4; left: 0; right: 28px; bottom: 0; background: rgba(251,249,243,.96); backdrop-filter: blur(18px); border: 1px solid rgba(226,218,202,.95); border-radius: 24px; padding: 20px; box-shadow: 0 28px 70px -30px rgba(38,34,28,.65); }
.result-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 14px; }
.result-top span { color: var(--ink-faint); font-size: 12px; }
.result-card > p { margin: 5px 0 14px; color: var(--ink-soft); font-size: 13.5px; }
.result-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.result-metrics b { font-size: 17px; letter-spacing: -.02em; }
.result-metrics small { display: block; font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.next-step { margin-top: 14px; background: var(--olive-soft); color: var(--olive-deep); border-radius: 12px; padding: 10px 12px; font-size: 12.5px; font-weight: 600; }
.next-step span { display: inline-grid; place-items: center; width: 20px; height: 20px; background: var(--olive); color: white; border-radius: 50%; margin-right: 5px; }

/* ---------- Sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head .lead { margin-top: 16px; }

/* Feature / step grids */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 26px;
}
.card h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.card .ic {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--olive-soft); color: var(--olive-deep); margin-bottom: 16px; font-size: 20px;
}
.benefit-card { padding: 30px; }
.benefit-card .ic { width: auto; height: auto; display: block; background: none; border-radius: 0; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.calibration-note { display: flex; align-items: center; gap: 18px; max-width: 680px; margin: 28px auto 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--ink-soft); font-size: 14px; }
.calibration-note strong { color: var(--olive); font-size: 20px; white-space: nowrap; }

/* Steps (numbered) */
.step .num {
  width: 34px; height: 34px; border-radius: var(--r-pill); background: var(--pill-bg);
  color: var(--pill-ink); display: grid; place-items: center; font-weight: 600; font-size: 15px; margin-bottom: 16px;
}

/* Chips (what is tracked) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 820px; margin: 0 auto; }
.chip {
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: var(--r-pill); padding: 9px 16px; font-size: 15px; font-weight: 500;
}
.chip.on { background: var(--olive-soft); color: var(--olive-deep); border-color: #D5DAC5; }

/* Score cards */
.score { position: relative; overflow: hidden; }
.score .ranks { display: flex; gap: 6px; margin: 18px 0 6px; }
.rank {
  min-width: 30px; text-align: center; font-weight: 700; font-size: 13px;
  border-radius: 8px; padding: 5px 0; background: var(--surface-2); color: var(--ink-soft);
}
.rank.s { background: var(--olive); color: #F4F0E6; }
.comp { list-style: none; padding: 0; margin: 14px 0 0; }
.comp li { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.comp li span:last-child { color: var(--olive-deep); font-weight: 600; }

/* Feature split (how it works detail) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.chat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px; box-shadow: 0 24px 60px -40px rgba(38,34,28,.5);
}
.chat-head { display: flex; align-items: center; gap: 10px; padding: 5px 4px 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.chat-wordmark { width: 82px; height: auto; }
.chat-status { display: inline-flex; align-items: center; gap: 5px; margin-left: auto; color: var(--olive); font-size: 11px; font-weight: 600; }
.chat-status i { width: 7px; height: 7px; border-radius: 50%; background: #6E995C; box-shadow: 0 0 0 3px rgba(110,153,92,.13); }
.bubble { border-radius: 16px; padding: 12px 15px; margin: 8px 0; font-size: 14.5px; line-height: 1.45; max-width: 88%; }
.bubble.me { background: var(--olive); color: #F4F0E6; margin-left: auto; border-bottom-right-radius: 5px; }
.bubble.bot { background: var(--surface-2); color: var(--ink); border-bottom-left-radius: 5px; }
.bubble.bot .k { color: var(--olive-deep); font-weight: 600; }
.photo-bubble { padding: 4px; overflow: hidden; }
.photo-bubble img { width: 100%; height: 190px; object-fit: cover; border-radius: 12px; }
.photo-bubble span { display: block; padding: 8px 10px 7px; }
.chat-scores { display: flex; gap: 8px; margin-top: 10px; }
.chat-scores span { background: var(--surface); border-radius: var(--r-pill); padding: 6px 10px; font-size: 12px; }
.chat-scores b { color: var(--olive); }
.chat-advice { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(38,34,28,.1); font-weight: 600; }

/* ---------- Real meal proof ---------- */
.meal-proof { background: #25251F; color: #F6F2E8; overflow: hidden; }
.meal-proof .eyebrow { color: #B9C8A3; }
.meal-proof-copy { display: grid; grid-template-columns: .75fr 1.2fr 1fr; gap: 34px; align-items: end; margin-bottom: 38px; }
.meal-proof-copy .body { color: #C9C5BA; margin: 0; }
.food-cards { display: grid; grid-template-columns: 1.15fr 1fr .72fr; gap: 18px; min-height: 430px; }
.food-card { position: relative; overflow: hidden; border-radius: 24px; margin: 0; min-height: 370px; background: #3B3A31; }
.food-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.food-card:hover img { transform: scale(1.025); }
.food-card-wide img { object-position: 50% 62%; }
.food-card figcaption { position: absolute; inset: auto 14px 14px; display: flex; flex-direction: column; background: rgba(24,24,20,.78); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; padding: 12px 14px; }
.food-card figcaption strong { font-size: 14px; }
.food-card figcaption span { color: #D0CCC0; font-size: 12px; margin-top: 2px; }
.food-insight { align-self: end; background: #DDE6CF; color: #31402C; border-radius: 24px; padding: 26px; }
.food-insight .eyebrow { color: #506547; }
.food-insight p { margin: 10px 0 0; line-height: 1.55; font-size: 15px; }
.photo-credit { margin: 18px 0 0; color: #8E8A80; font-size: 11px; }
.photo-credit a { color: #B9B5AA; text-underline-offset: 2px; }

/* ---------- Pricing ---------- */
.toggle { display: inline-flex; background: var(--surface-2); border-radius: var(--r-pill); padding: 5px; gap: 4px; margin: 0 auto 40px; }
.toggle button {
  border: 0; background: transparent; font-family: var(--font); font-weight: 600; font-size: 14.5px;
  color: var(--ink-soft); padding: 9px 20px; border-radius: var(--r-pill); cursor: pointer;
}
.toggle button.active { background: var(--surface); color: var(--ink); box-shadow: 0 2px 8px -4px rgba(38,34,28,.3); }
.toggle .save { color: var(--olive); font-weight: 700; margin-left: 6px; font-size: 12.5px; }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; max-width: 760px; margin: 0 auto; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; display: flex; flex-direction: column;
}
.plan.featured { border-color: var(--olive); box-shadow: 0 24px 60px -44px rgba(57,66,48,.7); }
.plan .tier { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.plan .amount { font-size: 46px; font-weight: 600; letter-spacing: -0.03em; }
.plan .per { color: var(--ink-faint); font-size: 15px; }
.plan .billed { font-size: 13.5px; color: var(--ink-faint); min-height: 20px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 26px; }
.plan li { display: flex; gap: 10px; padding: 7px 0; font-size: 15px; color: var(--ink-soft); }
.plan li::before { content: "✓"; color: var(--olive); font-weight: 800; }
.plan .btn { margin-top: auto; }
.plan .disclose { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); text-align: center; line-height: 1.5; }

/* ---------- Science / list ---------- */
.sci { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sci .card p { font-size: 15px; }
.sci a { color: var(--olive); }
.confidence { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-pill); margin-bottom: 12px; }
.c-high { background: var(--olive-soft); color: var(--olive-deep); }
.c-mid  { background: #F3ECD8; color: #7A5E1E; }
.c-dev  { background: #EFE2DA; color: #8A4E32; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--olive); color: #F4F0E6; border-radius: var(--r-lg); padding: clamp(40px,6vw,64px); text-align: center; }
.cta-band h2 { color: #F8F5EC; }
.cta-band .lead { color: #DCE0CF; margin: 14px auto 0; max-width: 560px; }
.cta-band .btn-primary { background: #26221C; }
.cta-band .trial-note { color: #C6CCB4; }

/* ---------- Disclaimer callout ---------- */
.notice {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--olive);
  border-radius: var(--r-md); padding: 18px 22px; font-size: 14.5px; color: var(--ink-soft);
  max-width: 820px; margin: 0 auto;
}

/* placeholder marker for edit-me values */
.ph { border-bottom: 1px dashed #C0A24E; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin: 0 0 14px; font-weight: 700; }
.foot-grid a { display: block; text-decoration: none; color: var(--ink-soft); font-size: 14.5px; padding: 5px 0; }
.foot-grid a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-faint); }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 0 20px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 8px; letter-spacing: -0.02em; }
.legal .updated { color: var(--ink-faint); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 22px; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.legal ul, .legal ol { padding-left: 22px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--olive); }
.back { display: inline-flex; gap: 6px; align-items: center; color: var(--olive); text-decoration: none; font-weight: 600; font-size: 14.5px; margin: 24px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4, .sci { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-badges { justify-content: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .proof { justify-content: center; }
  .hero-demo { width: min(100%, 590px); margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .meal-proof-copy { grid-template-columns: 1fr 1fr; align-items: start; }
  .meal-proof-copy .eyebrow { grid-column: 1 / -1; }
  .food-cards { grid-template-columns: 1fr 1fr; }
  .food-insight { grid-column: 1 / -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav { padding-left: 16px; }
  .nav .btn { font-size: 13px; padding: 8px 13px; margin-left: auto; }
  .lang-switch { width: 32px; height: 32px; margin-left: 0; }
  .wordmark-image { width: 102px; }
  .grid-3, .grid-4, .grid-2, .sci, .plans { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-demo { min-height: 490px; }
  .meal-photo { inset: 28px 0 100px 14px; }
  .scan-pill { top: 4px; right: 0; }
  .result-card { right: 8px; padding: 17px; }
  .result-metrics b { font-size: 15px; }
  .proof { gap: 7px; }
  .proof i { display: none; }
  .proof span { width: 100%; }
  .calibration-note { border-radius: var(--r-md); align-items: flex-start; }
  .meal-proof-copy, .food-cards { grid-template-columns: 1fr; }
  .meal-proof-copy { gap: 16px; }
  .food-insight { grid-column: auto; }
  .food-card { min-height: 340px; }
  .food-card-wide { min-height: 420px; }
  .photo-bubble img { height: 160px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
