/* =========================================================
   PILOTYT — FREE TOOLS
   Black / Red / Premium Creator UI
========================================================= */

.tool-page {
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.tool-header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5vw;

    border-bottom: 1px solid #191919;

    background: rgba(5, 5, 5, 0.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.tool-logo {
    display: flex;
    align-items: center;
}


.tool-logo img {
    width: 135px;
    max-height: 42px;

    object-fit: contain;
}


.tool-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}


.tool-nav a {
    position: relative;

    color: #737373;

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.25s ease;
}


.tool-nav a:hover,
.tool-nav a.active {
    color: #ffffff;
}


.tool-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -9px;

    height: 2px;

    border-radius: 10px;

    background: #ff1f3d;
}


.tool-header-button {
    padding: 12px 19px;

    border: 1px solid #292929;
    border-radius: 10px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.tool-header-button:hover {
    border-color: #ff1f3d;

    background: #ff1f3d;

    transform: translateY(-2px);
}


/* =========================================================
   MAIN
========================================================= */

.tool-main {
    overflow: hidden;
}


/* =========================================================
   GENERAL TOOL HERO
========================================================= */

.tool-hero {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding: 120px 24px 100px;

    text-align: center;
}


.tool-hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    top: 30px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 31, 61, 0.13),
            transparent 68%
        );

    filter: blur(20px);

    pointer-events: none;
}


.tool-eyebrow {
    position: relative;

    color: #ff334f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.16em;
}


.tool-hero h1 {
    position: relative;

    max-width: 900px;

    margin: 24px auto 0;

    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.91;

    letter-spacing: -0.075em;
}


.tool-hero h1 span {
    color: #ff1f3d;
}


.tool-hero > p {
    position: relative;

    max-width: 650px;

    margin: 30px auto 0;

    color: #777777;

    font-size: 19px;

    line-height: 1.65;
}


/* =========================================================
   ANALYZER CARD
========================================================= */

.analyzer-card {
    position: relative;

    max-width: 850px;

    margin: 65px auto 0;

    padding: 28px;

    border: 1px solid #242424;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #080808
        );

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.45);

    text-align: left;
}


.analyzer-input-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 13px;
}


.analyzer-input-heading span {
    color: #dddddd;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
}


.analyzer-input-heading small {
    color: #555555;

    font-size: 12px;
}


.analyzer-form {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 12px;
}


.channel-input-wrapper {
    position: relative;
}


.input-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #ff1f3d;

    font-size: 16px;
}


.channel-input-wrapper input {
    width: 100%;

    min-height: 62px;

    padding: 0 20px 0 50px;

    border: 1px solid #292929;
    border-radius: 13px;

    outline: none;

    background: #080808;

    color: #ffffff;

    font-family: inherit;

    font-size: 16px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.channel-input-wrapper input::placeholder {
    color: #4f4f4f;
}


.channel-input-wrapper input:focus {
    border-color: rgba(255, 31, 61, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(255, 31, 61, 0.08);
}


.analyze-button {
    min-height: 62px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;
    border-radius: 13px;

    background: #ff1f3d;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.analyze-button:hover {
    background: #ff2947;

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(255, 31, 61, 0.22);
}


.analyze-button:disabled {
    opacity: 0.6;

    cursor: wait;

    transform: none;
}


.tool-spinner {
    display: none;

    width: 18px;
    height: 18px;

    border: 2px solid rgba(255, 255, 255, 0.3);

    border-top-color: #ffffff;

    border-radius: 50%;

    animation:
        tool-spin 0.7s linear infinite;
}


@keyframes tool-spin {
    to {
        transform: rotate(360deg);
    }
}


.analyzer-note {
    margin-top: 16px;

    color: #555555;

    font-size: 12px;
}


.analyzer-note span {
    color: #ff1f3d;
}


/* =========================================================
   GENERAL MESSAGE
========================================================= */

.tool-message {
    display: none;

    margin-top: 15px;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 13px;

    line-height: 1.5;
}


.tool-message.error {
    display: block;

    border: 1px solid
        rgba(255, 31, 61, 0.25);

    background:
        rgba(255, 31, 61, 0.07);

    color: #ff7180;
}


.tool-message.success {
    display: block;

    border: 1px solid
        rgba(70, 200, 130, 0.2);

    background:
        rgba(70, 200, 130, 0.06);

    color: #7bd9a8;
}


/* =========================================================
   ANALYZER RESULTS
========================================================= */

.analysis-results {
    display: none;

    max-width: 1100px;

    margin: 0 auto;

    padding: 30px 24px 110px;
}


.analysis-results.show {
    display: block;

    animation:
        result-enter 0.7s ease both;
}


@keyframes result-enter {
    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   CHANNEL HEADER
========================================================= */

.analysis-channel-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 40px;

    border-bottom: 1px solid #1c1c1c;
}


.channel-main-info {
    flex: 1;
}


.result-eyebrow {
    color: #ff1f3d;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


.analysis-channel-header h2 {
    margin-top: 12px;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -0.055em;
}


.analysis-channel-header p {
    max-width: 700px;

    margin-top: 13px;

    color: #777777;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   CHANNEL SCORE
========================================================= */

.channel-score {
    flex: 0 0 auto;

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 31, 61, 0.35);

    border-radius: 50%;

    background:
        rgba(255, 31, 61, 0.05);
}


.channel-score strong {
    color: #ff1f3d;

    font-size: 42px;

    line-height: 1;
}


.channel-score span {
    margin-top: 5px;

    color: #555555;

    font-size: 12px;
}


/* =========================================================
   CHANNEL STATS
========================================================= */

.channel-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

    margin-top: 24px;
}


.channel-stat {
    min-height: 120px;

    padding: 24px;

    border: 1px solid #1e1e1e;

    border-radius: 16px;

    background: #0a0a0a;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


.channel-stat:hover {
    border-color: #2b2b2b;

    transform:
        translateY(-2px);
}


.channel-stat span {
    display: block;

    color: #555555;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.channel-stat strong {
    display: block;

    margin-top: 14px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -0.035em;
}


/* =========================================================
   AUDIENCE / CONTENT
========================================================= */

.audience-content-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-top: 18px;
}


/* =========================================================
   ANALYSIS GRID
========================================================= */

.analysis-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-top: 18px;
}


.analysis-card {
    padding: 30px;

    border: 1px solid #1e1e1e;

    border-radius: 18px;

    background: #0a0a0a;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}


.analysis-card:hover {
    border-color: #282828;

    transform:
        translateY(-2px);
}


.analysis-card-wide {
    grid-column: span 2;
}


.analysis-card-label {
    color: #ff1f3d;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.13em;
}


.analysis-card h3 {
    margin-top: 12px;

    font-size: 25px;

    letter-spacing: -0.035em;
}


.analysis-card p {
    margin-top: 17px;

    color: #858585;

    font-size: 15px;

    line-height: 1.7;
}


.analysis-card ul {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 20px;

    padding: 0;

    list-style: none;
}


.analysis-card li {
    position: relative;

    padding-left: 22px;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.55;
}


.analysis-card li::before {
    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    left: 0;
    top: 8px;

    border-radius: 50%;

    background: #ff1f3d;
}


/* =========================================================
   ANALYSIS DISCLAIMER
========================================================= */

.analysis-disclaimer {
    margin-top: 25px;

    padding: 18px;

    border: 1px solid #171717;

    border-radius: 12px;

    color: #505050;

    font-size: 12px;

    line-height: 1.6;
}


.analysis-disclaimer span {
    color: #777777;
}


/* =========================================================
   ANALYZE AGAIN
========================================================= */

.analyze-again {
    display: block;

    margin: 30px auto 0;

    padding: 14px 20px;

    border: 1px solid #292929;

    border-radius: 10px;

    background: transparent;

    color: #aaaaaa;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.analyze-again:hover {
    color: #ffffff;

    border-color: #ff1f3d;
}


.analyze-again span {
    margin-left: 5px;

    color: #ff1f3d;
}


/* =========================================================
   =========================================================
   TITLE GENERATOR
   =========================================================
   ========================================================= */


/* =========================================================
   TITLE HERO
========================================================= */

.title-hero {
    position: relative;

    max-width: 1180px;

    margin: 0 auto;

    padding: 115px 24px 100px;

    text-align: center;
}


.title-hero::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    left: 50%;
    top: -180px;

    transform:
        translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(255, 31, 61, 0.11),
            transparent 67%
        );

    filter: blur(25px);

    pointer-events: none;
}


.title-hero h1 {
    position: relative;

    max-width: 1050px;

    margin: 25px auto 0;

    font-size:
        clamp(
            58px,
            9vw,
            118px
        );

    line-height: 0.88;

    letter-spacing: -0.08em;
}


.title-hero h1 span {
    color: #ff1f3d;
}


.title-hero > p {
    position: relative;

    max-width: 700px;

    margin: 32px auto 0;

    color: #777777;

    font-size: 18px;

    line-height: 1.65;
}


/* =========================================================
   TITLE GENERATOR CARD
========================================================= */

.title-generator-card {
    position: relative;

    max-width: 950px;

    margin: 60px auto 0;

    padding: 34px;

    border: 1px solid #242424;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #080808
        );

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.48);

    text-align: left;
}


/* =========================================================
   TITLE FORM
========================================================= */

.title-generator-form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


/* =========================================================
   FIELD
========================================================= */

.title-field,
.title-input-section {
    position: relative;
}


.title-field-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}


.title-field-header label {
    color: #dddddd;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.11em;
}


.title-field-header span {
    color: #4e4e4e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


/* =========================================================
   TEXTAREA
========================================================= */

.title-field textarea,
.title-input-section textarea {
    width: 100%;

    resize: vertical;

    min-height: 115px;

    padding: 18px 20px;

    border: 1px solid #292929;

    border-radius: 13px;

    outline: none;

    background: #080808;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    line-height: 1.55;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.title-field textarea::placeholder,
.title-input-section textarea::placeholder {
    color: #4d4d4d;
}


.title-field textarea:focus,
.title-input-section textarea:focus {
    border-color:
        rgba(255, 31, 61, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(255, 31, 61, 0.07);
}


/* =========================================================
   CHARACTER COUNTER
========================================================= */

.character-counter {
    position: absolute;

    right: 14px;
    bottom: 10px;

    color: #454545;

    font-size: 10px;

    pointer-events: none;
}


.character-counter span {
    color: #777777;
}


/* =========================================================
   INPUTS
========================================================= */

.title-field input,
.title-field select {
    width: 100%;

    min-height: 56px;

    padding: 0 16px;

    border: 1px solid #292929;

    border-radius: 12px;

    outline: none;

    background: #080808;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.title-field input::placeholder {
    color: #4d4d4d;
}


.title-field input:focus,
.title-field select:focus {
    border-color:
        rgba(255, 31, 61, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(255, 31, 61, 0.07);
}


/* =========================================================
   SELECT
========================================================= */

.title-field select {
    appearance: none;

    cursor: pointer;

    padding-right: 42px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #777777 50%
        ),
        linear-gradient(
            135deg,
            #777777 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 24px,
        calc(100% - 14px) 24px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


.title-field select option {
    background: #0b0b0b;

    color: #ffffff;
}


/* =========================================================
   OPTIONS GRID
========================================================= */

.title-options-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


/* =========================================================
   GENERATE BUTTON
========================================================= */

.title-generate-button {
    width: 100%;

    min-height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 3px;

    border: 0;

    border-radius: 13px;

    background: #ff1f3d;

    color: #ffffff;

    font-family: inherit;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.title-generate-button:hover {
    background: #ff2947;

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 42px
        rgba(255, 31, 61, 0.2);
}


.title-generate-button:active {
    transform:
        translateY(0);
}


.title-generate-button:disabled {
    opacity: 0.6;

    cursor: wait;

    transform: none;

    box-shadow: none;
}


.generate-arrow {
    font-size: 18px;

    transition:
        transform 0.25s ease;
}


.title-generate-button:hover
.generate-arrow {
    transform:
        translateX(4px);
}


/* =========================================================
   GENERATOR NOTE
========================================================= */

.title-generator-note {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #505050;

    font-size: 11px;

    line-height: 1.5;
}


.title-generator-note span {
    color: #ff1f3d;
}


/* =========================================================
   TITLE RESULTS
========================================================= */

.title-results {
    display: none;

    max-width: 1100px;

    margin: 0 auto;

    padding:
        35px 24px
        110px;
}


.title-results.show {
    display: block;

    animation:
        result-enter
        0.65s ease both;
}


/* =========================================================
   RESULTS HEADER
========================================================= */

.title-results-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 35px;

    border-bottom:
        1px solid #1c1c1c;
}


.title-results-header h2 {
    margin-top: 12px;

    font-size:
        clamp(
            42px,
            6vw,
            72px
        );

    line-height: 0.95;

    letter-spacing: -0.06em;
}


.title-results-header p {
    max-width: 600px;

    margin-top: 15px;

    color: #777777;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   GENERATE AGAIN
========================================================= */

.generate-again-button {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 17px;

    border: 1px solid #292929;

    border-radius: 10px;

    background: #0a0a0a;

    color: #aaaaaa;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.generate-again-button:hover {
    border-color: #ff1f3d;

    color: #ffffff;

    transform:
        translateY(-2px);
}


.generate-again-button span {
    color: #ff1f3d;

    font-size: 16px;
}


/* =========================================================
   GENERATED TITLES
========================================================= */

.generated-titles {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 25px;
}


/* =========================================================
   GENERATED TITLE CARD
========================================================= */

.generated-title-card {
    position: relative;

    display: grid;

    grid-template-columns:
        52px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 24px;

    border:
        1px solid #1d1d1d;

    border-radius: 16px;

    background:
        linear-gradient(
            120deg,
            #0b0b0b,
            #080808
        );

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}


.generated-title-card:hover {
    border-color:
        #303030;

    background:
        linear-gradient(
            120deg,
            #101010,
            #090909
        );

    transform:
        translateX(3px);
}


/* =========================================================
   RANK
========================================================= */

.generated-title-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: #111111;

    color: #555555;

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   TITLE TEXT
========================================================= */

.generated-title-content {
    min-width: 0;
}


.generated-title-text {
    color: #ffffff;

    font-size:
        clamp(
            16px,
            2vw,
            20px
        );

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: -0.02em;
}


.generated-title-meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-top: 10px;
}


.generated-title-angle {
    display: inline-flex;

    align-items: center;

    padding: 5px 9px;

    border:
        1px solid
        rgba(255, 31, 61, 0.2);

    border-radius: 6px;

    background:
        rgba(255, 31, 61, 0.05);

    color: #ff536b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


.generated-title-reason {
    color: #505050;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   TITLE SCORE
========================================================= */

.generated-title-score {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-width: 70px;

    padding-left: 15px;

    border-left:
        1px solid #202020;
}


.generated-title-score strong {
    color: #ff1f3d;

    font-size: 27px;

    line-height: 1;
}


.generated-title-score span {
    margin-top: 5px;

    color: #505050;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   COPY BUTTON
========================================================= */

.generated-title-copy {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-left: 10px;

    border: 1px solid #252525;

    border-radius: 8px;

    background: #0d0d0d;

    color: #777777;

    font-family: inherit;

    font-size: 13px;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.generated-title-copy:hover {
    border-color: #ff1f3d;

    background:
        rgba(255, 31, 61, 0.07);

    color: #ffffff;
}


.generated-title-copy.copied {
    border-color:
        #42c88a;

    color:
        #42c88a;
}


/* =========================================================
   RESULT NOTE
========================================================= */

.title-results-note {
    margin-top: 20px;

    padding: 18px 20px;

    border:
        1px solid #171717;

    border-radius: 12px;

    color: #505050;

    font-size: 12px;

    line-height: 1.6;
}


.title-results-note strong {
    color: #777777;
}


/* =========================================================
   EMPTY / LOADING RESULT
========================================================= */

.title-results-loading {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 220px;

    border:
        1px solid #1d1d1d;

    border-radius: 18px;

    background: #090909;
}


.title-results-loading-inner {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color: #555555;

    font-size: 12px;
}


.title-results-loading .tool-spinner {
    display: block;

    width: 25px;
    height: 25px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.tool-bottom-cta {
    padding:
        120px 24px;

    border-top:
        1px solid #151515;

    text-align:
        center;
}


.tool-bottom-cta > span {
    color:
        #ff1f3d;

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        0.15em;
}


.tool-bottom-cta h2 {
    max-width:
        750px;

    margin:
        22px auto 0;

    font-size:
        clamp(
            45px,
            7vw,
            82px
        );

    line-height:
        0.95;

    letter-spacing:
        -0.065em;
}


.tool-bottom-cta h2 span {
    color:
        #ff1f3d;
}


.tool-bottom-cta p {
    max-width:
        600px;

    margin:
        25px auto 0;

    color:
        #707070;

    font-size:
        16px;

    line-height:
        1.7;
}


.tool-cta-button {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    margin-top:
        35px;

    padding:
        16px 23px;

    border-radius:
        11px;

    background:
        #ff1f3d;

    color:
        #ffffff;

    font-size:
        14px;

    font-weight:
        800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.tool-cta-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(255, 31, 61, 0.2);
}


/* =========================================================
   FOOTER
========================================================= */

.tool-footer {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        25px 5vw;

    border-top:
        1px solid #151515;

    color:
        #454545;

    font-size:
        12px;
}


/* =========================================================
   GENERAL RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .tool-nav {
        display:
            none;
    }


    .tool-hero,
    .title-hero {
        padding-top:
            90px;
    }


    .analyzer-form {
        grid-template-columns:
            1fr;
    }


    .title-results-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .generate-again-button {
        align-self:
            flex-start;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 750px) {

    .title-options-grid {
        grid-template-columns:
            1fr;
    }


    .generated-title-card {
        grid-template-columns:
            44px 1fr;

        gap:
            15px;
    }


    .generated-title-score {
        grid-column:
            2;

        align-items:
            flex-start;

        min-width:
            auto;

        padding:
            10px 0 0;

        border-left:
            0;

        border-top:
            1px solid #202020;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .tool-header {
        height:
            70px;

        padding:
            0 20px;
    }


    .tool-header-button {
        padding:
            10px 13px;

        font-size:
            12px;
    }


    .tool-logo img {
        width:
            115px;
    }


    .tool-hero {
        padding:
            75px 18px 70px;
    }


    .tool-hero h1 {
        font-size:
            clamp(
                48px,
                15vw,
                75px
            );
    }


    .tool-hero > p {
        font-size:
            16px;
    }


    /* -----------------------------------------------------
       ANALYZER
    ----------------------------------------------------- */

    .analyzer-card {
        padding:
            18px;

        border-radius:
            17px;
    }


    .analysis-results {
        padding:
            20px 18px 80px;
    }


    .analysis-channel-header {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .channel-score {
        width:
            105px;

        height:
            105px;
    }


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


    .audience-content-grid {
        grid-template-columns:
            1fr;
    }


    .analysis-grid {
        grid-template-columns:
            1fr;
    }


    .analysis-card-wide {
        grid-column:
            span 1;
    }


    /* -----------------------------------------------------
       TITLE GENERATOR
    ----------------------------------------------------- */

    .title-hero {
        padding:
            75px 16px 70px;
    }


    .title-hero h1 {
        font-size:
            clamp(
                50px,
                15vw,
                78px
            );
    }


    .title-hero > p {
        font-size:
            15px;

        line-height:
            1.6;
    }


    .title-generator-card {
        margin-top:
            45px;

        padding:
            18px;

        border-radius:
            18px;
    }


    .title-generator-form {
        gap:
            20px;
    }


    .title-field textarea,
    .title-input-section textarea {
        min-height:
            125px;

        padding:
            16px;

        font-size:
            14px;
    }


    .title-field input,
    .title-field select {
        min-height:
            54px;

        font-size:
            14px;
    }


    .title-generate-button {
        min-height:
            60px;

        font-size:
            14px;
    }


    .title-results {
        padding:
            20px 16px 80px;
    }


    .title-results-header h2 {
        font-size:
            clamp(
                43px,
                13vw,
                65px
            );
    }


    .title-results-header p {
        font-size:
            14px;
    }


    .generated-title-card {
        grid-template-columns:
            40px 1fr;

        padding:
            18px;

        border-radius:
            14px;
    }


    .generated-title-number {
        width:
            36px;

        height:
            36px;
    }


    .generated-title-text {
        font-size:
            15px;
    }


    .generated-title-reason {
        display:
            block;

        margin-top:
            4px;
    }


    .generated-title-score {
        grid-column:
            2;

        flex-direction:
            row;

        align-items:
            center;

        gap:
            8px;

        padding-top:
            12px;
    }


    .generated-title-score strong {
        font-size:
            22px;
    }


    .generated-title-score span {
        margin-top:
            0;
    }


    .generated-title-copy {
        margin-left:
            auto;
    }


    .tool-bottom-cta {
        padding:
            85px 20px;
    }


    .tool-footer {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            8px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}