/* =========================================================
   FTP · TicoDesign
========================================================= */

:root {
    --ftp-orange: #f28a1a;
    --ftp-green: #2f9b57;
    --ftp-dark: #101214;
    --ftp-text: #272b2f;
    --ftp-muted: #6b7076;
    --ftp-border: #e8e9eb;
    --ftp-bg: #f7f8f8;
    --ftp-white: #ffffff;
}

.ftp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ftp-section-tag,
.ftp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--ftp-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ftp-section-tag::before,
.ftp-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: var(--ftp-orange);
}

.ftp-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.ftp-heading--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ftp-heading--center .ftp-section-tag {
    justify-content: center;
}

.ftp-heading h2,
.ftp-intro h2,
.ftp-software h2,
.ftp-public h2,
.ftp-help h2 {
    margin: 0 0 18px;
    color: var(--ftp-dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.ftp-heading h2 span,
.ftp-intro h2 span,
.ftp-software h2 span,
.ftp-public h2 span,
.ftp-help h2 span {
    color: var(--ftp-orange);
}

.ftp-heading > p,
.ftp-intro__content > p,
.ftp-software__content > p,
.ftp-public__content > p,
.ftp-help > div > p {
    color: var(--ftp-muted);
    font-size: 16px;
    line-height: 1.8;
}


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

.ftp-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 15% 20%, rgba(242, 138, 26, .10), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(47, 155, 87, .09), transparent 30%),
        #101214;
}

.ftp-hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    pointer-events: none;
}

.ftp-hero__glow--orange {
    top: -200px;
    left: -150px;
    background: var(--ftp-orange);
}

.ftp-hero__glow--green {
    right: -180px;
    bottom: -220px;
    background: var(--ftp-green);
}

.ftp-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 75px;
    align-items: center;
}

.ftp-hero h1 {
    max-width: 620px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.ftp-hero h1 span {
    color: var(--ftp-orange);
}

.ftp-hero__lead {
    max-width: 630px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}

.ftp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ftp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.ftp-btn--primary {
    color: #fff;
    background: var(--ftp-orange);
}

.ftp-btn--primary:hover {
    transform: translateY(-2px);
    background: #dc7711;
}

.ftp-btn--ghost {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    background: rgba(255,255,255,.04);
}

.ftp-btn--ghost:hover {
    background: rgba(255,255,255,.09);
}

.ftp-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.ftp-hero__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ftp-hero__meta strong {
    color: var(--ftp-green);
}


/* ventana */

.ftp-window {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
    backdrop-filter: blur(14px);
}

.ftp-window__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.ftp-window__dots {
    display: flex;
    gap: 6px;
}

.ftp-window__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}

.ftp-window__dots span:first-child {
    background: var(--ftp-orange);
}

.ftp-window__dots span:last-child {
    background: var(--ftp-green);
}

.ftp-window__title {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.ftp-window__body {
    padding: 22px;
}

.ftp-server {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.2);
}

.ftp-server__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--ftp-orange);
}

.ftp-server small {
    display: block;
    color: rgba(255,255,255,.4);
}

.ftp-server strong {
    color: #fff;
    font-size: 12px;
}

.ftp-server__status {
    padding: 6px 9px;
    border-radius: 20px;
    color: #70d395;
    background: rgba(47,155,87,.15);
    font-size: 10px;
}

.ftp-transfer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.ftp-transfer__side {
    padding: 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.16);
}

.ftp-transfer__label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.32);
    font-size: 9px;
    letter-spacing: .08em;
}

.ftp-folder,
.ftp-file {
    padding: 7px 8px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.ftp-folder {
    margin-bottom: 4px;
    border-radius: 7px;
    color: #fff;
    background: rgba(255,255,255,.06);
}

.ftp-folder--server {
    border: 1px solid rgba(47,155,87,.25);
}

.ftp-file--active {
    color: #fff;
    background: rgba(242,138,26,.1);
}

.ftp-transfer__arrow {
    color: var(--ftp-orange);
    font-size: 24px;
}

.ftp-progress {
    margin-top: 18px;
}

.ftp-progress__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
    color: rgba(255,255,255,.45);
    font-size: 10px;
}

.ftp-progress__top strong {
    color: var(--ftp-green);
}

.ftp-progress__bar {
    height: 5px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
}

.ftp-progress__bar span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--ftp-orange),
        var(--ftp-green)
    );
}


/* =========================================================
   INTRO
========================================================= */

.ftp-intro {
    padding: 100px 0;
    background: #fff;
}

.ftp-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.ftp-intro__note {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #e7e8e9;
    border-radius: 14px;
    background: #fafafa;
}

.ftp-intro__note-icon {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ftp-green);
    font-weight: 700;
}

.ftp-intro__note p {
    margin: 0;
    color: var(--ftp-muted);
    font-size: 13px;
    line-height: 1.7;
}

.ftp-intro__diagram {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    align-items: center;
}

.ftp-node {
    padding: 30px 15px;
    border: 1px solid var(--ftp-border);
    border-radius: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.ftp-node--server {
    border-color: rgba(47,155,87,.25);
}

.ftp-node__icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin: 0 auto 14px;
    place-items: center;
    border-radius: 15px;
    background: #f4f5f5;
    font-size: 25px;
}

.ftp-node strong,
.ftp-node small {
    display: block;
}

.ftp-node strong {
    color: var(--ftp-dark);
    font-size: 13px;
}

.ftp-node small {
    margin-top: 5px;
    color: var(--ftp-muted);
    font-size: 10px;
}

.ftp-connection {
    position: relative;
    text-align: center;
}

.ftp-connection__line {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: #ddd;
}

.ftp-connection__badge {
    position: relative;
    z-index: 2;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ftp-orange);
    font-size: 10px;
    font-weight: 700;
}

.ftp-connection__arrows {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 6px;
    color: var(--ftp-green);
}


/* =========================================================
   DATOS
========================================================= */

.ftp-data {
    padding: 100px 0;
    background: var(--ftp-bg);
}

.ftp-data__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ftp-data-card {
    position: relative;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid var(--ftp-border);
    border-radius: 16px;
    background: #fff;
    transition: .25s ease;
}

.ftp-data-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242,138,26,.3);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.ftp-data-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #e6e6e6;
    font-size: 28px;
    font-weight: 700;
}

.ftp-data-card__icon {
    display: grid;
    width: 43px;
    height: 43px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 11px;
    color: var(--ftp-orange);
    background: rgba(242,138,26,.10);
}

.ftp-data-card h3 {
    margin: 0 0 10px;
    color: var(--ftp-dark);
    font-size: 17px;
}

.ftp-data-card p {
    min-height: 67px;
    margin: 0;
    color: var(--ftp-muted);
    font-size: 12px;
    line-height: 1.7;
}

.ftp-example {
    margin-top: 18px;
    padding: 10px 11px;
    border-radius: 8px;
    color: #555;
    background: #f6f6f6;
    font-family: monospace;
    font-size: 11px;
}

.ftp-security-note {
    display: flex;
    gap: 16px;
    max-width: 760px;
    margin: 35px auto 0;
    padding: 20px 22px;
    border: 1px solid rgba(47,155,87,.20);
    border-radius: 14px;
    background: rgba(47,155,87,.055);
}

.ftp-security-note__icon {
    font-size: 22px;
}

.ftp-security-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ftp-dark);
}

.ftp-security-note p {
    margin: 0;
    color: var(--ftp-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   SOFTWARE
========================================================= */

.ftp-software {
    padding: 100px 0;
    background: #fff;
}

.ftp-software__card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    overflow: hidden;
    border: 1px solid var(--ftp-border);
    border-radius: 24px;
}

.ftp-software__content {
    padding: 60px;
}

.ftp-software__visual {
    display: grid;
    min-height: 390px;
    place-items: center;
    padding: 40px;
    background: #111416;
}

.ftp-app {
    width: min(300px, 100%);
    padding: 35px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    text-align: center;
    background: rgba(255,255,255,.05);
}

.ftp-app__logo {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--ftp-orange);
    font-size: 24px;
    font-weight: 800;
}

.ftp-app strong,
.ftp-app > span {
    display: block;
}

.ftp-app strong {
    color: #fff;
}

.ftp-app > span {
    margin-top: 6px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}

.ftp-app__protocols {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}

.ftp-app__protocols span {
    padding: 6px 9px;
    border-radius: 20px;
    color: #8cdbaa;
    background: rgba(47,155,87,.15);
    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   STEPS
========================================================= */

.ftp-steps {
    padding: 100px 0;
    background: var(--ftp-bg);
}

.ftp-steps__list {
    display: grid;
    gap: 12px;
}

.ftp-step {
    display: grid;
    grid-template-columns: 70px 1fr minmax(180px, 300px);
    gap: 25px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--ftp-border);
    border-radius: 16px;
    background: #fff;
}

.ftp-step__number {
    color: #dedede;
    font-size: 30px;
    font-weight: 700;
}

.ftp-step__eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--ftp-orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ftp-step h3 {
    margin: 0 0 6px;
    color: var(--ftp-dark);
    font-size: 18px;
}

.ftp-step p {
    max-width: 620px;
    margin: 0;
    color: var(--ftp-muted);
    font-size: 12px;
    line-height: 1.7;
}

.ftp-step__mini,
.ftp-step__success {
    padding: 14px;
    border-radius: 10px;
    background: #f6f6f6;
    color: #555;
    font-size: 11px;
}

.ftp-step__mini span {
    margin-right: 8px;
    color: var(--ftp-orange);
}

.ftp-step__success {
    color: var(--ftp-green);
    background: rgba(47,155,87,.07);
}

.ftp-step__success span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--ftp-green);
}

.ftp-step__fields {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    padding: 12px;
    border-radius: 10px;
    background: #f7f7f7;
    font-size: 9px;
}

.ftp-step__fields span {
    color: #999;
}

.ftp-step__fields strong {
    color: #444;
}


/* =========================================================
   PUBLIC HTML
========================================================= */

.ftp-public {
    padding: 100px 0;
    background: #fff;
}

.ftp-public__card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 45px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.ftp-public__icon {
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border-radius: 30px;
    background: rgba(242,138,26,.08);
    font-size: 55px;
}

.ftp-public__path {
    display: inline-block;
    margin: 5px 0 18px;
    padding: 13px 18px;
    border-radius: 10px;
    color: var(--ftp-green);
    background: rgba(47,155,87,.07);
    font-family: monospace;
    font-size: 17px;
    font-weight: 700;
}

.ftp-warning {
    display: flex;
    gap: 15px;
    max-width: 900px;
    margin: 45px auto 0;
    padding: 20px;
    border: 1px solid rgba(242,138,26,.22);
    border-radius: 14px;
    background: rgba(242,138,26,.055);
}

.ftp-warning__mark {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ftp-orange);
    font-weight: 800;
}

.ftp-warning strong {
    color: var(--ftp-dark);
}

.ftp-warning p {
    margin: 4px 0 0;
    color: var(--ftp-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   TRANSFER
========================================================= */

.ftp-transfer-section {
    padding: 100px 0;
    background: var(--ftp-bg);
}

.ftp-transfer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 850px;
    margin: 0 auto;
}

.ftp-transfer-card {
    padding: 38px;
    border: 1px solid var(--ftp-border);
    border-radius: 18px;
    background: #fff;
}

.ftp-transfer-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 13px;
    color: var(--ftp-orange);
    background: rgba(242,138,26,.1);
    font-size: 22px;
}

.ftp-transfer-card__icon--green {
    color: var(--ftp-green);
    background: rgba(47,155,87,.1);
}

.ftp-transfer-card > span {
    color: #aaa;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.ftp-transfer-card h3 {
    margin: 8px 0 12px;
    color: var(--ftp-dark);
    font-size: 20px;
}

.ftp-transfer-card p {
    margin: 0;
    color: var(--ftp-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   HELP
========================================================= */

.ftp-help {
    padding: 100px 0;
    background: #fff;
}

.ftp-help__grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.ftp-help__items {
    display: grid;
    gap: 10px;
}

.ftp-help-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--ftp-border);
    border-radius: 13px;
}

.ftp-help-item > span {
    color: var(--ftp-orange);
    font-size: 12px;
    font-weight: 700;
}

.ftp-help-item strong {
    color: var(--ftp-dark);
    font-size: 13px;
}

.ftp-help-item p {
    margin: 4px 0 0;
    color: var(--ftp-muted);
    font-size: 11px;
    line-height: 1.6;
}


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

.ftp-cta {
    padding: 35px 0 90px;
    background: #fff;
}

.ftp-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 50px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 20%, rgba(47,155,87,.16), transparent 28%),
        #111416;
}

.ftp-section-tag--light {
    color: var(--ftp-orange);
}

.ftp-cta h2 {
    max-width: 700px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -.03em;
}

.ftp-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

.ftp-btn--white {
    color: #111;
    background: #fff;
}

.ftp-btn--white:hover {
    transform: translateY(-2px);
    background: var(--ftp-orange);
    color: #fff;
}


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

@media (max-width: 950px) {

    .ftp-hero__grid,
    .ftp-intro__grid,
    .ftp-software__card,
    .ftp-help__grid {
        grid-template-columns: 1fr;
    }

    .ftp-data__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ftp-hero__grid {
        gap: 55px;
    }

    .ftp-software__content {
        padding: 45px;
    }

    .ftp-step {
        grid-template-columns: 55px 1fr;
    }

    .ftp-step > :last-child {
        grid-column: 2;
    }

}


@media (max-width: 650px) {

    .ftp-container {
        width: min(100% - 28px, 1180px);
    }

    .ftp-hero {
        padding: 75px 0 65px;
    }

    .ftp-hero__actions {
        flex-direction: column;
    }

    .ftp-btn {
        width: 100%;
    }

    .ftp-transfer {
        grid-template-columns: 1fr;
    }

    .ftp-transfer__arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .ftp-data__grid,
    .ftp-transfer-cards {
        grid-template-columns: 1fr;
    }

    .ftp-intro__diagram {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ftp-connection {
        height: 70px;
    }

    .ftp-connection__line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        height: auto;
    }

    .ftp-public__card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ftp-public__icon {
        width: 90px;
        height: 90px;
        border-radius: 20px;
        font-size: 38px;
    }

    .ftp-step {
        grid-template-columns: 1fr;
    }

    .ftp-step > :last-child {
        grid-column: auto;
    }

    .ftp-cta__inner {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

    .ftp-software__content {
        padding: 35px 25px;
    }

}