/* Reset and Base Styles */
/* Reset and Base Styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main,
hr {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header / Menu */
header {
    width: 100%;
    max-width: 800px;
    /* Aligns with H1 */
    padding: 2rem 1rem;
    /* Reduced side padding to match text alignment better on diverse screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* Required for margin: auto centering with absolute position */
    margin: 0 auto;
    z-index: 100;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    /* Optional: Add a subtle border if it blends too much, but user wants minimalist */
}

.logo {
    background-color: #FFFFFF;
    /* White Background */
    color: #000000;
    /* Black Text */
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    letter-spacing: -0.02em;
    /* Simulate the box look */
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically in the remaining space */
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    /* Top padding clears the header */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    /* Mobile default */
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    max-width: 800px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
        /* Desktop size */
    }
}

.subtitle {
    font-size: 1.125rem;
    /* Mobile default */
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.5rem;
        /* Desktop size */
    }
}

p {
    margin-bottom: 1rem;
}

.embed-placeholder {
    width: 100%;
    max-width: 600px;
    height: 337px;
    /* 16:9 approx */
    background-color: #111;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 600px) {
    header {
        padding: 1.5rem;
    }

    .profile-image {
        width: 60px;
        height: 60px;
    }

    .logo {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    main {
        padding-top: 7rem;
        /* Ensure clearance on mobile too */
    }

    .embed-placeholder {
        height: 200px;
    }
}

/* Content Updates */
.content-image {
    display: block;
    width: 90%;
    max-width: 450px;
    height: auto;
    margin: 2rem auto;
    /* More spacing and centered */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* Optional: adds depth */
}

.big-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.uppercase-text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.separator {
    border: 0;
    height: 1px;
    background: #333;
    margin: 3rem auto;
    width: 100px;
}

.conversation {
    font-style: italic;
    color: #cccccc;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
}

.conversation p {
    margin-bottom: 0.5rem;
}

/* ======= HERO QUOTE — H1 redesign ======= */

h1.hero-quote {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5.2vw, 4.2rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    max-width: 1100px;
    width: 90vw;
    color: #888;
}

h1.hero-quote .q-line {
    display: block;
    overflow: hidden;
    margin-bottom: 2px;
}

h1.hero-quote .q-inner {
    display: block;
    transform: translateY(110%);
    animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

h1.hero-quote .q-line:nth-child(1) .q-inner { animation-delay: 0.15s; }
h1.hero-quote .q-line:nth-child(2) .q-inner { animation-delay: 0.28s; }
h1.hero-quote .q-line:nth-child(3) .q-inner { animation-delay: 0.41s; }
h1.hero-quote .q-line:nth-child(4) .q-inner { animation-delay: 0.54s; }

@keyframes heroReveal {
    to { transform: translateY(0); }
}

.kw-positive {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline;
}

.kw-positive::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    animation: drawLine 0.7s ease-out 1.3s forwards;
}

@keyframes drawLine {
    to { width: 100%; }
}

.kw-pivot {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
}

.kw-negative {
    color: #3a3a3a;
    text-decoration: line-through;
    text-decoration-color: #555;
    text-decoration-thickness: 1px;
    transition: all 0.5s ease;
}

h1.hero-quote:hover .kw-negative {
    color: #ff4444;
    text-decoration-color: #ff4444;
}

@media (max-width: 600px) {
    h1.hero-quote {
        text-align: center;
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
}