/*
Theme Name: PewPad
Theme URI: https://pewpad.com
Author: Pews & Pixels
Author URI: https://pewsandpixels.com
Description: Marketing site for PewPad — a sermon notes app for ordinary church members. A small Christian software studio production.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pewpad
Tags: one-column, custom-menu
*/

/* ---------------------------------------------------
   PewPad — Design Tokens
   --------------------------------------------------- */
:root {
  /* Surfaces */
  --pp-bg:           #F5F0E8;   /* cream — matches wordmark BG */
  --pp-bg-alt:       #EFE7DA;   /* slightly deeper cream for bands */
  --pp-surface:      #FFFFFF;   /* card surfaces */
  --pp-surface-soft: #FAF6EF;   /* very subtle elevated card */

  /* Brand */
  --pp-brown-900:    #3B2D22;   /* deepest brown — body */
  --pp-brown-800:    #5A3E2B;   /* notepad cover brown — headlines */
  --pp-brown-600:    #856349;   /* muted brown */
  --pp-brown-400:    #B89C82;   /* hairlines */
  --pp-brown-200:    #DCCDB9;   /* dividers */

  --pp-gold-400:     #D8B97F;   /* light brass */
  --pp-gold-500:     #C9A668;   /* primary gold (matches app gold-500) */
  --pp-gold-600:     #A88A4A;   /* deepened gold for hover */

  /* Text */
  --pp-text:         #3B2D22;
  --pp-text-soft:    #6B5C4D;
  --pp-text-mute:    #8A7B6B;

  /* Type */
  --pp-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pp-font-serif: 'Lora', Georgia, 'Times New Roman', serif;

  /* Layout */
  --pp-max-w:       1100px;
  --pp-pad:         clamp(20px, 4vw, 36px);
  --pp-radius:      14px;
  --pp-radius-lg:   22px;

  /* Motion */
  --pp-ease: cubic-bezier(.2,.8,.2,1);
}

/* ---------------------------------------------------
   Reset + base
   --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--pp-font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pp-text);
  background: var(--pp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--pp-brown-800);
  text-decoration: underline;
  text-decoration-color: var(--pp-gold-500);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color .2s var(--pp-ease);
}
a:hover { color: var(--pp-gold-600); }

h1, h2, h3, h4 {
  font-family: var(--pp-font-serif);
  color: var(--pp-brown-800);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 .4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

.pp-container {
  max-width: var(--pp-max-w);
  margin: 0 auto;
  padding-left: var(--pp-pad);
  padding-right: var(--pp-pad);
}

.pp-eyebrow {
  font-family: var(--pp-font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--pp-gold-600);
  font-weight: 600;
  margin: 0 0 14px;
}

.pp-rule {
  width: 56px;
  height: 1px;
  background: var(--pp-gold-500);
  margin: 24px auto 28px;
  border: 0;
}

/* ---------------------------------------------------
   Header
   --------------------------------------------------- */
.pp-header {
  padding: 22px 0;
  background: var(--pp-bg);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 240, 232, 0.86);
  border-bottom: 1px solid rgba(184, 156, 130, 0.18);
}

.pp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pp-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pp-brown-900);
  font-family: var(--pp-font-sans);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 17px;
}
.pp-brand:hover { color: var(--pp-brown-900); }
.pp-brand__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
}
.pp-brand__name { display: inline-block; }
.pp-brand__name span { color: var(--pp-gold-600); }

.pp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pp-nav a {
  font-size: 15px;
  text-decoration: none;
  color: var(--pp-text-soft);
  font-weight: 500;
}
.pp-nav a:hover { color: var(--pp-brown-800); }

@media (max-width: 640px) {
  .pp-nav { gap: 18px; }
  .pp-nav a:not(.pp-nav__cta) { display: none; }
}

.pp-nav__cta {
  background: var(--pp-brown-800);
  color: var(--pp-bg) !important;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 14px;
  transition: background .2s var(--pp-ease), transform .2s var(--pp-ease);
}
.pp-nav__cta:hover {
  background: var(--pp-brown-900) !important;
  color: var(--pp-bg) !important;
  transform: translateY(-1px);
}

/* ---------------------------------------------------
   Hero
   --------------------------------------------------- */
.pp-hero {
  padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216, 185, 127, 0.22), rgba(216, 185, 127, 0));
  pointer-events: none;
  z-index: 0;
}

.pp-hero__inner { position: relative; z-index: 1; }

.pp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(201, 166, 104, 0.12);
  border: 1px solid rgba(201, 166, 104, 0.4);
  border-radius: 999px;
  color: var(--pp-gold-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 26px;
}
.pp-hero__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pp-gold-500);
  box-shadow: 0 0 0 3px rgba(201, 166, 104, 0.25);
}

.pp-hero__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 22px;
  display: block;
}

.pp-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin: 0 auto 18px;
  max-width: 14ch;
}
.pp-hero h1 em {
  font-style: italic;
  color: var(--pp-gold-600);
}

.pp-hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--pp-text-soft);
  max-width: 60ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.pp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s var(--pp-ease), box-shadow .2s var(--pp-ease), background .2s var(--pp-ease);
  border: 1px solid transparent;
}
.pp-btn--primary {
  background: var(--pp-brown-800);
  color: var(--pp-bg) !important;
  box-shadow: 0 8px 22px -8px rgba(59, 45, 34, 0.35);
}
.pp-btn--primary:hover {
  background: var(--pp-brown-900);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(59, 45, 34, 0.45);
}
.pp-btn--ghost {
  background: transparent;
  color: var(--pp-brown-800) !important;
  border-color: var(--pp-brown-400);
}
.pp-btn--ghost:hover {
  border-color: var(--pp-brown-800);
  background: rgba(184, 156, 130, 0.12);
}

/* Platform badges (under CTA) */
.pp-platforms {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--pp-text-mute);
  letter-spacing: .04em;
}
.pp-platforms__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--pp-brown-200);
  border-radius: 999px;
  background: var(--pp-surface-soft);
}
.pp-platforms__dot {
  width: 6px;
  height: 6px;
  background: var(--pp-gold-500);
  border-radius: 50%;
}

/* ---------------------------------------------------
   Section: pitch
   --------------------------------------------------- */
.pp-section {
  padding: clamp(64px, 9vw, 110px) 0;
}
.pp-section--alt {
  background: var(--pp-bg-alt);
  border-top: 1px solid rgba(184, 156, 130, 0.18);
  border-bottom: 1px solid rgba(184, 156, 130, 0.18);
}

.pp-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.pp-section__head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.pp-section__head p {
  margin-top: 16px;
  color: var(--pp-text-soft);
  font-size: 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* Scripture quote block */
.pp-scripture {
  text-align: center;
  margin: 0 auto;
  max-width: 56ch;
  padding: 30px 0;
}
.pp-scripture blockquote {
  font-family: var(--pp-font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--pp-brown-800);
  line-height: 1.45;
  margin: 0 0 14px;
  position: relative;
}
.pp-scripture blockquote::before {
  content: "\201C";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 64px;
  color: var(--pp-gold-500);
  line-height: 1;
  opacity: .6;
}
.pp-scripture cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pp-text-mute);
}

/* ---------------------------------------------------
   Features grid
   --------------------------------------------------- */
.pp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.pp-feature {
  background: var(--pp-surface);
  border: 1px solid var(--pp-brown-200);
  border-radius: var(--pp-radius);
  padding: 30px 26px;
  transition: transform .25s var(--pp-ease), border-color .25s var(--pp-ease), box-shadow .25s var(--pp-ease);
}
.pp-feature:hover {
  transform: translateY(-3px);
  border-color: var(--pp-gold-500);
  box-shadow: 0 14px 32px -16px rgba(59, 45, 34, 0.2);
}
.pp-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 166, 104, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--pp-gold-600);
  font-family: var(--pp-font-serif);
  font-size: 22px;
  font-weight: 700;
}
.pp-feature h3 {
  font-size: 19px;
  margin: 0 0 8px;
  font-family: var(--pp-font-sans);
  font-weight: 600;
  color: var(--pp-brown-800);
  letter-spacing: -.005em;
}
.pp-feature p {
  margin: 0;
  font-size: 15px;
  color: var(--pp-text-soft);
  line-height: 1.55;
}

/* ---------------------------------------------------
   Pitch / Why two-col
   --------------------------------------------------- */
.pp-pitch {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .pp-pitch { grid-template-columns: 1fr; gap: 36px; }
}
.pp-pitch__copy h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
  max-width: 18ch;
}
.pp-pitch__copy p {
  color: var(--pp-text-soft);
  font-size: 17px;
}

/* CSS phone mockup */
.pp-phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 18;
  margin: 0 auto;
  background: #0E1322;     /* graphite-900 to match the app */
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 28px 60px -22px rgba(59, 45, 34, 0.4),
    0 8px 18px -8px rgba(59, 45, 34, 0.3),
    inset 0 0 0 2px rgba(216, 185, 127, 0.18);
}
.pp-phone::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #060912;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.pp-phone__screen {
  width: 100%;
  height: 100%;
  background: #0E1322;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  padding: 44px 18px 22px;
  font-family: var(--pp-font-sans);
}
.pp-phone__title {
  color: #F5F0E8;
  font-family: var(--pp-font-serif);
  font-size: 18px;
  margin: 0 0 4px;
  font-weight: 600;
}
.pp-phone__meta {
  color: #B8B3A8;
  font-size: 11px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.pp-phone__keypoint {
  background: rgba(201, 166, 104, 0.08);
  border-left: 3px solid #C9A668;
  border-radius: 6px;
  padding: 10px 12px;
  color: #F5F0E8;
  font-family: var(--pp-font-serif);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.pp-phone__line {
  height: 8px;
  background: rgba(245, 240, 232, 0.12);
  border-radius: 4px;
  margin-bottom: 8px;
}
.pp-phone__line.pp-phone__line--short { width: 65%; }
.pp-phone__line.pp-phone__line--mid { width: 84%; }
.pp-phone__scripture {
  background: rgba(143, 177, 217, 0.08);
  border-left: 3px solid #8FB1D9;
  padding: 8px 10px;
  border-radius: 6px;
  margin: 12px 0;
}
.pp-phone__scripture-ref {
  color: #C9A668;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 3px;
}
.pp-phone__scripture-body {
  color: #EDE8DF;
  font-family: var(--pp-font-serif);
  font-size: 11px;
  font-style: italic;
  line-height: 1.4;
}
.pp-phone__tags {
  position: absolute;
  bottom: 14px;
  left: 18px;
  right: 18px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.pp-phone__tag {
  background: rgba(201, 166, 104, 0.18);
  color: #D8B97F;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}

/* ---------------------------------------------------
   Coming-soon stripe
   --------------------------------------------------- */
.pp-soon {
  text-align: center;
}
.pp-soon h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.pp-soon p {
  color: var(--pp-text-soft);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto 30px;
}
.pp-soon__stores {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pp-soon__store {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-brown-200);
  border-radius: 14px;
  padding: 14px 22px;
  font-family: var(--pp-font-sans);
  text-align: left;
  min-width: 180px;
  color: var(--pp-text);
}
.pp-soon__store-icon {
  font-size: 28px;
  color: var(--pp-brown-800);
}
.pp-soon__store-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pp-text-mute);
  margin-bottom: 2px;
}
.pp-soon__store-name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--pp-brown-800);
}

/* ---------------------------------------------------
   Studio link card
   --------------------------------------------------- */
.pp-studio {
  background: var(--pp-surface-soft);
  border: 1px solid var(--pp-brown-200);
  border-radius: var(--pp-radius-lg);
  padding: clamp(28px, 5vw, 50px);
  text-align: center;
  position: relative;
}
.pp-studio__eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pp-gold-600);
  margin-bottom: 14px;
  font-weight: 600;
}
.pp-studio h2 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: 22ch;
  margin: 0 auto 12px;
}
.pp-studio p {
  color: var(--pp-text-soft);
  max-width: 50ch;
  margin: 0 auto 26px;
  font-size: 16px;
}

/* ---------------------------------------------------
   Footer
   --------------------------------------------------- */
.pp-footer {
  padding: 60px 0 40px;
  background: var(--pp-bg);
  border-top: 1px solid rgba(184, 156, 130, 0.25);
  font-size: 14px;
  color: var(--pp-text-mute);
}
.pp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 38px;
}
@media (max-width: 720px) {
  .pp-footer__top { grid-template-columns: 1fr; gap: 28px; }
}
.pp-footer h4 {
  font-family: var(--pp-font-sans);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pp-brown-800);
  margin: 0 0 14px;
  font-weight: 600;
}
.pp-footer ul { list-style: none; padding: 0; margin: 0; }
.pp-footer li { margin-bottom: 8px; }
.pp-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pp-footer__brand img { width: 36px; height: 36px; border-radius: 8px; }
.pp-footer__brand strong {
  font-family: var(--pp-font-sans);
  color: var(--pp-brown-900);
  letter-spacing: .04em;
  font-weight: 600;
}
.pp-footer__brand strong span { color: var(--pp-gold-600); }

.pp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(184, 156, 130, 0.2);
  font-size: 13px;
}
.pp-footer__bottom em {
  font-family: var(--pp-font-serif);
  color: var(--pp-text-soft);
  font-style: italic;
}
.pp-footer__social {
  display: flex;
  gap: 14px;
}
.pp-footer__social a {
  text-decoration: none;
  color: var(--pp-text-mute);
  font-size: 13px;
}
.pp-footer__social a:hover { color: var(--pp-brown-800); }

/* ---------------------------------------------------
   Privacy page
   --------------------------------------------------- */
.pp-page {
  padding: clamp(60px, 8vw, 96px) 0 clamp(80px, 10vw, 110px);
  max-width: 760px;
  margin: 0 auto;
}
.pp-page__head {
  text-align: center;
  margin-bottom: 50px;
}
.pp-page__head h1 {
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 8px;
}
.pp-page__head p {
  color: var(--pp-text-mute);
  font-size: 14px;
  letter-spacing: .04em;
}

.pp-page__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pp-text);
}
.pp-page__body h2 {
  font-size: 22px;
  margin: 38px 0 12px;
  font-family: var(--pp-font-sans);
  font-weight: 600;
  color: var(--pp-brown-800);
}
.pp-page__body h3 {
  font-size: 17px;
  margin: 26px 0 8px;
  font-family: var(--pp-font-sans);
  font-weight: 600;
  color: var(--pp-brown-800);
}
.pp-page__body ul, .pp-page__body ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.pp-page__body li { margin-bottom: 6px; }
.pp-page__body a {
  color: var(--pp-brown-800);
  text-decoration: underline;
  text-decoration-color: var(--pp-gold-500);
}

.pp-page__placeholder {
  background: var(--pp-surface-soft);
  border: 1px dashed var(--pp-brown-400);
  border-radius: var(--pp-radius);
  padding: 30px;
  text-align: center;
  color: var(--pp-text-mute);
  font-style: italic;
}

/* Page-body extras for long-form pages (privacy, etc.) */
.pp-page__body hr {
  border: 0;
  height: 1px;
  background: var(--pp-brown-200);
  margin: 36px 0;
}
.pp-page__body code {
  background: var(--pp-bg-alt);
  padding: 2px 7px;
  border-radius: 5px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 14px;
  color: var(--pp-brown-800);
}
.pp-page__body strong { color: var(--pp-brown-900); font-weight: 600; }

/* Tables in long-form copy */
.pp-page__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 15px;
  background: var(--pp-surface);
  border-radius: var(--pp-radius);
  overflow: hidden;
  border: 1px solid var(--pp-brown-200);
}
.pp-page__body thead th {
  background: var(--pp-bg-alt);
  color: var(--pp-brown-900);
  font-family: var(--pp-font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pp-brown-200);
}
.pp-page__body tbody td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--pp-brown-200);
  line-height: 1.55;
}
.pp-page__body tbody tr:last-child td { border-bottom: 0; }
.pp-page__body tbody td:first-child {
  color: var(--pp-brown-800);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .pp-page__body tbody td:first-child { white-space: normal; }
  .pp-page__body table { font-size: 14px; }
  .pp-page__body thead th, .pp-page__body tbody td { padding: 10px 12px; }
}

/* Privacy meta block (effective + updated dates) */
.pp-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  font-size: 13px;
  color: var(--pp-text-mute);
  margin-top: 18px;
  letter-spacing: .04em;
}
.pp-page__meta span strong {
  color: var(--pp-brown-800);
  font-weight: 600;
  margin-right: 4px;
}

/* Pull-quote style intro for long-form pages */
.pp-page__intro {
  font-family: var(--pp-font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--pp-text-soft);
  font-style: italic;
  margin: 0 0 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--pp-gold-500);
  background: var(--pp-surface-soft);
  border-radius: 0 var(--pp-radius) var(--pp-radius) 0;
}

/* ---------------------------------------------------
   Utility
   --------------------------------------------------- */
.pp-screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
}
