* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gabarito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    font-weight: bold;
    font-size: 18px;
}

.header-right {
    font-size: 14px;
    font-weight: normal;
}

.header-right a {
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-right a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    padding: 50px 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 52px;
    font-weight: lighter;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: normal;
    margin: -10px 0 10px 0;
    color: #333;
    text-align: center;
}

.call-out{
    font-weight: 900;
}

.hero-subtitle {
    font-size: 25px;
    font-weight: normal;
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    padding:0 40px;
}

/* Meter Section */
.meter-section {
    padding: 0px 0;
    text-align: center;
}

.meter-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0px 0;

}

.meter-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.notification-image {
    max-width: 400px;
    width: 82%;
    height: auto;
    display: block;
}

.truth-subtitle{
    text-align: center;
}

/* Brandolini / truth section */
.truth-section {
    padding: 40px 0 20px 0;
}

.truth-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

.truth-copy-1 {
    text-align: center;
    max-width: 520px;
    padding: 20px 25px;
    background-color: #f1f1f1;
    border-radius: 14px;
}

.truth-copy{
    text-align: center;
    max-width: 650px;
}

.truth-eyebrow {
    font-size: 24px;
    margin-bottom: 10px;
}

.truth-eyebrow-text{
    font-size: 18px;
    max-width: 450px;
    margin: auto;
}

.truth-headline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.truth-subline {
    font-size: 20px;
    color: #555;
}

.truth-subline-2{
    font-size: 12px;
    color: #555;
}

.truth-device {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
}

.truth-phone {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0;
    border-radius: 14px;
}
.truth-card-wrapper {
    max-width: 430px;
    width: 100%;
    height: 260px;
    margin: 30px auto 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.signup-subtitle{
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.truth-card{
    width: 100%;
    height: 160%;
    display: block;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}

.truth-chips {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 640px;
}

.truth-chip {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    background-color: #fafafa;
}

/* Footer */
.footer {
    padding: 20px 0 10px 0;
    text-align: center;
}

.footer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #000000;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #000000;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    outline: none;
    background-color: #ffffff;
    color: #000000;
}

.email-input::placeholder {
    color: #999999;
}

.email-input:focus {
    border-color: #333333;
}

.signup-button {
    padding: 12px 24px;
    border: 1px solid #000000;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.signup-button:hover {
    background-color: #f5f5f5;
}

.signup-button:active {
    background-color: #eeeeee;
}

/* Site footer */
.site-footer {
    padding: 20px 0 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #666;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer a {
    color: #666;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .meter-image,
    .notification-image {
        max-width: 95%;
    }

    .signup-form {
        flex-direction: column;
        max-width: 90%;
    }

    .email-input {
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .signup-button {
        border-radius: 6px;
        border-left: 1px solid #000000;
    }

    .truth-layout {
        align-items: center;
        text-align: center;
    }

    .truth-phone {
        max-width: 100%;
    }

    .truth-card-wrapper {
        max-width: 100%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }

    .header-left {
        font-size: 16px;
    }

    .header-right {
        font-size: 12px;
    }
}
