:root {
  --bg: #08090c;
  --ink: #0a0d10;
  --panel: rgba(246, 242, 232, 0.07);
  --panel-strong: rgba(246, 242, 232, 0.12);
  --paper: #f5efe4;
  --muted: rgba(245, 239, 228, 0.7);
  --soft: rgba(245, 239, 228, 0.48);
  --line: rgba(245, 239, 228, 0.14);
  --line-strong: rgba(245, 239, 228, 0.24);
  --teal: #35d6bd;
  --blue: #6ea8ff;
  --copper: #e4b06d;
  --green: #95de7d;
  --red: #ff6f7d;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.1), rgba(4, 7, 8, 0.9) 82%),
    linear-gradient(115deg, rgba(53, 214, 189, 0.16) 0%, rgba(53, 214, 189, 0) 34%),
    linear-gradient(245deg, rgba(110, 168, 255, 0.13) 0%, rgba(110, 168, 255, 0) 36%),
    linear-gradient(135deg, #08090c 0%, #101715 42%, #111014 72%, #071615 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(246, 240, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 227, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  opacity: 0.22;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), var(--max));
  transform: translateX(-50%);
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--paper), var(--teal));
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--paper);
  background: rgba(246, 240, 227, 0.07);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #08090c;
  background: linear-gradient(135deg, var(--teal), var(--blue) 48%, var(--copper));
  box-shadow: 0 16px 40px rgba(53, 214, 189, 0.2);
}

.btn-ghost {
  color: var(--paper);
  background: rgba(246, 240, 227, 0.04);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(63, 208, 179, 0.52);
  background: rgba(63, 208, 179, 0.08);
}

.btn-large {
  min-height: 50px;
  padding-inline: 24px;
  font-size: 14px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 227, 0.04);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.mobile-panel {
  position: fixed;
  inset: 92px 14px auto;
  z-index: 45;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 12, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-panel.open {
  display: grid;
}

.mobile-panel a {
  padding: 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.mobile-panel a:hover {
  background: rgba(246, 240, 227, 0.07);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 116px max(22px, calc((100vw - var(--max)) / 2)) 58px;
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.map-plane {
  position: absolute;
  inset: 6% -10% auto 34%;
  height: 78%;
  transform: perspective(900px) rotateX(58deg) rotateZ(-11deg);
  border: 1px solid rgba(246, 240, 227, 0.1);
  background:
    linear-gradient(rgba(63, 208, 179, 0.14) 2px, transparent 2px),
    linear-gradient(90deg, rgba(63, 208, 179, 0.11) 2px, transparent 2px),
    linear-gradient(135deg, rgba(246, 240, 227, 0.04), rgba(63, 208, 179, 0.05));
  background-size: 90px 90px;
  opacity: 0.58;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(63, 208, 179, 0.1), 0 0 30px rgba(63, 208, 179, 0.6);
}

.p1 { left: 18%; top: 32%; }
.p2 { left: 42%; top: 48%; background: var(--copper); }
.p3 { left: 70%; top: 28%; background: var(--blue); }
.p4 { left: 62%; top: 66%; background: var(--green); }

.cockpit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(246, 240, 227, 0.12), rgba(246, 240, 227, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.cockpit-main {
  right: max(18px, calc((100vw - var(--max)) / 2 - 110px));
  top: 21%;
  width: min(560px, 48vw);
  padding: 18px;
}

.cockpit-head,
.client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cockpit-head span,
.cockpit small,
.client-row small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cockpit-head strong {
  color: var(--teal);
  font-size: 12px;
}

.client-row {
  padding: 16px 0;
}

.client-row b {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.risk-low {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green);
  background: rgba(136, 209, 121, 0.1);
  border: 1px solid rgba(136, 209, 121, 0.24);
  font-size: 12px;
  font-weight: 900;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.score-grid div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 9, 10, 0.32);
}

.score-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: 0;
}

.chart-bars {
  height: 90px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 9, 10, 0.28);
}

.chart-bars i {
  display: block;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(63, 208, 179, 0.2));
}

.mini-card {
  width: 238px;
  padding: 16px;
}

.mini-card strong {
  display: block;
  margin: 7px 0;
  font-size: 22px;
}

.mini-card span {
  color: var(--muted);
  font-size: 13px;
}

.mini-a {
  right: max(300px, calc((100vw - var(--max)) / 2 + 360px));
  bottom: 17%;
}

.mini-b {
  right: max(28px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 12%;
}

.route-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.44;
}

.route-one {
  width: 340px;
  right: 20%;
  bottom: 28%;
  transform: rotate(-24deg);
}

.route-two {
  width: 280px;
  right: 5%;
  top: 48%;
  transform: rotate(32deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(63, 208, 179, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: 122px;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 227, 0.05);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof b {
  color: var(--paper);
  font-size: 22px;
  letter-spacing: 0;
}

.signal-strip {
  width: min(calc(100% - 44px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.signal-strip div {
  padding: 18px;
  background: rgba(246, 240, 227, 0.06);
}

.signal-strip small {
  display: block;
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section h2 {
  margin: 16px 0 0;
  font-size: 78px;
  line-height: 0.96;
  letter-spacing: 0;
}

.section-head p,
.copy-stack p,
.shot-copy p,
.cta-box p,
.evidence-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
  padding-top: 52px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.metric-card,
.module-card,
.step,
.cta-box,
.report-frame,
.shot-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(246, 240, 227, 0.1), rgba(246, 240, 227, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.metric-card {
  min-height: 210px;
  padding: 22px;
}

.metric-card small,
.module-card span,
.step span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 38px;
  letter-spacing: 0;
}

.metric-card p,
.module-card p,
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dark-band {
  width: 100%;
  max-width: none;
  margin-top: 20px;
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(180deg, rgba(4, 9, 10, 0.1), rgba(4, 9, 10, 0.58)),
    linear-gradient(135deg, rgba(63, 208, 179, 0.08), rgba(241, 183, 122, 0.06));
  border-block: 1px solid var(--line);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-card {
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module-card h3,
.step h3 {
  margin: 28px 0 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.module-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(63, 208, 179, 0.16), rgba(246, 240, 227, 0.04)),
    rgba(246, 240, 227, 0.05);
}

.evidence-layout,
.product-shot-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.report-frame {
  padding: 18px;
}

.report-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-page {
  min-height: 540px;
  padding: 28px;
  border-radius: 8px;
  color: #14201c;
  background: var(--paper);
}

.report-title small {
  color: #587066;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.report-title h3 {
  margin: 10px 0 20px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.report-score {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin: 24px auto;
  border: 10px solid #3fd0b3;
  border-radius: 999px;
}

.report-score b {
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0;
}

.report-score span {
  margin-top: -24px;
  color: #587066;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.report-lines i {
  height: 12px;
  border-radius: 999px;
  background: rgba(20, 32, 28, 0.13);
}

.report-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 32, 28, 0.16);
}

.report-table span {
  color: #587066;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 240, 227, 0.055);
  color: var(--paper);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  min-height: 230px;
  padding: 22px;
}

.product-shot-section {
  align-items: start;
}

.shot-copy {
  position: sticky;
  top: 120px;
}

.shot-frame {
  padding: 12px;
  overflow: hidden;
}

.surface-showcase {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 214, 189, 0.12), rgba(110, 168, 255, 0.08)),
    rgba(4, 8, 10, 0.42);
}

.phone-surface,
.bank-surface {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 12, 13, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.phone-surface {
  align-self: end;
  min-height: 430px;
  padding: 18px;
}

.bank-surface {
  min-height: 470px;
  padding: 18px;
}

.surface-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.surface-top b {
  color: var(--teal);
}

.phone-surface h3 {
  margin: 86px 0 12px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0;
}

.phone-surface p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mini-score {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(53, 214, 189, 0.25);
  border-radius: 8px;
  background: rgba(53, 214, 189, 0.08);
}

.mini-score span {
  color: var(--muted);
}

.surface-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--copper);
  font-weight: 900;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 44px 0 18px;
}

.bank-grid div,
.queue-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.055);
}

.bank-grid div {
  min-height: 118px;
  padding: 14px;
}

.bank-grid small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bank-grid strong {
  display: block;
  margin-top: 14px;
  font-size: 24px;
}

.queue-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.queue-row b {
  color: var(--paper);
}

.cta-section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.cta-box {
  padding: clamp(28px, 6vw, 74px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(63, 208, 179, 0.16), rgba(241, 183, 122, 0.12)),
    rgba(246, 240, 227, 0.06);
}

.cta-box h2 {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.cta-box p {
  max-width: 660px;
  margin: 22px auto 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.site-footer {
  width: min(calc(100% - 44px), var(--max));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .hero {
    min-height: 92svh;
  }

  .hero h1 {
    font-size: 94px;
  }

  .section h2,
  .cta-box h2 {
    font-size: 58px;
  }

  .cockpit-main {
    width: min(520px, calc(100% - 44px));
    right: 22px;
    top: 44%;
    opacity: 0.74;
  }

  .mini-card,
  .route-line {
    display: none;
  }

  .signal-strip,
  .metrics-grid,
  .module-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .evidence-layout,
  .product-shot-section {
    grid-template-columns: 1fr;
  }

  .copy-stack,
  .shot-copy {
    padding-top: 0;
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: 104px 18px 42px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .cockpit-main {
    display: none;
  }

  .map-plane {
    left: 0;
    right: -70%;
  }

  .score-grid {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .signal-strip,
  .metrics-grid,
  .module-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section,
  .signal-strip,
  .cta-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .section {
    padding: 74px 0;
  }

  .section h2,
  .cta-box h2 {
    font-size: 42px;
  }

  .module-card-wide {
    grid-column: auto;
  }

  .report-page {
    min-height: 420px;
    padding: 20px;
  }

  .report-title h3 {
    font-size: 26px;
  }

  .surface-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .phone-surface,
  .bank-surface {
    min-height: auto;
  }

  .phone-surface h3 {
    margin-top: 42px;
    font-size: 28px;
  }

  .bank-grid {
    grid-template-columns: 1fr;
  }

  .queue-row {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
