@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --orange: #e8740a;
    --orange-dark: #c45e00;
    --orange-light: #ff9a3c;
    --black: #0d0d0d;
    --dark: #141414;
    --dark2: #1c1c1c;
    --border: #2a2a2a;
    --gray: #888;
    --gray-soft: #666;
    --white: #ffffff;
    --success-bg: rgba(39, 201, 63, 0.1);
    --success-line: rgba(39, 201, 63, 0.3);
    --danger-bg: rgba(232, 80, 80, 0.1);
    --danger-line: rgba(232, 80, 80, 0.3);
    --danger-text: #ff8888;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1000;
}

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

button,
input {
    font: inherit;
}

.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.95), transparent);
    backdrop-filter: blur(10px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Syne', sans-serif;
}

.logo__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.logo__mark--footer {
    width: 40px;
    height: 40px;
}

.logo__lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo__wordmark {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo__wordmark span {
    color: var(--orange);
}

.logo__tagline {
    margin-top: 4px;
    color: #717171;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-switch__link {
    min-width: 42px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: background-color .2s ease, color .2s ease;
}

.lang-switch__link.is-active {
    background: rgba(232, 116, 10, 0.18);
    color: var(--white);
}

.nav-cta,
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all .2s ease;
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
}

.nav-cta:hover,
.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(232, 116, 10, 0.28);
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 116, 10, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(232, 116, 10, 0.08) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    transition: transform .25s ease-out;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    opacity: 0.7;
    filter: blur(6px);
    pointer-events: none;
    transition: transform .25s ease-out;
}

.hero-orb--one {
    top: 18%;
    left: 11%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(232, 116, 10, 0.28) 0%, rgba(232, 116, 10, 0) 68%);
}

.hero-orb--two {
    right: 12%;
    bottom: 12%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 6px 16px;
    border: 1px solid rgba(232, 116, 10, 0.3);
    border-radius: 100px;
    background: rgba(232, 116, 10, 0.15);
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 500;
    animation: fadeUp .6s ease both;
}

.badge::before {
    content: '●';
    font-size: 8px;
    animation: pulse 2s infinite;
}

h1,
.section-title,
.mockup-text h2,
.cta-section h2 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -2px;
}

h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: clamp(38px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    animation: fadeUp .6s .1s ease both;
}

h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    max-width: 620px;
    margin: 0 0 32px;
    color: #aaa;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    animation: fadeUp .6s .2s ease both;
}

.hero-form,
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 540px;
    animation: fadeUp .6s .3s ease both;
}

.form-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.field-wrap {
    flex: 1;
}

.hero-form input,
.cta-form input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.hero-form input::placeholder,
.cta-form input::placeholder {
    color: #555;
}

.hero-form input:focus,
.cta-form input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
    width: 100%;
    padding: 15px 28px;
    box-shadow: 0 12px 40px rgba(232, 116, 10, 0.18);
}

.btn-primary--inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 220px;
}

.form-note,
.stat-label,
.pain-text,
.step-text,
.section-sub,
.mockup-text p,
.cta-section p,
.footer p {
    color: var(--gray);
}

.form-note {
    font-size: 12px;
    text-align: center;
}

.field-error,
.success-msg,
.error-msg {
    border-radius: 12px;
    font-size: 14px;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: var(--danger-text);
    text-align: left;
}

.honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.success-msg,
.error-msg {
    width: 100%;
    max-width: 540px;
    margin-bottom: 16px;
    padding: 18px 20px;
    text-align: center;
    animation: fadeUp .4s ease both;
}

.success-msg {
    display: none;
    border: 1px solid var(--success-line);
    background: var(--success-bg);
    color: #27c93f;
}

.success-msg--visible {
    display: block;
}

.error-msg {
    border: 1px solid var(--danger-line);
    background: var(--danger-bg);
    color: var(--danger-text);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 56px;
    animation: fadeUp .6s .4s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    color: var(--orange);
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.stat-label {
    margin-top: 2px;
    font-size: 12px;
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-label {
    margin-bottom: 16px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
}

.section-sub {
    max-width: 560px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
}

.pains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.pain-card,
.solution-wrap,
.mockup-screen {
    border: 1px solid var(--border);
    background: var(--dark2);
}

.pain-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 20px;
    transition: border-color .2s ease, transform .2s ease;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity .2s ease;
}

.pain-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    display: block;
    margin-bottom: 16px;
    font-size: 32px;
}

.pain-title,
.step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.pain-title {
    margin-bottom: 10px;
    font-size: 18px;
}

.pain-text,
.step-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

.solution-wrap {
    overflow: hidden;
    margin-top: 56px;
    border-radius: 28px;
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
    position: relative;
    padding: 40px 32px;
    border-right: 1px solid var(--border);
}

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

.step-num {
    margin-bottom: 16px;
    color: rgba(232, 116, 10, 0.15);
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.step-title {
    margin-bottom: 10px;
    font-size: 17px;
}

.mockup-section {
    overflow: hidden;
    padding: 80px 24px;
    border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    background: var(--dark);
}

.mockup-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.mockup-screen {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    will-change: transform;
}

.mockup-screen:hover {
    border-color: rgba(232, 116, 10, 0.4);
    box-shadow: 0 46px 100px rgba(0, 0, 0, 0.56);
}

.screen-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: #0f0f0f;
}

.screen-browser {
    margin-left: 8px;
    color: #555;
    font-size: 11px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.r {
    background: #ff5f56;
}

.dot.y {
    background: #ffbd2e;
}

.dot.g {
    background: #27c93f;
}

.screen-content {
    padding: 20px;
}

.screen-header {
    margin-bottom: 16px;
    padding: 16px 20px;
    border-bottom: 3px solid var(--orange);
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.screen-title {
    color: var(--orange);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.screen-subtitle {
    margin-top: 2px;
    color: #666;
    font-size: 11px;
}

.app-shell {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 14px;
    min-height: 330px;
}

.app-shell__sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    background: #121212;
}

.app-shell__brand {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff9a3c 0%, #e8740a 100%);
    color: #fff7ed;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.app-shell__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-shell__menu-item {
    padding: 10px 8px;
    border-radius: 10px;
    color: #717171;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.app-shell__menu-item.is-active {
    background: rgba(232, 116, 10, 0.12);
    color: var(--orange-light);
}

.app-shell__main {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: #121212;
}

.metric-card span {
    color: #767676;
    font-size: 11px;
}

.metric-card strong {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.metric-card--accent strong {
    color: var(--orange-light);
}

.metric-card--success strong {
    color: #77d19b;
}

.metric-card--muted strong {
    color: #f1efe8;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 12px;
}

.worker-panel,
.timeline-panel {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: #111;
}

.worker-panel__title {
    margin-bottom: 12px;
    color: #f4f0ea;
    font-size: 12px;
    font-weight: 700;
}

.worker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.worker-row:first-of-type,
.timeline-row:first-of-type {
    border-top: 0;
}

.worker-row strong {
    display: block;
    color: #fff;
    font-size: 12px;
}

.worker-row span {
    color: #777;
    font-size: 11px;
}

.worker-row__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-chip {
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.status-chip--present {
    background: rgba(39, 201, 63, 0.14);
    color: #88e3a7;
}

.status-chip--retard,
.status-chip--late {
    background: rgba(255, 154, 60, 0.14);
    color: #ffb169;
}

.status-chip--absent {
    background: rgba(232, 80, 80, 0.14);
    color: #ff9a9a;
}

.timeline-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-row p {
    margin: 0;
    color: #b2b2b2;
    font-size: 11px;
    line-height: 1.5;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    margin-top: 4px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 116, 10, 0.12);
}

.screen-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.screen-btn {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.mockup-text h2 {
    margin: 0 0 20px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
}

.mockup-text p {
    margin: 0 0 32px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 15px;
    font-weight: 300;
}

.features-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    flex-shrink: 0;
    border: 1px solid rgba(232, 116, 10, 0.3);
    border-radius: 50%;
    background: rgba(232, 116, 10, 0.15);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
}

.section--pricing {
    padding-top: 80px;
}

.pricing-heading {
    text-align: center;
}

.pricing-heading .section-sub {
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 56px auto 0;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--dark2);
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.pricing-free {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(232, 116, 10, 0.2);
    border-radius: 100px;
    background: rgba(232, 116, 10, 0.1);
    color: var(--orange-light);
    font-size: 13px;
    font-weight: 600;
}

.pricing-price {
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-price span {
    color: var(--gray);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
}

.pricing-desc,
.pricing-note,
.cta-note {
    color: var(--gray-soft);
}

.pricing-desc {
    margin: 8px 0 32px;
    font-size: 14px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
    font-size: 15px;
    font-weight: 300;
}

.check {
    color: var(--orange);
    font-weight: 700;
}

.pricing-button {
    display: block;
    text-align: center;
}

.pricing-note,
.cta-note {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;
}

.cta-section {
    padding: 100px 24px;
    border-top: 1px solid rgba(232, 116, 10, 0.15);
    border-bottom: 1px solid rgba(232, 116, 10, 0.15);
    background: linear-gradient(135deg, rgba(232, 116, 10, 0.12), rgba(232, 116, 10, 0.04));
    text-align: center;
}

.cta-section h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 800;
}

.cta-section h2 em {
    color: var(--orange);
    font-style: normal;
}

.cta-section p {
    margin: 0 0 48px;
    font-size: 17px;
    font-weight: 300;
}

.cta-label {
    text-align: center;
}

.cta-form {
    margin: 0 auto;
}

.footer {
    padding: 40px 24px;
    border-top: 1px solid #1f1f1f;
    text-align: center;
}

.footer .logo {
    display: inline-flex;
    margin-bottom: 8px;
}

.footer p {
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.is-visible {
    animation: fadeUp .7s ease forwards;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav__actions {
        gap: 8px;
    }

    .nav-cta {
        display: none;
    }

    .logo__tagline {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .form-row,
    .mockup-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .app-shell,
    .metric-row,
    .workspace-grid {
        grid-template-columns: 1fr;
    }

    .app-shell__sidebar {
        display: none;
    }

    .mockup-screen {
        transform: none;
    }

    .solution-steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .step:last-child {
        border-bottom: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}
