/* Styles for landing_page.html */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 100px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight:500;
    position: relative;
}

.lp-nav__logo {

    
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.lp-nav__logo:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.lp-nav__logo img {
    height: 40px;
    width: auto;
}

.lp-nav__links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lp-nav__links a {
    margin-left:24px;
    text-decoration: none;
    color: #111827;
}

.lp-nav__links a:first-child {
    margin-left: 0;
}

.lp-nav__login-btn {
    display: inline-block;
    text-decoration: none;
    padding:7px;
    padding-right:15px;
    padding-left:15px;
    border-radius:2px;
    border: 1px solid #d1d5db;   /* light grey outline */
    background-color: transparent;
    color: #1f2933;              /* dark navy text */
    font-size: 16px;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
}

.lp-hero-product {
    padding: 80px 100px 150px;
    
}

.lp-hero-product__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.lp-hero-product__content {
    text-align: left;
    margin-top: -145px;
}

.lp-hero-product__content h1 {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.2s forwards;
}

.lp-highlight {
    text-decoration: underline;
    text-decoration-color:#FED7AA;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
}

.lp-hero-product__content p {
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 20px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

.lp-hero-product__button {
    display: inline-block;
    background:Black;
    color: #ffffff;
    margin-top:0px;
    padding:15px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    font-size:16px;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.6s forwards;
}

.lp-hero-product__diagram {
    
    position: relative;
    width: 490px;
    height: 490px;
    margin: 0 auto;
}

/* Dashed guide lines between product steps */
.lp-hero-product__diagram::before,
.lp-hero-product__diagram::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Horizontal dashed line: Monitor ↔ Research */
.lp-hero-product__diagram::before {
    width: 295px;
    border-top: 2px dashed #e5e7eb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical dashed line: Idea Generation ↔ Connect */
.lp-hero-product__diagram::after {
    width: 0;
    height: 200px;
    border-left: 2px dashed #e5e7eb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lp-hero-product__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 460px;
    margin-top: -230px;
    margin-left: -230px;
    border-radius: 50%;
    border: 3px solid black;
    background: rgba(241, 245, 249, 0.3);
}

/* Orbiting orange dot around the product circle */
.lp-hero-product__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
}

.lp-hero-product__orbit-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ED4B1F;
    
    transform-origin: 0 0;
    transform: rotate(0deg) translateX(222px);
    animation: lp-orbit 7s linear infinite;
}

@keyframes lp-orbit {
    from { transform: rotate(0deg) translateX(222px); }
    to { transform: rotate(360deg) translateX(222px); }
}

.lp-hero-product__step {
    position: absolute;
    width: 130px;
    padding: 12px;
    background: #ffffff;
    border: 3px solid #111827;
    text-align: left;
    font-size: 13px;
}

.lp-hero-product__step-number {
    display: inline-block;
    padding-left:12px;
    padding-right:12px;
    padding-top:5px;
    padding-bottom:5px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight:bold;
    margin-bottom: 8px;
    border-radius:1px;
}

.lp-hero-product__step h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.lp-hero-product__step p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
}

.lp-hero-product__step--top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.lp-hero-product__step--right {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.lp-hero-product__step--bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.lp-hero-product__step--left {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.lp-focus {
    padding-top:0px;
    padding-bottom:250px;
    text-align: center;
    background:#f0f0f0;

}

.lp-focus__header h2 {
    font-size: 50px;
    margin-bottom: 0px;
}

.lp-focus__header p {
    color: #6b7280;
    margin-bottom: 40px;
    font-size:20px;
    
}

.lp-focus__timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 32px;
    padding-left: 100px;
    padding-right: 100px;
}

.lp-focus__line {
    display: none;
    height: 3px;
    background:black;
    margin-right: 12%;
    margin-left:6%;
}

.lp-focus__dot {
    display: none;
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 50%;
    background:black;
}

.lp-focus__dot--1 {
    left: calc(100px + (100% - 760px) * 0.125);
}

.lp-focus__dot--2 {
    left: calc(100px + (100% - 310px) * 0.375);
}

.lp-focus__dot--3 {
    left: calc(100px + (100% - 200px) * 0.625);
}

.lp-focus__dot--4 {
    left: calc(130px + (100% - 230px) * 0.875);
}

.lp-focus__items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    text-align:left;
    padding-left: 80px;
    padding-right: 80px;
}

.lp-focus__item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
}

.lp-focus__item.visible {
    animation: fadeIn 0.5s ease forwards;
}

.lp-focus__item:nth-child(1) { animation-delay: 0s; }
.lp-focus__item:nth-child(2) { animation-delay: 0.1s; }
.lp-focus__item:nth-child(3) { animation-delay: 0.2s; }
.lp-focus__item:nth-child(4) { animation-delay: 0.3s; }
.lp-focus__item:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.lp-focus__item h3 {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: left;
    
       /* ensure all headers take same vertical space */
}

.lp-focus__item p {
    margin: 0 auto;          /* center the paragraph block */
    color: #4b5563;
    font-size: 16px;
    text-align: left;
    margin-bottom:20px;
           /* constrain width so text stays aligned under header */
}

.lp-focus__icon {
    display: none;
}

.lp-focus__number {
    display: none;
}

/* Thin separators between major sections */
.lp-focus,
.lp-waitlist {
    border-top: 1px solid #e5e7eb;
}

.lp-waitlist {
    background:black;
    color: #ffffff;
    padding: 20px 16px 80px;
}

.lp-waitlist__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align:center;
}

.lp-waitlist__inner h2 {
    font-size: 44px;
    margin-bottom: 8px;
}

.lp-waitlist__inner p {
    color: #e5e7eb;
    margin-bottom: 32px;
    font-size:18px;
}

.lp-waitlist__messages {
    margin-bottom: 24px;
}

.lp-waitlist__message {
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.lp-waitlist__message--success {
    background:#022c22;
    color: #ffffff;
}

.lp-waitlist__message--error {
    background: #f87171;
    color: #ffffff;
}

.lp-waitlist__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.lp-waitlist__label span {
    display: block;
    font-weight:400;
    color:#a3a3a3;
    font-size: 16px;
    margin-bottom: 4px;
    font-family: 'Segoe UI', sans-serif;
}

.lp-waitlist__label input,
.lp-waitlist__label textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 4px;
    border: 2px solid transparent;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color:#171717;
    box-sizing: border-box;
    color:#a3a3a3;
}

.lp-waitlist__label input:hover,
.lp-waitlist__label textarea:hover {
    border-color:#404040;
}

.lp-waitlist__label input:focus,
.lp-waitlist__label textarea:focus {
    outline: none;
    border-color:#404040;
    
}

.lp-waitlist__label textarea {
    resize: vertical;
    min-height: 100px;
}

.lp-waitlist__button {
    margin-top: 8px;
    width: 100%;
    padding: 18px 10px;
    background: #ED4B1F;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.lp-waitlist__button:hover {
    
    transform: scaleX(1.02);
}

.lp-waitlist__inner .lp-waitlist__note {
    margin-top: 16px;
    font-size: 14px;
    color: white;
}

.lp-waitlist__logo {
    width: 100px;
    height: auto;
    margin-top: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lp-waitlist__inner .wait_list_contact {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
}

.lp-footer {
    border-top: 1px solid #e5e7eb;
    padding: 16px 16px 24px;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    background: #ffffff;
}


@media (max-width: 768px) {
    /* Navigation */
    .lp-nav {
        padding: 12px 20px;
        flex-wrap: wrap;
    }
    
    .lp-nav__logo img {
        height: 35px;
    }
    
    .lp-nav__links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    
    .lp-nav__links a {
        margin-left: 0;
        font-size: 14px;
    }
    
    .lp-nav__login-btn {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    /* Hero Section */
    .lp-hero-product {
        padding: 30px 20px 120px;
    }
    
    .lp-hero-product__container {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    
    .lp-hero-product__content {
        margin-top: 0;
        text-align: center;
    }
    
    .lp-hero-product__content h1 {
        font-size: 45px;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .lp-hero-product__content p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .lp-hero-product__button {
        padding: 12px 32px;
        font-size: 16px;
        margin-bottom:80px;
    }
    
    /* Product Diagram - Scale down */
    .lp-hero-product__diagram {
        --diagram-size: min(320px, 92vw);
        --circle-size: calc(var(--diagram-size) - 20px);
        --orbit-radius: calc(var(--circle-size) / 2 - 6px);
        --dash-h: calc(var(--circle-size) * 0.63);
        --dash-v: calc(var(--circle-size) * 0.43);
        width: var(--diagram-size);
        height: var(--diagram-size);
        margin: 0 auto;
    }
    
    .lp-hero-product__circle {
        width: var(--circle-size);
        height: var(--circle-size);
        margin-top: calc(var(--circle-size) / -2);
        margin-left: calc(var(--circle-size) / -2);
        border: 2px solid black;
    }
    
    .lp-hero-product__orbit-dot {
        width: 12px;
        height: 12px;
        transform: rotate(0deg) translateX(var(--orbit-radius));
    }
    
    @keyframes lp-orbit {
        from { transform: rotate(0deg) translateX(var(--orbit-radius)); }
        to { transform: rotate(360deg) translateX(var(--orbit-radius)); }
    }
    
    .lp-hero-product__diagram::before {
        width: var(--dash-h);
    }
    
    .lp-hero-product__diagram::after {
        width: 0;
        height: var(--dash-v);
    }
    
    .lp-hero-product__step {
        width: 90px;
        padding: 8px;
        font-size: 12px;
        border: 2px solid #111827;
    }
    
    .lp-hero-product__step--top {
        width: 125px;
    }
    
    .lp-hero-product__step-number {
        padding: 3px 8px;
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .lp-hero-product__step h3 {
        font-size: 16px;
        margin: 0 0 4px;
    }
    
    .lp-hero-product__step p {
        font-size: 12px;
    }
    
    .lp-hero-product__step--top {
        top: -34px;
    }
    
    .lp-hero-product__step--right {
        right: clamp(-35px, -6vw, -12px);
    }
    
    .lp-hero-product__step--bottom {
        bottom: -30px;
    }
    
    .lp-hero-product__step--left {
        left: clamp(-35px, -6vw, -12px);
    }
    
    /* Focus Section */
    .lp-focus {
        padding-top: 10px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .lp-focus__header h2 {
        font-size: 40px;
        margin-bottom: 8px;
    }
    
    .lp-focus__header p {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .lp-focus__timeline {
        display: none;
    }
    
    .lp-focus__icon {
        display: none;
    }
    
    .lp-focus__number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: #000000;
        color: #ffffff;
        font-size: 16px;
        font-weight: bold;
        border-radius: 2px;
        flex-shrink: 0;
        margin-top: 4px;
    }
    
    .lp-focus__items {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    
    .lp-focus__item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    
    .lp-focus__item h3 {
        font-size: 26px;
        text-align: left;
    }
    
    .lp-focus__item p {
        font-size: 16px;
        text-align: left;
    }
    
    /* Waitlist Section */
    .lp-waitlist {
        padding: 20px 20px 60px;
    }
    
    .lp-waitlist__inner {
        max-width: 100%;
        padding-right:30px;
        padding-left:30px;
    }
    
    .lp-waitlist__inner h2 {
        font-size: 28px;
        text-align:center;
    }
    
    .lp-waitlist__inner p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .lp-waitlist__label span {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .lp-waitlist__label input,
    .lp-waitlist__label textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .lp-waitlist__button {
        font-size:16px;
        padding: 14px 16px;
        margin-top: 12px;
        
    }
    
    /* Footer */
    .lp-footer {
        padding: 16px 20px;
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .lp-hero-product__diagram {
        --diagram-size: min(300px, 90vw);
    }

    .lp-hero-product__step--right {
        right: -10px;
    }

    .lp-hero-product__step--left {
        left: -10px;
    }
}