:root {
    --bg: #ffffff;
    --ink: #0b0d10;
    --muted: #646a73;
    --soft: #f3f5f7;
    --soft-2: #e9edf1;
    --line: rgba(11, 13, 16, 0.12);
    --panel: #ffffff;
    --night: #05070a;
    --night-2: #11151b;
    --blue: #2f8cff;
    --orange: #f59a3f;
    --green: #5fce65;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    --font-body: "Inter", sans-serif;
    --shadow-soft: 0 28px 72px rgba(5, 7, 10, 0.14);
    --shadow-phone: 0 34px 80px rgba(5, 7, 10, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 16px clamp(18px, 4vw, 58px);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(11, 13, 16, 0.08);
    backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-weight: 850;
    letter-spacing: 0;
    text-decoration: none;
}

.brand img {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(5, 7, 10, 0.18);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 30px);
    color: #565d66;
    font-size: 0.88rem;
    font-weight: 750;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    transition: color 180ms ease;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

main {
    overflow: hidden;
}

.hero {
    min-height: auto;
    padding: 96px clamp(18px, 4vw, 58px) 0;
    background:
        linear-gradient(90deg, transparent 0 23%, rgba(11, 13, 16, 0.045) 23% calc(23% + 1px), transparent calc(23% + 1px)),
        linear-gradient(90deg, transparent 0 64%, rgba(11, 13, 16, 0.045) 64% calc(64% + 1px), transparent calc(64% + 1px)),
        #fff;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: clamp(36px, 5vw, 88px);
    min-height: 820px;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-copy,
.section-copy {
    max-width: 680px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(3.4rem, 7vw, 7.4rem);
    line-height: 0.91;
}

h2 {
    font-size: clamp(2.45rem, 4.9vw, 5.35rem);
    line-height: 0.97;
}

h3 {
    font-size: 1.18rem;
    line-height: 1.12;
}

.hero-text,
.section-copy p,
.quick-points p,
.detail-band p {
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-text {
    max-width: 570px;
    margin: 26px 0 0;
    color: #4f5661;
    font-size: clamp(1.1rem, 1.45vw, 1.34rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    margin-top: 34px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid var(--night);
    border-radius: 8px;
    background: var(--night);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(5, 7, 10, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #171b21;
    box-shadow: 0 24px 54px rgba(5, 7, 10, 0.22);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 12px 32px rgba(5, 7, 10, 0.18);
}

.btn-primary:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.footer a:focus-visible {
    outline: 3px solid rgba(47, 140, 255, 0.34);
    outline-offset: 5px;
}

.btn-primary i {
    font-size: 1.25rem;
    transition: transform 220ms ease;
}

.btn-primary:hover i {
    transform: translateY(-1px) scale(1.06);
}

.odometer-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 520px;
    margin-top: 36px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
    box-shadow: 0 24px 62px rgba(5, 7, 10, 0.08);
}

.odometer-strip div {
    min-width: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.odometer-strip strong,
.odometer-strip div > span {
    display: block;
}

.odometer-strip [data-counter] {
    display: inline;
}

.odometer-strip strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1;
}

.odometer-strip div > span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-media {
    position: relative;
    min-height: 720px;
}

.phone-stage {
    position: relative;
    width: min(650px, 52vw);
    height: 720px;
    margin-left: auto;
}

.phone-stage::before {
    position: absolute;
    inset: 58px 34px 38px 108px;
    content: "";
    border: 1px solid rgba(11, 13, 16, 0.1);
    background: #f7f8fa;
    box-shadow: var(--shadow-soft);
}

.phone {
    width: min(355px, 78vw);
    filter: drop-shadow(var(--shadow-phone));
}

.hero-phone {
    position: absolute;
    z-index: 2;
}

.hero-phone-main {
    right: 10%;
    bottom: -28px;
    width: min(388px, 31vw);
    transform: rotate(-2.5deg);
    animation: phoneFloatMain 6s ease-in-out infinite;
}

.hero-phone-back {
    top: 34px;
    left: 0;
    z-index: 1;
    width: min(322px, 25vw);
    opacity: 0.96;
    transform: rotate(4deg);
    animation: phoneFloatBack 7s ease-in-out infinite;
}

.quick-points {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--line);
}

.quick-points div {
    min-height: 225px;
    padding: clamp(30px, 4vw, 54px);
    background: #fff;
}

.quick-points span {
    display: block;
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
}

.quick-points strong {
    display: block;
    max-width: 260px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: clamp(1.42rem, 2.1vw, 2rem);
    line-height: 1.08;
}

.quick-points p {
    max-width: 320px;
    margin: 0;
}

.feature-section,
.log-section,
.insights-section,
.detail-band,
.final-cta {
    padding: clamp(78px, 10vw, 148px) clamp(18px, 5vw, 76px);
}

.feature-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(440px, 1.14fr);
    align-items: center;
    gap: clamp(42px, 7vw, 104px);
    background: var(--night);
    color: #fff;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-section .section-copy p,
.log-section .section-copy p,
.feature-list,
.insights-section .section-copy p,
.final-cta p {
    color: rgba(255, 255, 255, 0.66);
}

.screen-pair {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 760px;
}

.screen-pair::before {
    position: absolute;
    inset: 90px 0 70px 14%;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c1015;
}

.screen-pair .phone {
    position: relative;
    z-index: 2;
    width: min(336px, 42vw);
    transform: rotate(-3deg);
    transition: transform 320ms ease, filter 320ms ease;
}

.screen-pair .offset {
    position: absolute;
    top: 10%;
    right: 4%;
    z-index: 1;
    transform: rotate(4.5deg);
}

.screen-pair:hover .phone:not(.offset) {
    transform: translateY(-7px) rotate(-3deg);
}

.screen-pair:hover .offset {
    transform: translateY(9px) rotate(4.5deg);
}

.reminder-stack {
    position: absolute;
    right: 0;
    bottom: 15%;
    z-index: 4;
    display: grid;
    gap: 12px;
    width: min(255px, 31vw);
    pointer-events: none;
}

.reminder-card {
    display: grid;
    grid-template-columns: 12px 1fr;
    align-items: center;
    gap: 13px;
    min-height: 72px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateX(26px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reminder-card:nth-child(2) {
    margin-left: 26px;
    transition-delay: 130ms;
}

.reminder-card:nth-child(3) {
    margin-left: 9px;
    transition-delay: 260ms;
}

.is-visible .reminder-card {
    opacity: 1;
    transform: translateX(0);
}

.reminder-card > span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(47, 140, 255, 0.38);
    animation: reminderPulse 2.4s ease-out infinite;
}

.reminder-card.is-urgent > span {
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(245, 154, 63, 0.42);
}

.reminder-card.is-good > span {
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(95, 206, 101, 0.36);
}

.reminder-card strong,
.reminder-card small {
    display: block;
}

.reminder-card strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.1;
}

.reminder-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.log-section {
    display: grid;
    grid-template-columns: minmax(330px, 0.95fr) minmax(310px, 1.05fr);
    align-items: center;
    gap: clamp(40px, 7vw, 108px);
    background:
        linear-gradient(90deg, rgba(11, 13, 16, 0.055) 1px, transparent 1px) 0 0 / 33.333% 100%,
        #fff;
}

.log-section .section-copy p {
    color: var(--muted);
}

.log-media {
    display: flex;
    justify-content: center;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 34px 0 0;
    padding: 0;
    color: var(--ink);
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 15px;
    min-height: 68px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    color: #252b33;
    font-weight: 700;
    transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.feature-list li:hover {
    transform: translateX(8px);
    border-color: rgba(47, 140, 255, 0.28);
    color: var(--ink);
}

.feature-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff4e9;
    color: var(--orange);
    font-size: 1.25rem;
    transition: transform 220ms ease, background 220ms ease;
}

.feature-list li:hover i {
    transform: scale(1.05);
    background: #fff0dd;
}

.trip-card {
    max-width: 560px;
    margin-top: 34px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 58px rgba(5, 7, 10, 0.08);
}

.trip-map {
    min-height: 170px;
    overflow: hidden;
    border: 1px solid rgba(11, 13, 16, 0.08);
    background:
        linear-gradient(90deg, rgba(11, 13, 16, 0.055) 1px, transparent 1px) 0 0 / 70px 70px,
        linear-gradient(0deg, rgba(11, 13, 16, 0.055) 1px, transparent 1px) 0 0 / 70px 70px,
        #f8fafc;
}

.trip-map svg {
    width: 100%;
    height: 170px;
}

.map-road {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-road-soft {
    stroke: rgba(11, 13, 16, 0.13);
    stroke-width: 12;
}

.map-road-active {
    stroke: var(--blue);
    stroke-width: 6;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1300ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.trip-card.is-visible .map-road-active {
    stroke-dashoffset: 0;
}

.map-pin {
    fill: var(--orange);
    stroke: #fff;
    stroke-width: 5;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    transform: scale(0.65);
    transition: opacity 300ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin.end {
    fill: var(--green);
    transition-delay: 1080ms;
}

.trip-card.is-visible .map-pin {
    opacity: 1;
    transform: scale(1);
}

.trip-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 1px;
    background: var(--line);
}

.trip-stats span {
    display: block;
    min-width: 0;
    padding: 14px;
    background: #fff;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trip-stats span:nth-child(1) {
    transition-delay: 620ms;
}

.trip-stats span:nth-child(2) {
    transition-delay: 760ms;
}

.trip-stats span:nth-child(3) {
    transition-delay: 900ms;
}

.trip-card.is-visible .trip-stats span {
    opacity: 1;
    transform: translateY(0);
}

.trip-stats strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.12rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.insights-section {
    background: var(--night);
    color: #fff;
}

.centered {
    margin: 0 auto;
    text-align: center;
}

.insights-preview {
    display: flex;
    justify-content: center;
    max-width: 780px;
    margin: 64px auto 0;
    padding: 46px clamp(18px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(135deg, rgba(47, 140, 255, 0.2), transparent 32%),
        linear-gradient(315deg, rgba(95, 206, 101, 0.14), transparent 34%),
        #0c1015;
}

.insights-preview .phone {
    width: min(392px, 72vw);
}

.detail-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding-top: 1px;
    padding-bottom: 1px;
    background: var(--line);
}

.detail-band div {
    min-height: 290px;
    padding: clamp(32px, 4vw, 58px);
    background: #fff;
}

.detail-band i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: #eef6ff;
    color: var(--blue);
    font-size: 1.35rem;
}

.detail-band p {
    margin-bottom: 0;
}

.final-cta {
    min-height: 66svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f5f7f9;
    color: var(--ink);
}

.final-cta img {
    margin-bottom: 28px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(47, 140, 255, 0.24);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.final-cta:hover img {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 30px 76px rgba(47, 140, 255, 0.32);
}

.final-cta h2 {
    max-width: 780px;
    margin-bottom: 32px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 34px 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

.footer a {
    font-weight: 700;
    text-decoration: none;
}

.footer a:hover {
    color: var(--ink);
}

@keyframes phoneFloatMain {
    0%,
    100% {
        transform: translateY(0) rotate(-2.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1.6deg);
    }
}

@keyframes phoneFloatBack {
    0%,
    100% {
        transform: translateY(0) rotate(4deg);
    }

    50% {
        transform: translateY(8px) rotate(3.2deg);
    }
}

@keyframes reminderPulse {
    70% {
        box-shadow: 0 0 0 10px rgba(47, 140, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(47, 140, 255, 0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1080px) {
    .hero-inner,
    .feature-section,
    .log-section {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-media {
        min-height: 650px;
    }

    .phone-stage {
        width: min(680px, 100%);
        height: 650px;
        margin-inline: auto;
    }

    .hero-phone-main {
        width: min(360px, 54vw);
        right: 12%;
    }

    .hero-phone-back {
        width: min(300px, 44vw);
        left: 10%;
    }

    .screen-pair {
        min-height: 650px;
    }

    .reminder-stack {
        right: 9%;
        bottom: 10%;
        width: min(270px, 42vw);
    }
}

@media (min-width: 1081px) and (max-height: 900px) {
    .hero {
        padding-top: 78px;
    }

    .hero-inner {
        min-height: calc(100svh - 78px);
        gap: clamp(28px, 4vw, 64px);
    }

    h1 {
        font-size: clamp(4.3rem, 5.8vw, 6.25rem);
        line-height: 0.93;
    }

    .hero-text {
        max-width: 540px;
        margin-top: 22px;
        font-size: clamp(1rem, 1.25vw, 1.18rem);
    }

    .hero-actions {
        margin-top: 28px;
    }

    .odometer-strip {
        margin-top: 28px;
    }

    .hero-media {
        min-height: 610px;
    }

    .phone-stage {
        width: min(560px, 46vw);
        height: 610px;
    }

    .phone-stage::before {
        inset: 50px 20px 28px 96px;
    }

    .hero-phone-main {
        width: min(326px, 25.5vw);
        bottom: -10px;
    }

    .hero-phone-back {
        width: min(272px, 21.5vw);
        top: 40px;
    }

    .quick-points div {
        min-height: 190px;
        padding-top: 34px;
        padding-bottom: 34px;
    }
}

@media (min-width: 1081px) and (max-height: 760px) {
    h1 {
        font-size: clamp(3.8rem, 5.15vw, 5.45rem);
    }

    .hero-media {
        min-height: 540px;
    }

    .phone-stage {
        width: min(505px, 43vw);
        height: 540px;
    }

    .hero-phone-main {
        width: min(292px, 23.5vw);
    }

    .hero-phone-back {
        width: min(242px, 19.5vw);
    }
}

@media (max-width: 760px) {
    .site-header {
        position: absolute;
        min-height: 66px;
        padding: 15px 18px;
    }

    .brand {
        font-size: 0.96rem;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .nav-links {
        gap: 14px;
        font-size: 0.82rem;
    }

    .nav-links a:nth-child(2) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 92px 18px 0;
    }

    h1 {
        font-size: clamp(3.05rem, 15vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2.28rem, 11.5vw, 3.45rem);
    }

    .hero-text {
        font-size: 1.04rem;
    }

    .odometer-strip {
        grid-template-columns: 1fr;
        max-width: none;
        margin-top: 28px;
    }

    .odometer-strip div {
        padding: 16px;
    }

    .hero-media {
        min-height: 274px;
        margin-top: 44px;
    }

    .phone-stage {
        width: 100%;
        height: 274px;
    }

    .phone-stage::before {
        inset: 46px 0 0 18%;
    }

    .hero-phone-main {
        right: 4%;
        bottom: -90px;
        width: min(230px, 58vw);
    }

    .hero-phone-back {
        top: 42px;
        left: 0;
        width: min(188px, 47vw);
    }

    .btn-primary {
        width: 100%;
    }

    .quick-points,
    .detail-band {
        grid-template-columns: 1fr;
    }

    .quick-points {
        margin-top: -160px;
    }

    .quick-points div,
    .detail-band div {
        min-height: 0;
        padding: 30px 18px;
    }

    .feature-section,
    .log-section,
    .insights-section,
    .detail-band,
    .final-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .screen-pair {
        min-height: 500px;
    }

    .screen-pair::before {
        inset: 70px 0 48px 12%;
    }

    .screen-pair .phone {
        width: min(254px, 62vw);
    }

    .screen-pair .offset {
        right: -8%;
        top: 18%;
    }

    .reminder-stack {
        right: auto;
        bottom: 8%;
        left: 0;
        width: min(238px, 68vw);
    }

    .reminder-card {
        min-height: 62px;
        padding: 12px 14px;
    }

    .reminder-card:nth-child(2),
    .reminder-card:nth-child(3) {
        margin-left: 16px;
    }

    .log-media .phone,
    .insights-preview .phone {
        width: min(300px, 76vw);
    }

    .insights-preview {
        margin-top: 42px;
        padding: 28px 18px;
    }

    .trip-card {
        padding: 14px;
    }

    .trip-map,
    .trip-map svg {
        min-height: 148px;
        height: 148px;
    }

    .trip-stats {
        grid-template-columns: 1fr;
    }

    .final-cta .btn-primary {
        width: auto;
    }
}
