/* TwoPass — twopass.xyz · Premium B2B SaaS */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --surface-2: #f4f6f9;
  --surface-3: #eef1f6;
  --text: #475569;
  --heading: #0f172a;
  --muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --accent: #4f46e5;
  --accent-2: #06b6d4;
  --accent-hover: #4338ca;
  --accent-glow: rgba(79, 70, 229, 0.12);
  --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 45%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(79,70,229,.08) 0%, rgba(6,182,212,.06) 100%);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 32px 64px rgba(15, 23, 42, 0.12);
  --max: 1180px;
  --header: 76px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul { color: var(--text); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: .75rem 1rem; z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 252, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header); gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center; gap: .7rem;
  font-weight: 700; font-size: 1.15rem; color: var(--heading); text-decoration: none;
}
.logo span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo__mark { width: 38px; height: 38px; border-radius: 10px; }
.nav-toggle {
  display: none; padding: .55rem .9rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  font-family: var(--font); font-weight: 600; font-size: .875rem;
  color: var(--heading); cursor: pointer;
}
.nav-main ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.75rem; align-items: center; }
.nav-main a {
  color: var(--text); text-decoration: none; font-weight: 500;
  font-size: .9rem; transition: color .2s;
}
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--accent); }
.nav-main .btn { margin-left: .5rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem; box-shadow: var(--shadow);
  }
  .nav-main.is-open { display: block; }
  .nav-main ul { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .nav-main .btn { margin-left: 0; width: 100%; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.6rem; border-radius: var(--radius);
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.btn--primary {
  background: var(--gradient); color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}
.btn--primary:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35); }
.btn--outline {
  background: var(--surface); color: var(--heading); border-color: var(--border);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { background: transparent; color: var(--accent); border-color: transparent; padding: .5rem 0; }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* Hero */
.hero {
  position: relative; padding: 5rem 0 4.5rem; overflow: hidden;
}
.hero--dark {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  color: #cbd5e1;
}
.hero--dark h1, .hero--dark h2 { color: #f8fafc; }
.hero--dark .hero__lead { color: #94a3b8; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, rgba(79,70,229,.25), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(6,182,212,.15), transparent);
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 999px;
  background: rgba(79,70,229,.12); border: 1px solid rgba(79,70,229,.25);
  font-size: .8rem; font-weight: 600; color: #a5b4fc; margin-bottom: 1.5rem;
}
.hero--light .hero__badge {
  background: var(--gradient-soft); border-color: rgba(79,70,229,.15); color: var(--accent);
}
.hero__lead { font-size: 1.125rem; max-width: 34rem; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  font-size: .875rem; color: var(--muted);
}
.hero--dark .hero__meta { color: #64748b; }
.hero__meta strong { display: block; color: var(--heading); font-weight: 600; }
.hero--dark .hero__meta strong { color: #e2e8f0; }
.hero--dark .btn--outline {
  border-color: rgba(255,255,255,.3); color: #f8fafc; background: rgba(255,255,255,.05);
}
.hero--dark .btn--outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }
.hero__visual { position: relative; }
.hero__float {
  position: absolute; bottom: -1rem; left: -1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.hero__float-card {
  padding: .85rem 1.1rem; background: var(--surface);
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--border); font-size: .8rem;
  animation: float 4s ease-in-out infinite;
}
.hero__float-card:nth-child(2) { animation-delay: -2s; margin-left: 2rem; }
.hero__float-card strong { display: block; font-size: 1.1rem; color: var(--heading); }
.hero__float-card span { color: var(--muted); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__float { position: static; flex-direction: row; margin-top: 1rem; }
  .hero__float-card:nth-child(2) { margin-left: 0; }
}

/* Page hero (inner pages) */
.page-hero {
  padding: 4rem 0 3rem; background: var(--gradient-soft);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url("../img/bg-grid.svg") center / 800px repeat; opacity: .6;
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: .75rem; }
.page-hero__lead { font-size: 1.125rem; max-width: 40rem; color: var(--text); }
.page-hero__meta { margin-top: 1.25rem; font-size: .875rem; color: var(--muted); }
.page-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.page-hero__visual img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
@media (max-width: 800px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__visual { order: -1; max-width: 28rem; }
}

/* Cards with images */
.card--media { padding: 0; overflow: hidden; }
.card--media .card__img { aspect-ratio: 16/10; overflow: hidden; }
.card--media .card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.card--media:hover .card__img img { transform: scale(1.04); }
.card--media .card__body { padding: 1.5rem 1.75rem 1.75rem; }
.card--media h3 { margin-bottom: .5rem; }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--surface-2); }
.section__header { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section__eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: .75rem;
}
.section__header p { font-size: 1.05rem; margin-top: .75rem; }

/* Cards */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow);
  border-color: rgba(79,70,229,.2);
}
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--gradient-soft); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .75rem; }
.card p { font-size: .95rem; }

/* Feature rows */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__visual { order: -1; }
.feature-row__content h2 { margin-bottom: 1rem; }
.feature-row__content p { margin-bottom: 1.5rem; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative; padding-left: 1.75rem; margin-bottom: .75rem; font-size: .95rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gradient);
}
.visual-frame {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--surface);
}

@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
  .feature-row--reverse .feature-row__visual { order: 0; }
}

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 2rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { font-size: .875rem; color: var(--muted); }

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* Logo bar */
.logo-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem;
  padding: 2rem 1.5rem; font-size: .85rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}

/* Ticker */
.ticker {
  overflow: hidden; padding: 1rem 0;
  background: var(--heading); color: #64748b;
  border-bottom: 1px solid #1e293b;
}
.ticker__track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CTA band */
.cta-band {
  padding: 4.5rem 0; text-align: center;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 50%, #0f172a 100%);
  color: #cbd5e1;
}
.cta-band h2 { color: #f8fafc; margin-bottom: 1rem; }
.cta-band p { max-width: 36rem; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-band .btn--outline { border-color: rgba(255,255,255,.25); color: #f8fafc; background: transparent; }
.cta-band .btn--outline:hover { border-color: #fff; color: #fff; }

/* Testimonials */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.testimonial blockquote { margin: 0 0 1.25rem; font-size: .95rem; font-style: italic; color: var(--text); }
.testimonial cite { font-style: normal; font-size: .875rem; }
.testimonial cite strong { display: block; color: var(--heading); }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; background: var(--surface); overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem 1.5rem; font-weight: 600; color: var(--heading);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.5rem 1.25rem; font-size: .95rem; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.contact-card a { text-decoration: none; font-weight: 500; }
.contact-card p { font-size: .9rem; margin: 0; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; color: var(--heading); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: .95rem;
  background: var(--surface); color: var(--heading); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-status { margin-top: 1rem; font-size: .9rem; color: var(--accent); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Legal / prose */
.prose { max-width: 42rem; margin: 0 auto; }
.prose h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.1rem; margin: 1.75rem 0 .75rem; }
.prose p, .prose li { font-size: .95rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .5rem; }
.legal-updated { font-size: .875rem; color: var(--muted); margin-bottom: 2rem; }

/* Footer */
.site-footer {
  margin-top: auto; background: var(--heading); color: #94a3b8;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .9rem; margin-top: 1rem; max-width: 22rem; }
.footer-brand .logo { color: #f8fafc; margin-bottom: .5rem; }
.footer-col h4 { color: #e2e8f0; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: #94a3b8; text-decoration: none; font-size: .9rem; }
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid #1e293b; font-size: .85rem;
}
.footer-address { font-size: .85rem; line-height: 1.6; margin-top: 1rem; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem; box-shadow: 0 -8px 32px rgba(0,0,0,.08);
  transform: translateY(100%); transition: transform .35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1; min-width: 200px; }
.cookie-banner .btn { flex-shrink: 0; }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger.is-visible > *:nth-child(1) { transition-delay: .05s; opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .15s; opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .2s; opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .25s; opacity: 1; transform: none; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .3s; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .hero__float-card { animation: none; }
}

/* Process steps */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step;
}
.process-step {
  position: relative; padding: 2rem 1.5rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-size: .75rem; font-weight: 700; color: var(--accent);
  margin-bottom: 1rem; letter-spacing: .05em;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { font-size: .9rem; }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.team-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.team-card__avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem;
  overflow: hidden; border: 3px solid var(--border); box-shadow: var(--shadow-sm);
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.team-card .role { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .875rem; }

/* Pricing hint */
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pricing-card {
  padding: 2.5rem 2rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: transform .25s, box-shadow .25s;
}
.pricing-card--featured {
  border-color: var(--accent); box-shadow: var(--shadow);
  position: relative;
}
.pricing-card--featured::before {
  content: "Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: .7rem; font-weight: 700;
  padding: .3rem .85rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.pricing-card h3 { margin-bottom: .5rem; }
.pricing-card .price { font-size: 2.25rem; font-weight: 700; color: var(--heading); margin-bottom: .25rem; }
.pricing-card .price span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pricing-card > p { font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 2rem; }
.pricing-card li {
  font-size: .9rem; padding: .4rem 0; padding-left: 1.5rem; position: relative;
}
.pricing-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}

@media (max-width: 800px) {
  .pricing-cards { grid-template-columns: 1fr; }
}
