* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    padding: 16px;
    position: relative;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
.hero-wrap {
    position: relative;
}
.hero {
    position: relative;
    min-height: calc(100vh - 32px);
    background: #0a0a0a;
    padding: 28px 120px 0;
    overflow: hidden;
    border-radius: 24px;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
}
.nav-links {
    display: flex;
    gap: 48px;
}
.nav-links a {
    font-size: 14.5px;
    color: #e6e6e6;
    font-weight: 400;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #b8e2ff;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.icon-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.icon-btn svg {
    width: 20px;
    height: 20px;
}
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
}
.nav-toggle .navToggle-icon,
.nav-toggle .navClose-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.nav-toggle .navClose-icon {
  display: none;
}
.nav-toggle.is-open .navToggle-icon {
  display: none;
}
.nav-toggle.is-open .navClose-icon {
  display: block;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary {
    background: linear-gradient(135deg, #c8e8ff 0%, #8fcbff 100%);
    color: #0a0a0a;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(143, 203, 255, 0.35);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
}
.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 70px 0 120px;
    min-height: calc(100vh - 200px);
}
.hero-text h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.02;
    margin-bottom: 32px;
}
.hero-text p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #a8a8a8;
    margin-bottom: 40px;
    max-width: 460px;
}
.hero-buttons {
    display: flex;
    gap: 12px;
}
.hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-watch {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%) rotate(-12deg);
    position: absolute;
    width: 540px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6));
}
.features-strip {
    position: absolute;
    left: -4%;
    right: -1%;
    bottom: -20px;
    background: #b8e2ff;
    padding: 18px 0;
    transform: rotate(-3deg);
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.strip-track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}
.strip-item {
    font-size: 18px;
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}
.strip-dot {
    width: 6px;
    height: 6px;
    background: #0a0a0a;
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
.features {
    background: #fff;
    color: #0a0a0a;
    padding: 120px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}
.features-pill {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.features-pill span {
    display: inline-block;
    padding: 10px 26px;
    border: 1px solid rgba(10, 10, 10, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}
.features-col {
    display: flex;
    flex-direction: column;
    gap: 90px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 18px;
}
.features-col-left .feature {
    justify-content: flex-end;
    text-align: right;
}
.features-col-right .feature {
    justify-content: flex-start;
    text-align: left;
}
.feature-text h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0a0a0a;
    margin-bottom: 6px;
}
.feature-text p {
    font-size: 13.5px;
    color: #8a8a8a;
    font-weight: 200;
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.features-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}
.features-image {
    width: min(100%, 360px);
    height: auto;
    display: block;
    object-fit: contain;
}
.pricing {
    color: #0a0a0a;
}
.pricing-inner {
    max-width: 1400px;
    margin: 0 auto;
    background: #ededed;
    border-radius: 36px;
    padding: 100px 100px 64px;
}
.pricing-pill {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.pricing-pill span {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(10, 10, 10, 0.2);
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
}
.pricing-title {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 48px;
    color: #0a0a0a;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.price-card {
    background: #fff;
    border-radius: 28px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.price-top {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 18px;
    border-radius: 18px;
}
.price-card-popular .price-top {
    background: #cfe7ff;
}
.price-tag {
    align-self: flex-start;
    display: inline-block;
    padding: 5px 14px;
    background: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #0a0a0a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 22px;
}
.price-amount {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1;
}
.price-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #6a6a6a;
    margin-bottom: 22px;
}
.price-card-popular .price-desc {
    color: #3a4a5a;
}
.price-btn {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}
.price-btn:hover {
    opacity: 0.88;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 12px 12px;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 400;
}
.price-features li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("./assets/icons/tick.svg") center / contain no-repeat;
    flex-shrink: 0;
}
.price-features li.muted {
    color: #c4c4c4;
}
.price-features li.muted::before {
    opacity: 0.4;
}
.testimonials {
    background: #fff;
    padding: 80px 60px 100px;
    max-width: 1200px;
    margin: 0 auto;
    color: #0a0a0a;
}
.testimonials-pill {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.testimonials-pill span {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(10, 10, 10, 0.2);
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
}
.testimonials-title {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 56px;
    color: #0a0a0a;
}
.testimonials-title .muted-word {
    color: #bfbfbf;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: #ededed;
    border-radius: 28px;
    padding: 28px 28px 28px;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    transition: background 0.35s ease;
}
.testimonial-card-highlight {
    background: #cfe7ff;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 80px;
}
.testimonial-quote {
    font-size: 17px;
    line-height: 1.5;
    color: #0a0a0a;
    font-weight: 400;
    margin-bottom: auto;
    padding-bottom: 60px;
}
.testimonial-author {
    margin-top: auto;
}
.testimonial-name {
    font-size: 14px;
    font-weight: 500;
    color: #0a0a0a;
}
.testimonial-role {
    font-size: 12.5px;
    color: #8a8a8a;
    margin-top: 2px;
}
.testimonials-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
}
.nav-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.nav-arrow:hover {
    background: #ebebeb;
    border-color: rgba(10, 10, 10, 0.4);
}
.nav-arrow-icon-prev {
    width: 38px;
    height: 38px;
    display: block;
}
.nav-arrow-icon-next {
    width: 38px;
    height: 38px;
    display: block;
}
.signup {
    background: #fff;
    padding: 40px 60px 100px;
    color: #0a0a0a;
}
.signup-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.signup-pill {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.signup-pill span {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(10, 10, 10, 0.2);
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #0a0a0a;
}
.signup-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #0a0a0a;
    margin-bottom: 16px;
}
.signup-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.signup-form {
    max-width: 480px;
    margin: 0 auto;
}
.signup-input-wrap {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    transition: border-color 0.2s, background 0.2s;
}
.signup-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    color: #0a0a0a;
    padding: 10px 8px 10px 0;
}
.signup-btn {
    padding: 12px 24px;
    font-size: 13.5px;
    flex-shrink: 0;
}
.signup-message {
    font-size: 13px;
    margin-top: 14px;
    min-height: 18px;
    color: #6a6a6a;
}
.footer {
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1c1c1c 55%, #2a2a2a 100%);
    padding: 0px 60px 60px;
    overflow: hidden;
    color: #7a7a7a;
    margin: 0 -16px -16px;
}
.footer-brand {
    font-size: clamp(80px, 18vw, 260px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: #1e1e1e;
    text-align: center;
    margin-bottom: 60px;
}
.footer-links {
    display: flex;
    gap: 44px;
    justify-content: center;
    padding-bottom: 60px;
}
.footer-links a {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-copy {
    text-align: center;
    font-size: 12px;
    color: #7a7a7a;
}
.footer-links a:hover {
    color: #c0c0c0;
}
@media (max-width: 1024px) {
    .hero {
        padding: 24px 28px 0;
    }
    .hero-text h1 {
        font-size: 56px;
    }
    .nav-links {
        gap: 28px;
    }
    .features-strip {
        left: -4%;
        right: -4%;
        position: absolute;
        background: #b8e2ff;
        padding: 18px 0;
        transform: rotate(-3deg);
        overflow: hidden;
        z-index: 10;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
        bottom: 0px;
    }
    .features {
        padding: 90px 28px 90px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        justify-items: center;
    }
    .features-col {
        width: 100%;
        max-width: 520px;
        gap: 40px;
    }
    .features-col-left .feature,
    .features-col-right .feature {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
    }
    .features-col-left .feature {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .features-center {
        order: -1;
        width: 100%;
        max-width: 520px;
    }
    .features-image {
        width: min(100%, 320px);
    }
}
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 40px 0 140px;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 44px;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-right .btn-sm,
    .nav-right .icon-btn {
        display: none;
    }
    .nav-right {
        gap: 8px;
    }
    .hero {
        padding: 20px 20px 0;
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        background: #161616;
        border-radius: 16px;
        padding: 18px 22px;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 20;
    }
    .nav-links.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar {
        position: relative;
    }
    .hero-visual {
        height: 240px;
    }
    .hero-watch{
        width: 300px;
    }
    .signup {
        padding: 20px 20px 60px;
    }
    .signup-title {
        font-size: 34px;
    }
    .signup-input-wrap {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
    }
    .signup-input-wrap:focus-within {
        background: transparent;
        border-color: transparent;
    }
    .signup-input {
        width: 100%;
        background: #f4f4f4;
        border-radius: 999px;
        padding: 14px 20px;
    }
    .signup-btn {
        width: 100%;
    }
    .features {
        padding: 70px 20px 70px;
    }
    .features-grid {
        gap: 36px;
    }
    .features-col {
        gap: 28px;
    }
    .features-center {
        max-width: 340px;
    }
    .features-image {
        width: min(100%, 260px);
    }
    .feature-icon {
        width: 42px;
        height: 42px;
    }
    .feature-text h3 {
        font-size: 18px;
    }
    .pricing {
        padding: 10px 10px 60px;
    }
    .pricing-inner {
        padding: 40px 20px;
    }
    .pricing-title {
        font-size: 36px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        padding: 60px 20px 80px;
    }
    .testimonials-title {
        font-size: 36px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card {
        display: none;
    }
    .testimonials-grid .testimonial-card.testimonial-card-highlight {
        display: flex;
        animation: fadeIn 0.3s ease;
    }
    .testimonials-nav {
        justify-content: center;
        margin-top: 20px;
    }
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .footer {
        padding: 40px 20px;
    }
    .footer-links {
        gap: 24px;
    }
}