:root {
    --primary: #00b9b0;
    --primary-dark: #008f89;
    --primary-soft: #e8fbf9;
    --black: #101312;
    --text: #252b29;
    --muted: #69716f;
    --border: #e5e9e7;
    --surface: #f6f8f7;
    --white: #ffffff;
    --radius: 24px;
    --shadow: 0 25px 80px rgba(15, 25, 23, 0.09);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

/* Header */

.site-header {
    position: relative;
    z-index: 20;
    height: 76px;
    border-bottom: 1px solid rgba(16, 19, 18, 0.07);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand span {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: 90px;
}

.desktop-nav a {
    color: #555e5b;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.header-login {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 19px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.header-login:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* Hero */

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero-background {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: -170px;
    border-radius: 50%;
    background: rgba(0, 185, 176, 0.07);
    filter: blur(2px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 590px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid #cfeeea;
    border-radius: 999px;
    background: #f4fffe;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(0, 185, 176, 0.12);
}

.hero h1 {
    margin-top: 24px;
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.99;
}

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

.hero-description {
    max-width: 530px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.primary-button,
.secondary-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: var(--black);
    box-shadow: 0 10px 30px rgba(16, 19, 18, 0.13);
}

.primary-button span,
.cta-button span {
    color: var(--primary);
    font-size: 18px;
}

.primary-button:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 19, 18, 0.18);
}

.secondary-button {
    color: var(--text);
    border: 1px solid var(--border);
    background: var(--white);
}

.secondary-button:hover {
    border-color: #b8d9d6;
    background: #f8fbfa;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 38px;
}

.avatar-stack {
    display: flex;
    padding-left: 7px;
}

.avatar-stack span {
    width: 31px;
    height: 31px;
    margin-left: -7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: #dff5f2;
    color: var(--primary-dark);
    font-size: 9px;
    font-weight: 800;
}

.avatar-stack span:nth-child(2) {
    background: #ece8ff;
    color: #6355b8;
}

.avatar-stack span:nth-child(3) {
    background: #fff0dd;
    color: #b86c16;
}

.avatar-stack span:nth-child(4) {
    background: var(--black);
    color: var(--white);
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    color: #303735;
    font-size: 11px;
}

.hero-trust small {
    margin-top: 3px;
    color: #858c89;
    font-size: 10px;
}

/* Hero visual */

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(0, 185, 176, 0.11);
    filter: blur(45px);
}

.portfolio-window {
    position: relative;
    z-index: 2;
    width: min(550px, 100%);
    overflow: hidden;
    border: 1px solid rgba(16, 19, 18, 0.1);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 40px 100px rgba(16, 35, 32, 0.15);
    transform: rotate(1.5deg);
}

.window-topbar {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edf0ef;
    background: #fafbfb;
}

.window-dots {
    position: absolute;
    left: 17px;
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8dddb;
}

.window-url {
    padding: 5px 28px;
    border-radius: 6px;
    background: #f0f3f2;
    color: #8a928f;
    font-size: 9px;
    font-weight: 600;
}

.portfolio-preview {
    padding: 28px;
}

.preview-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-avatar {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.preview-profile strong,
.preview-profile span {
    display: block;
}

.preview-profile strong {
    font-size: 12px;
}

.preview-profile span {
    margin-top: 2px;
    color: #929a97;
    font-size: 9px;
}

.preview-heading {
    margin-top: 32px;
}

.preview-heading>span {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 8px;
    font-weight: 700;
}

.preview-heading h3 {
    margin-top: 12px;
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.preview-heading p {
    max-width: 330px;
    margin-top: 10px;
    color: #7e8783;
    font-size: 9px;
    line-height: 1.6;
}

.preview-projects {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.project-card {
    overflow: hidden;
    border: 1px solid #edf0ef;
    border-radius: 10px;
    background: #fafbfb;
}

.project-image {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.image-one {
    background:
        linear-gradient(135deg, rgba(0, 185, 176, 0.75), rgba(8, 39, 37, 0.95)),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80");
}

.image-two {
    background:
        linear-gradient(135deg, rgba(25, 27, 27, 0.2), rgba(0, 185, 176, 0.4)),
        url("https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=700&q=80");
}

.project-info {
    padding: 10px;
}

.project-info strong,
.project-info span {
    display: block;
}

.project-info strong {
    font-size: 9px;
}

.project-info span {
    margin-top: 3px;
    color: #929a97;
    font-size: 8px;
}

/* Floating cards */

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(16, 19, 18, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(16, 19, 18, 0.12);
    backdrop-filter: blur(15px);
}

.floating-domain {
    top: 68px;
    right: -5px;
}

.floating-work {
    bottom: 63px;
    left: 0;
}

.floating-icon,
.work-check {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 800;
}

.work-check {
    background: #eaf8ed;
    color: #3c9a50;
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    color: #8a928f;
    font-size: 8px;
}

.floating-card strong {
    margin-top: 2px;
    color: #252b29;
    font-size: 10px;
}

/* Stats */

.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 30px;
    border-right: 1px solid var(--border);
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    letter-spacing: -1px;
}

.stat span {
    margin-top: 5px;
    color: #7d8582;
    font-size: 12px;
}

/* Sections */

.why-section,
.steps-section,
.opportunity-section {
    padding: 120px 0;
}

.section-heading {
    max-width: 700px;
}

.section-heading.centered {
    margin: 0 auto;
    text-align: center;
}

.section-kicker {
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2,
.opportunity-content h2 {
    margin-top: 13px;
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.section-heading h2 span,
.opportunity-content h2 span {
    color: var(--primary);
}

.section-heading p {
    max-width: 610px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.section-heading.centered p {
    margin-left: auto;
    margin-right: auto;
}

/* Features */

.feature-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 15px;
    margin-top: 55px;
}

.feature-card {
    min-height: 370px;
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fafbfa;
}

.feature-main {
    background: var(--black);
    color: var(--white);
}

.feature-number {
    color: #a1aaa6;
    font-size: 10px;
    font-weight: 800;
}

.feature-main .feature-number {
    color: #6e7774;
}

.feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 700;
}

.feature-card h3 {
    max-width: 300px;
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.feature-card p {
    max-width: 340px;
    margin-top: 12px;
    color: #737c78;
    font-size: 13px;
    line-height: 1.65;
}

.feature-main p {
    color: #a7b0ac;
}

.domain-preview {
    position: absolute;
    bottom: 25px;
    left: 28px;
    padding: 12px 15px;
    border: 1px solid #303735;
    border-radius: 10px;
    background: #191d1c;
    font-size: 12px;
}

.domain-preview strong {
    color: var(--primary);
}

/* Steps */

.steps-section {
    background: var(--surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 65px;
}

.step {
    position: relative;
}

.step-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfe1df;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
}

.step-line {
    position: absolute;
    top: 26px;
    left: 68px;
    right: -50px;
    height: 1px;
    background: #dbe3e1;
}

.step:last-child .step-line {
    display: none;
}

.step h3 {
    margin-top: 25px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    letter-spacing: -0.7px;
}

.step p {
    margin-top: 9px;
    color: #737c78;
    font-size: 13px;
    line-height: 1.65;
}

/* Opportunity */

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

.opportunity-image {
    position: relative;
}

.image-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 25px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.image-card-top {
    display: flex;
    justify-content: space-between;
    color: #8a928f;
    font-size: 10px;
    font-weight: 700;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.company {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e5eae8;
    border-radius: 14px;
    background: var(--white);
}

.company-logo {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.company:nth-child(2) .company-logo {
    background: var(--primary);
}

.company:nth-child(3) .company-logo {
    background: #ece8ff;
    color: #5d52a8;
}

.company div:nth-child(2) {
    flex: 1;
}

.company strong,
.company span {
    display: block;
}

.company strong {
    font-size: 11px;
}

.company span {
    margin-top: 3px;
    color: #8b9390;
    font-size: 9px;
}

.company b {
    padding: 7px 10px;
    border-radius: 7px;
    background: #f3f5f4;
    color: #646c69;
    font-size: 8px;
}

.image-card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: #818a86;
    font-size: 9px;
}

.image-card-footer strong {
    color: var(--primary-dark);
}

.opportunity-content>p {
    max-width: 500px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin: 30px 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-list li>span {
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
}

.benefit-list strong {
    display: block;
    font-size: 13px;
}

.benefit-list p {
    margin-top: 3px;
    color: #858d8a;
    font-size: 11px;
}

/* CTA */

.cta-section {
    padding: 0 0 100px;
}

.cta-box {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    border-radius: 30px;
    background: var(--black);
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-label {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.cta-content h2 {
    margin-top: 15px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content p {
    max-width: 520px;
    margin: 20px auto 0;
    color: #9ba39f;
    font-size: 14px;
    line-height: 1.7;
}

.cta-button {
    margin-top: 30px;
    background: var(--primary);
    color: var(--black);
}

.cta-button span {
    color: var(--black);
}

.cta-decoration {
    position: absolute;
    border: 1px solid rgba(0, 185, 176, 0.2);
    border-radius: 50%;
}

.decoration-one {
    width: 500px;
    height: 500px;
    left: -220px;
    bottom: -300px;
}

.decoration-two {
    width: 400px;
    height: 400px;
    right: -190px;
    top: -260px;
}

/* Footer */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner .brand {
    font-size: 20px;
}

.footer-inner p,
.copyright {
    color: #89918e;
    font-size: 11px;
}

.copyright {
    font-size: 10px;
}

/* Tablet */

@media (max-width: 950px) {

    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

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

    .feature-main {
        grid-column: 1 / -1;
    }

    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .opportunity-content {
        max-width: 650px;
        margin: 0 auto;
    }

}

/* Mobile */

@media (max-width: 640px) {

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

    .site-header {
        height: 64px;
    }

    .brand {
        font-size: 21px;
    }

    .header-login {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 55px 0 70px;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: 45px;
        letter-spacing: -2.7px;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 27px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        margin-top: 28px;
        text-align: left;
    }

    .hero-visual {
        min-height: 330px;
    }

    .portfolio-window {
        width: 100%;
        border-radius: 15px;
        transform: none;
    }

    .portfolio-preview {
        padding: 19px;
    }

    .preview-heading {
        margin-top: 22px;
    }

    .preview-heading h3 {
        font-size: 24px;
    }

    .preview-projects {
        gap: 7px;
        margin-top: 18px;
    }

    .project-image {
        height: 65px;
    }

    .floating-card {
        padding: 8px 10px;
    }

    .floating-domain {
        top: 7px;
        right: -5px;
    }

    .floating-work {
        bottom: 5px;
        left: -5px;
    }

    .floating-icon,
    .work-check {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .floating-card small {
        font-size: 7px;
    }

    .floating-card strong {
        font-size: 8px;
    }

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

    .stat {
        min-height: 90px;
        padding: 15px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .stat:nth-child(3) {
        border-right: 1px solid var(--border);
    }

    .stat:first-child {
        padding-left: 15px;
    }

    .stat strong {
        font-size: 21px;
    }

    .stat span {
        font-size: 9px;
    }

    .why-section,
    .steps-section,
    .opportunity-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .opportunity-content h2 {
        font-size: 35px;
        letter-spacing: -1.8px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .feature-main {
        grid-column: auto;
    }

    .feature-card {
        min-height: 300px;
        padding: 23px;
        border-radius: 20px;
    }

    .feature-icon {
        margin-top: 35px;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 45px;
    }

    .step-line {
        display: none;
    }

    .step h3 {
        margin-top: 16px;
    }

    .step p {
        max-width: 400px;
    }

    .image-card {
        padding: 15px;
        border-radius: 20px;
    }

    .company {
        padding: 11px;
    }

    .company-logo {
        width: 33px;
        height: 33px;
    }

    .company b {
        display: none;
    }

    .opportunity-grid {
        gap: 40px;
    }

    .opportunity-content>p {
        font-size: 13px;
    }

    .cta-section {
        padding: 0 0 65px;
    }

    .cta-box {
        min-height: 400px;
        padding: 50px 22px;
        border-radius: 22px;
    }

    .cta-content h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}