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

:root {
    --font-ui: 'Manrope', sans-serif;
    --font-display: 'Instrument Serif', serif;
    --bg: #f4f1ea;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-muted: #f8f5ef;
    --surface-contrast: #171717;
    --text: #161616;
    --text-soft: #5f5b54;
    --text-faint: #8a8478;
    --line: rgba(34, 31, 26, 0.11);
    --line-strong: rgba(34, 31, 26, 0.18);
    --brand: #b74d36;
    --brand-strong: #94361f;
    --brand-soft: rgba(183, 77, 54, 0.1);
    --accent: #23423b;
    --accent-soft: rgba(35, 66, 59, 0.12);
    --success: #1f6a4e;
    --success-soft: rgba(31, 106, 78, 0.12);
    --warning: #946116;
    --warning-soft: rgba(148, 97, 22, 0.14);
    --danger: #9f352c;
    --danger-soft: rgba(159, 53, 44, 0.12);
    --shadow-sm: 0 14px 30px rgba(25, 21, 17, 0.05);
    --shadow-md: 0 24px 56px rgba(25, 21, 17, 0.08);
    --shadow-lg: 0 34px 90px rgba(25, 21, 17, 0.14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 40px;
    --content: 1180px;
    --nav-height: 78px;
    --transition: 180ms ease;
}

html[data-theme='dark'] {
    --bg: #111111;
    --surface: rgba(23, 23, 23, 0.88);
    --surface-strong: #191919;
    --surface-muted: #151515;
    --surface-contrast: #f5efe4;
    --text: #f4efe7;
    --text-soft: #b8b0a3;
    --text-faint: #8a8277;
    --line: rgba(255, 245, 228, 0.1);
    --line-strong: rgba(255, 245, 228, 0.18);
    --brand: #d68067;
    --brand-strong: #e49c85;
    --brand-soft: rgba(214, 128, 103, 0.14);
    --accent: #8dc2b2;
    --accent-soft: rgba(141, 194, 178, 0.12);
    --success: #74c99e;
    --success-soft: rgba(116, 201, 158, 0.14);
    --warning: #e0b364;
    --warning-soft: rgba(224, 179, 100, 0.14);
    --danger: #f08679;
    --danger-soft: rgba(240, 134, 121, 0.14);
    --shadow-sm: 0 18px 36px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 26px 70px rgba(0, 0, 0, 0.36);
    --shadow-lg: 0 36px 110px rgba(0, 0, 0, 0.42);
}

html {
    font-size: 16px;
    background: var(--bg);
}

body {
    min-height: 100vh;
    font-family: var(--font-ui);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(35, 66, 59, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

html[data-theme='dark'] body {
    background:
        radial-gradient(circle at top left, rgba(214, 128, 103, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(141, 194, 178, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        var(--bg);
}

body.nav-open {
    overflow: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-ui);
}

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

a:hover {
    text-decoration: none;
}

img,
svg {
    display: block;
}

.container {
    width: min(100% - 32px, var(--content));
    margin: 0 auto;
    padding: 0;
}

.main-content {
    min-height: calc(100vh - 340px);
}

.site-shell {
    position: relative;
    isolation: isolate;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    width: 100%;
    padding: 0;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: calc(100% + 18px);
    background: linear-gradient(180deg, rgba(244, 241, 234, 0.92), rgba(244, 241, 234, 0));
    pointer-events: none;
    transition: opacity var(--transition);
}

html[data-theme='dark'] .site-header::before {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0));
}

body.nav-scrolled .site-header::before {
    opacity: 0;
}

.site-header__inner,
.site-footer__inner {
    width: 100%;
    padding-inline: 0;
}

.site-footer__inner {
    width: min(100% - 32px, 1320px);
    margin: 0 auto;
}

.navbar {
    height: auto;
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

body.nav-scrolled .navbar {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 18px 12px 22px;
}

.navbar__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--brand), var(--brand-strong));
    color: #fff8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-mark svg {
    width: 24px;
    height: 24px;
}

.brand-lockup {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-name strong {
    color: var(--brand);
}

.brand-meta {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.navbar__link,
.navbar__tools-trigger,
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.navbar__link:hover,
.navbar__tools-trigger:hover,
.theme-toggle:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--line);
}

html[data-theme='dark'] .navbar__link:hover,
html[data-theme='dark'] .navbar__tools-trigger:hover,
html[data-theme='dark'] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.navbar__tools-trigger {
    position: relative;
    cursor: pointer;
}

.navbar__tools-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.navbar__tools-trigger:hover svg,
.navbar__tools-trigger.is-open svg {
    transform: rotate(180deg);
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 44px;
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183, 77, 54, 0.12), rgba(35, 66, 59, 0.08));
    opacity: 0;
    transition: opacity var(--transition);
}

.theme-toggle:hover::before,
.theme-toggle[aria-pressed='true']::before {
    opacity: 1;
}

.theme-toggle__icon {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.theme-toggle__icon--sun {
    display: none;
}

html[data-theme='dark'] .theme-toggle__icon--sun {
    display: block;
}

html[data-theme='dark'] .theme-toggle__icon--moon {
    display: none;
}

.tools-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: min(780px, calc(100vw - 24px));
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface-strong);
    box-shadow: var(--shadow-lg);
    display: none;
}

.navbar__tools-trigger:hover .tools-dropdown,
.navbar__tools-trigger.is-open .tools-dropdown {
    display: block;
}

.tools-dropdown__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.tools-dropdown__title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.tools-dropdown__copy {
    max-width: 300px;
    font-size: 0.88rem;
    color: var(--text-soft);
}

.tools-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tools-dropdown__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48));
    color: var(--text);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

html[data-theme='dark'] .tools-dropdown__item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.tools-dropdown__item:hover {
    transform: translateY(-2px);
    border-color: rgba(183, 77, 54, 0.22);
    box-shadow: var(--shadow-sm);
}

.tools-dropdown__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--brand-soft);
    color: var(--brand);
}

.tools-dropdown__meta strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tools-dropdown__meta span {
    display: block;
    margin-top: 2px;
    font-size: 0.8rem;
    color: var(--text-soft);
}

.navbar__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    margin-left: auto;
}

.navbar__toggle span {
    width: 18px;
}

.btn {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #fff8f0;
    box-shadow: 0 10px 24px rgba(183, 77, 54, 0.24);
}

.btn--primary:hover {
    color: #fff8f0;
    box-shadow: 0 14px 30px rgba(183, 77, 54, 0.28);
}

.btn--outline,
.btn--secondary,
.btn--ghost,
.btn--google {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.58);
    color: var(--text);
}

html[data-theme='dark'] .btn--outline,
html[data-theme='dark'] .btn--secondary,
html[data-theme='dark'] .btn--ghost,
html[data-theme='dark'] .btn--google {
    background: rgba(255, 255, 255, 0.03);
}

.btn--outline:hover,
.btn--secondary:hover,
.btn--ghost:hover,
.btn--google:hover {
    border-color: var(--line-strong);
    color: var(--text);
}

.btn--icon {
    width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 12px;
}

.btn--sm {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.86rem;
}

.btn--lg {
    min-height: 56px;
    padding: 0 28px;
    font-size: 1rem;
}

.btn[disabled] {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

.section {
    padding: 88px 0;
}

.section--tight {
    padding: 68px 0;
}

.section-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html[data-theme='dark'] .section-kicker,
html[data-theme='dark'] .eyebrow {
    background: rgba(255, 255, 255, 0.03);
}

.section-title {
    max-width: 700px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.section-title i,
.section-title .emphasis,
.hero__headline em {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
}

.section-copy {
    max-width: 560px;
    font-size: 1rem;
    color: var(--text-soft);
}

.hero {
    padding: 44px 0 34px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 58px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.18), transparent 30%),
        radial-gradient(circle at right center, rgba(35, 66, 59, 0.14), transparent 28%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(250, 245, 238, 0.94));
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .hero-panel {
    background:
        radial-gradient(circle at top left, rgba(214, 128, 103, 0.16), transparent 26%),
        radial-gradient(circle at right center, rgba(141, 194, 178, 0.12), transparent 24%),
        linear-gradient(160deg, rgba(27, 27, 27, 0.98), rgba(19, 19, 19, 0.96));
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 40px;
    align-items: stretch;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 620px;
}

.hero__headline {
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.hero__copy {
    max-width: 550px;
    font-size: 1.05rem;
    color: var(--text-soft);
}

.hero__actions,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.56);
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

html[data-theme='dark'] .hero-chip {
    background: rgba(255, 255, 255, 0.03);
}

.hero-chip strong {
    color: var(--text);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 100%;
}

.hero-stack {
    display: grid;
    gap: 16px;
}

.hero-metric {
    padding: 22px 24px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .hero-metric {
    background: rgba(255, 255, 255, 0.03);
}

.hero-metric__label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.hero-metric__value {
    margin-top: 8px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    font-weight: 800;
}

.hero-metric__value small {
    font-size: 1rem;
    color: var(--text-soft);
}

.hero-workflow {
    padding: 22px 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(20, 20, 20, 0.96);
    color: #f2ece2;
    box-shadow: var(--shadow-md);
}

.hero-workflow__title {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(242, 236, 226, 0.65);
}

.hero-workflow__list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.hero-workflow__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.hero-workflow__number {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
}

.hero-workflow__item strong {
    display: block;
    font-size: 0.95rem;
}

.hero-workflow__item span {
    display: block;
    color: rgba(242, 236, 226, 0.68);
    font-size: 0.84rem;
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.trust-item {
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

html[data-theme='dark'] .trust-item {
    background: rgba(255, 255, 255, 0.03);
}

.trust-item strong {
    display: block;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.trust-item span {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
    color: var(--text-soft);
}

.tool-shelf {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.tool-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-height: 218px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

html[data-theme='dark'] .tool-card {
    background: rgba(255, 255, 255, 0.03);
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 77, 54, 0.22);
    box-shadow: var(--shadow-md);
}

.tool-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tool-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-card__body h3 {
    font-size: 1.2rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.tool-card__body p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.tool-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 20px;
}

.feature-panel,
.feature-list,
.pricing-card,
.cta-panel,
.dashboard-panel,
.dashboard-stat,
.auth-showcase,
.auth-card,
.footer-panel,
.empty-state,
.upload-status {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .feature-panel,
html[data-theme='dark'] .feature-list,
html[data-theme='dark'] .pricing-card,
html[data-theme='dark'] .cta-panel,
html[data-theme='dark'] .dashboard-panel,
html[data-theme='dark'] .dashboard-stat,
html[data-theme='dark'] .auth-showcase,
html[data-theme='dark'] .auth-card,
html[data-theme='dark'] .footer-panel,
html[data-theme='dark'] .empty-state,
html[data-theme='dark'] .upload-status {
    background: rgba(255, 255, 255, 0.03);
}

.feature-panel {
    padding: 30px;
    border-radius: 32px;
}

.feature-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.feature-block {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
}

html[data-theme='dark'] .feature-block {
    background: rgba(255, 255, 255, 0.02);
}

.feature-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.feature-block p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.feature-list {
    padding: 30px;
    border-radius: 32px;
}

.feature-list ul {
    display: grid;
    gap: 14px;
    list-style: none;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.feature-list strong {
    display: block;
    font-size: 0.98rem;
}

.feature-list span {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    color: var(--text-soft);
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    border-radius: 30px;
}

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(183, 77, 54, 0.12), rgba(255, 255, 255, 0.9));
    border-color: rgba(183, 77, 54, 0.24);
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .pricing-card--featured {
    background: linear-gradient(180deg, rgba(214, 128, 103, 0.14), rgba(255, 255, 255, 0.03));
}

.pricing-card__name {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.pricing-card__price {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
    font-weight: 800;
}

.pricing-card__price small {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.pricing-card p {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.pricing-card li::before {
    content: '•';
    color: var(--brand);
    margin-right: 10px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
}

.cta-panel h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.cta-panel p {
    margin-top: 10px;
    max-width: 540px;
    color: var(--text-soft);
}

.dashboard-page {
    padding: 42px 0 88px;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
}

.dashboard-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 26px);
    align-self: start;
    padding: 22px;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .dashboard-sidebar {
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-sidebar__eyebrow {
    color: var(--text-faint);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-sidebar h1 {
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.dashboard-sidebar p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.dashboard-sidebar__nav {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.dashboard-sidebar__nav a,
.dashboard-sidebar__nav span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.dashboard-sidebar__nav span {
    background: var(--brand-soft);
    color: var(--brand);
    border-color: transparent;
}

.dashboard-content {
    display: grid;
    gap: 18px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
}

.dashboard-stat,
.stat-card {
    padding: 24px;
    border-radius: 28px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-card__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.stat-card__value {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 800;
}

.stat-card__label {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.dashboard-panel {
    padding: 28px;
    border-radius: 32px;
}

.dashboard-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.dashboard-panel__header h2 {
    font-size: 1.25rem;
    letter-spacing: -0.04em;
}

.dashboard-panel__header p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.empty-state {
    padding: 52px 32px;
    border-radius: 30px;
    text-align: center;
}

.empty-state__icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.5rem;
    font-weight: 800;
}

.empty-state h3 {
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.empty-state p {
    max-width: 440px;
    margin: 10px auto 0;
    color: var(--text-soft);
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th,
.history-table td {
    padding: 18px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    background: transparent;
}

.history-table th {
    color: var(--text-faint);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.history-table td {
    font-size: 0.92rem;
    color: var(--text);
}

.history-table tbody tr {
    transition: background var(--transition);
}

.history-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.4);
}

html[data-theme='dark'] .history-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-meta {
    display: grid;
    gap: 4px;
}

.table-meta strong {
    font-size: 0.95rem;
}

.table-meta span {
    font-size: 0.82rem;
    color: var(--text-faint);
}

.badge {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.badge--done {
    background: var(--success-soft);
    color: var(--success);
}

.badge--failed,
.badge--error {
    background: var(--danger-soft);
    color: var(--danger);
}

.badge--processing,
.badge--pending {
    background: var(--warning-soft);
    color: var(--warning);
}

.auth-layout {
    padding: 42px 0 86px;
}

.auth-layout__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 18px;
    align-items: stretch;
}

.auth-showcase,
.auth-card {
    border-radius: 34px;
    padding: 34px;
}

.auth-showcase {
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.14), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 236, 0.92));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

html[data-theme='dark'] .auth-showcase {
    background:
        radial-gradient(circle at top left, rgba(214, 128, 103, 0.16), transparent 24%),
        linear-gradient(160deg, rgba(24, 24, 24, 0.98), rgba(17, 17, 17, 0.98));
}

.auth-showcase h1 {
    max-width: 520px;
    margin-top: 14px;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.auth-showcase p {
    max-width: 500px;
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 1rem;
}

.auth-showcase__points {
    display: grid;
    gap: 12px;
}

.auth-showcase__points span {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.42);
    font-weight: 700;
}

html[data-theme='dark'] .auth-showcase__points span {
    background: rgba(255, 255, 255, 0.03);
}

.auth-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-card h2,
.auth-card h1 {
    font-size: 1.8rem;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.auth-sub,
.auth-footer {
    color: var(--text-soft);
}

.stack-md {
    display: grid;
    gap: 16px;
}

.form-group {
    gap: 8px;
}

.form-group label {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group textarea {
    min-height: 130px;
    padding: 16px;
    resize: vertical;
}

html[data-theme='dark'] .form-group input,
html[data-theme='dark'] .form-group select,
html[data-theme='dark'] .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(183, 77, 54, 0.42);
    box-shadow: 0 0 0 4px rgba(183, 77, 54, 0.08);
}

.auth-divider {
    color: var(--text-faint);
}

.alert {
    display: none;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.92rem;
    border: 1px solid var(--line);
}

.alert.is-visible {
    display: flex;
}

.alert--error {
    border-color: rgba(159, 53, 44, 0.18);
    background: var(--danger-soft);
    color: var(--danger);
}

.alert--success {
    border-color: rgba(31, 106, 78, 0.18);
    background: var(--success-soft);
    color: var(--success);
}

.alert--info {
    border-color: rgba(35, 66, 59, 0.18);
    background: var(--accent-soft);
    color: var(--accent);
}

.alert__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
}

.tool-page {
    padding: 42px 0 88px;
}

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

.tool-page__header {
    max-width: 720px;
    margin: 0 auto 22px;
    text-align: center;
}

.tool-badge {
    min-height: 34px;
    padding: 0 12px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-page__header h1 {
    margin-top: 16px;
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.tool-page__header p {
    margin: 14px auto 0;
    max-width: 560px;
    color: var(--text-soft);
    font-size: 1rem;
}

#toolAlert {
    max-width: 760px !important;
    margin: 0 auto 16px !important;
}

.drop-zone,
.options-panel,
.result-panel,
.progress-wrap,
.file-list,
.upload-status {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.drop-zone {
    margin-bottom: 0;
}

.drop-zone {
    position: relative;
    padding: 18px;
    border-radius: 36px;
    border: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.92));
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

html[data-theme='dark'] .drop-zone {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.03));
}

.drop-zone:hover,
.drop-zone.dragover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 240, 0.96));
    transform: translateY(-1px);
}

html[data-theme='dark'] .drop-zone:hover,
html[data-theme='dark'] .drop-zone.dragover {
    background: linear-gradient(180deg, rgba(214, 128, 103, 0.08), rgba(255, 255, 255, 0.04));
}

.drop-zone__icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--brand-soft), rgba(255, 255, 255, 0.8));
    color: var(--brand);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html[data-theme='dark'] .drop-zone__icon {
    background: linear-gradient(145deg, rgba(214, 128, 103, 0.16), rgba(255, 255, 255, 0.04));
}

.drop-zone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.tool-dropzone-shell {
    border: 2px dashed rgba(183, 77, 54, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
}

.tool-dropzone-shell__inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 22px;
    padding: 54px 36px 46px;
}

.tool-dropzone-shell__head {
    display: grid;
    justify-items: center;
    gap: 16px;
}

.tool-dropzone-shell__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.tool-dropzone-shell__brand-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--brand), var(--brand-strong));
    color: #fff8f0;
    flex: 0 0 34px;
}

.tool-dropzone-shell__brand-icon svg {
    width: 18px;
    height: 18px;
}

.tool-dropzone-shell__head p {
    margin: 0;
    max-width: 40ch;
    color: var(--text-soft);
    font-size: 1rem;
}

.tool-dropzone-shell__cta {
    width: min(100%, 564px);
    min-height: 72px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, #ef4b37, #eb4a36);
    color: #fff9f2;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 16px 30px rgba(239, 75, 55, 0.22);
    cursor: pointer;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), filter var(--transition);
}

.tool-dropzone-shell__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(239, 75, 55, 0.26);
    filter: saturate(1.03);
}

.tool-dropzone-shell__cta-plus {
    font-size: 2rem;
    line-height: 1;
    justify-self: start;
}

.tool-dropzone-shell__cta span:last-child {
    grid-column: 2;
    justify-self: center;
}

.tool-dropzone-shell__sources {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tool-dropzone-shell__source {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    color: #111111;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.tool-dropzone-shell__source:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 75, 55, 0.25);
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 1);
}

.tool-dropzone-shell__sources svg {
    width: 22px;
    height: 22px;
}

.tool-dropzone-shell__helper {
    color: var(--text-faint);
    font-size: 0.86rem;
}

.tool-preview {
    max-width: 760px;
    margin: 8px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.92fr);
    gap: 16px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.tool-preview__stage {
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(248, 245, 239, 0.82), rgba(255, 255, 255, 0.94));
}

.tool-preview__frame,
.tool-preview__image {
    width: 100%;
    min-height: 320px;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
    background: #ffffff;
}

.tool-preview__meta {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 8px 6px;
}

.tool-preview__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-preview__title {
    margin-top: 14px;
    font-size: 1.24rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: var(--text);
    word-break: break-word;
}

.tool-preview__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-preview__facts span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface-muted);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.tool-preview__placeholder {
    min-height: 320px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 24px;
    text-align: center;
}

.tool-preview__placeholder-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--brand-soft), rgba(255, 255, 255, 0.82));
    color: var(--brand);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-preview__placeholder p {
    max-width: 28ch;
    color: var(--text-soft);
    line-height: 1.6;
}

html[data-theme='dark'] .tool-dropzone-shell {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(214, 128, 103, 0.2);
}

html[data-theme='dark'] .tool-dropzone-shell__source {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme='dark'] .tool-preview {
    background: rgba(255, 255, 255, 0.03);
}

html[data-theme='dark'] .tool-preview__stage {
    background: rgba(255, 255, 255, 0.03);
}

.tool-import-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 60;
}

.tool-import-modal.active {
    display: block;
}

.tool-import-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(4px);
}

.tool-import-modal__dialog {
    position: relative;
    width: min(100% - 24px, 520px);
    margin: 10vh auto 0;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.18);
}

.tool-import-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
}

.tool-import-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-import-modal__dialog h3 {
    margin-top: 16px;
    font-size: 1.7rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--text);
}

.tool-import-modal__copy {
    margin-top: 12px;
    color: var(--text-soft);
}

.tool-import-modal__input {
    width: 100%;
    margin-top: 18px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    font-size: 0.96rem;
}

.tool-import-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

html[data-theme='dark'] .tool-import-modal__dialog {
    background: var(--surface-strong);
    border-color: var(--line);
}

html[data-theme='dark'] .tool-import-modal__close,
html[data-theme='dark'] .tool-import-modal__input {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

.tool-process-band {
    max-width: 1120px;
    margin: 20px auto 10px;
}

.tool-process-band__head {
    text-align: center;
    margin-bottom: 16px;
}

.tool-process-band__head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--text);
}

.tool-process-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tool-process-step {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 4px 14px;
}

.tool-process-step__number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ef4b37, #eb4a36);
    color: #fff8f0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 24px rgba(239, 75, 55, 0.18);
}

.tool-process-step h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.tool-process-step p {
    margin-top: 8px;
    max-width: 30ch;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}

.upload-status {
    margin-top: 0 !important;
}

.file-list {
    margin-top: 2px;
}

.options-panel,
.result-panel,
.progress-wrap {
    margin-top: 6px;
}

.drop-zone h3 {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.drop-zone p {
    margin-top: 8px;
    color: var(--text-soft);
}

.drop-zone__hint {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--text-faint);
}

.file-list {
    gap: 10px;
}

.file-item {
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

html[data-theme='dark'] .file-item {
    background: rgba(255, 255, 255, 0.03);
}

.file-item.is-active {
    border-color: rgba(239, 75, 55, 0.28);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

html[data-theme='dark'] .file-item.is-active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 128, 103, 0.26);
}

.file-item__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.file-item__name {
    font-size: 0.94rem;
}

.file-item__size {
    margin-top: 2px;
    color: var(--text-faint);
}

.progress-wrap {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
}

html[data-theme='dark'] .progress-wrap {
    background: rgba(255, 255, 255, 0.03);
}

.progress-bar {
    height: 10px;
    background: rgba(34, 31, 26, 0.08);
}

html[data-theme='dark'] .progress-bar {
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar__fill {
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.progress-label {
    margin-top: 10px;
    color: var(--text-soft);
}

.options-panel {
    margin-top: 18px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .options-panel {
    background: rgba(255, 255, 255, 0.03);
}

.options-panel h3 {
    margin-bottom: 16px;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.options-grid {
    gap: 16px;
}

.result-panel {
    margin-top: 18px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(31, 106, 78, 0.22);
    background: linear-gradient(180deg, rgba(31, 106, 78, 0.09), rgba(255, 255, 255, 0.86));
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .result-panel {
    background: linear-gradient(180deg, rgba(116, 201, 158, 0.12), rgba(255, 255, 255, 0.03));
}

.result-panel__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--success-soft);
    color: var(--success);
    font-size: 1.2rem;
    font-weight: 800;
}

.result-panel h3 {
    color: var(--success);
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

.site-footer {
    margin-top: 36px;
    padding: 0;
    background: #2d2c35;
    color: rgba(255, 255, 255, 0.8);
}

.footer-panel {
    border-radius: 0;
    padding: 56px 0 28px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(0, 220px);
    gap: 28px;
}

.footer-brand {
    display: none;
}

.footer-column h4 {
    margin-bottom: 18px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-column nav {
    display: grid;
    gap: 14px;
    margin-top: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-downloads {
    display: grid;
    gap: 14px;
    align-content: start;
    min-width: 0;
}

.footer-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    color: #ffffff;
    min-width: 0;
}

.footer-store-badge__text {
    min-width: 0;
}

.footer-store-badge__text strong,
.footer-store-badge__text small {
    overflow-wrap: anywhere;
}

.footer-store-badge__icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    color: #ffffff;
}

.footer-store-badge__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-store-badge__text {
    display: grid;
    line-height: 1.05;
}

.footer-store-badge__text small {
    font-size: 0.68rem;
    opacity: 0.82;
}

.footer-store-badge__text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-divider {
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 22px;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.footer-language {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #ffffff;
    font-weight: 600;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 2;
    margin-left: auto;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.84);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.footer-socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.86;
}

.footer-copy {
    order: 3;
    margin-left: 0;
    white-space: nowrap;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.loader {
    border-width: 2px;
    border-top-color: transparent;
}

@media (max-width: 1100px) {
    .hero-grid,
    .feature-layout,
    .dashboard-shell,
    .auth-layout__grid,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-downloads {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-sidebar {
        position: static;
    }

    .dashboard-stats,
    .pricing-grid,
    .tool-shelf,
    .trust-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tools-dropdown__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header {
        padding-top: 12px;
    }

    .navbar {
        border-radius: 28px;
    }

    .navbar__inner {
        position: relative;
        flex-wrap: wrap;
        padding: 14px;
    }

    .navbar__toggle {
        display: inline-flex;
    }

    .navbar__menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin: 8px 0 0;
        padding: 8px 0 0;
        border-top: 1px solid var(--line);
    }

    .navbar__menu.open {
        display: flex;
    }

    .navbar__link,
    .navbar__tools-trigger,
    .site-actions {
        width: 100%;
    }

    .site-actions {
        justify-content: stretch;
        flex-direction: column;
    }

    .site-actions .btn,
    .site-actions .theme-toggle {
        width: 100%;
    }

    .theme-toggle {
        justify-content: center;
    }

    .tools-dropdown {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 12px;
        box-shadow: none;
    }

    .tools-dropdown__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .tools-dropdown__grid,
    .feature-panel__grid,
    .dashboard-stats,
    .pricing-grid,
    .tool-shelf,
    .trust-band {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-panel,
    .feature-panel,
    .feature-list,
    .pricing-card,
    .cta-panel,
    .dashboard-panel,
    .auth-showcase,
    .auth-card,
    .footer-panel {
        padding: 24px;
    }

    .hero__headline {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .section-intro,
    .dashboard-panel__header,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-downloads {
        grid-template-columns: 1fr;
    }

    .footer-panel {
        padding: 40px 0 24px;
    }

    .history-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 20px, var(--content));
    }

    .hero-panel,
    .auth-showcase,
    .auth-card,
    .dashboard-sidebar,
    .dashboard-panel,
    .pricing-card {
        border-radius: 28px;
    }

    .tool-page .container {
        width: min(100% - 20px, 1080px);
    }

    .drop-zone,
    .options-panel,
    .result-panel,
    .progress-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tool-page__header h1,
    .section-title,
    .auth-showcase h1,
    .dashboard-sidebar h1 {
        letter-spacing: -0.06em;
    }

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

    .footer-copy {
        white-space: normal;
    }
}

.page-home {
    font-family: 'Inter', var(--font-ui);
    background:
        radial-gradient(circle at top center, rgba(86, 137, 255, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fafe 0%, #f4f6fb 40%, #f7f8fc 100%);
}

.page-home .main-content {
    min-height: auto;
}

.page-dashboard,
.page-dashboard .main-content,
.page-dashboard .dashboard-page {
    background: #ffffff;
}

html[data-theme='dark'] .page-dashboard,
html[data-theme='dark'] .page-dashboard .main-content,
html[data-theme='dark'] .page-dashboard .dashboard-page {
    background: #0f141d;
}

.page-dashboard .site-header::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
}

html[data-theme='dark'] .page-dashboard .site-header::before {
    background: linear-gradient(180deg, rgba(15, 20, 29, 0.94), rgba(15, 20, 29, 0));
}

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

.landing-shell {
    width: 100%;
}

.page-home .landing-shell,
.faq-shell,
.business-page,
.info-page__shell {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(66, 111, 255, 0.08);
    color: #3758c7;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.landing-section__head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 34px;
}

.landing-section__title {
    max-width: 680px;
    margin-top: 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #111827;
}

.landing-section__copy {
    max-width: 520px;
    font-size: 1rem;
    color: #667085;
}

.landing-hero,
.landing-tools,
.landing-benefits,
.landing-features,
.landing-premium,
.landing-trust {
    padding: 72px 0;
}

.landing-hero {
    padding-top: 40px;
}

.landing-hero__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.landing-hero__title {
    margin-top: 18px;
    font-size: clamp(2.9rem, 6vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
    font-weight: 800;
    color: #111827;
}

.landing-hero__copy {
    max-width: 640px;
    margin: 18px auto 0;
    font-size: 1.08rem;
    color: #667085;
}

.landing-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.landing-tools__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.landing-tool-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 206px;
    padding: 24px;
    border: 1px solid #e7ebf4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.landing-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.1);
    border-color: #d6ddf1;
}

.landing-tool-card__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.landing-tool-card__icon img {
    width: 52px;
    height: 52px;
    display: block;
}

.landing-tool-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #101828;
}

.landing-tool-card__body p {
    margin-top: 10px;
    color: #667085;
    font-size: 0.95rem;
}

.landing-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.landing-benefits {
    position: relative;
    padding-top: 6px;
}

.landing-benefits__steps-intro {
    margin-bottom: 54px;
}

.landing-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    max-width: 1120px;
    margin: 18px auto 0;
}

.landing-process-item {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 12px 18px;
}

.landing-process-item__badge {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--brand), var(--brand-strong));
    box-shadow: 0 12px 24px rgba(183, 77, 54, 0.18);
}

.landing-process-item__badge span {
    color: #fff8f0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.landing-process-item h3 {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.landing-process-item p {
    margin-top: 14px;
    max-width: 31ch;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
}

.landing-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 42px;
    max-width: 1120px;
    margin: 12px auto 0;
}

.landing-benefit-item {
    display: grid;
    align-content: start;
    justify-items: start;
    position: relative;
    padding: 22px 20px 20px;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition), background var(--transition);
    overflow: hidden;
}

.landing-benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(183, 77, 54, 0.08), transparent 42%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.landing-benefit-item:hover {
    transform: translateY(-8px);
    border-color: var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 245, 239, 0.7));
    box-shadow: 0 22px 42px rgba(17, 24, 39, 0.08);
}

.landing-benefit-item:hover::before {
    opacity: 1;
}

.landing-benefit-item__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(183, 77, 54, 0.08);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-benefit-item__icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 239, 0.9));
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), background var(--transition);
}

.landing-benefit-item__icon svg {
    width: 52px;
    height: 52px;
    transition: transform var(--transition-slow);
}

.landing-benefit-item__icon svg * {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: rgba(35, 66, 59, 0.08);
}

.landing-benefit-item__icon .landing-benefit-item__icon-accent {
    fill: var(--brand);
    stroke: var(--brand);
}

.landing-benefit-item__icon .landing-benefit-item__icon-accent-stroke {
    stroke: var(--brand);
    fill: none;
}

.landing-benefit-item:hover .landing-benefit-item__icon {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 247, 241, 0.96));
}

.landing-benefit-item:hover .landing-benefit-item__icon svg {
    transform: scale(1.04);
}

.landing-benefit-item h3 {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.landing-benefit-item p {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    max-width: 29ch;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.65;
}

.landing-benefit-item__hint {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--text-faint);
    font-size: 0.84rem;
    font-weight: 700;
}

.landing-benefit-item__hint::before {
    content: '';
    width: 18px;
    height: 1px;
    background: rgba(95, 91, 84, 0.36);
}

[data-spotlight]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(183, 77, 54, 0.08), transparent 38%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

[data-spotlight]:hover::before {
    opacity: 1;
}

html[data-theme='dark'] .landing-benefit-item__icon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .landing-process-item__badge {
    background: linear-gradient(180deg, var(--brand), var(--brand-strong));
    box-shadow: 0 12px 24px rgba(214, 128, 103, 0.18);
}

html[data-theme='dark'] .landing-benefit-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

html[data-theme='dark'] .landing-benefit-item:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-color: var(--line);
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .landing-benefit-item__eyebrow {
    background: rgba(214, 128, 103, 0.14);
    color: var(--brand);
}

html[data-theme='dark'] .landing-benefit-item__icon svg * {
    stroke: var(--accent);
    fill: rgba(141, 194, 178, 0.08);
}

html[data-theme='dark'] .landing-benefit-item__icon .landing-benefit-item__icon-accent {
    fill: var(--brand);
    stroke: var(--brand);
}

html[data-theme='dark'] .landing-benefit-item__icon .landing-benefit-item__icon-accent-stroke {
    stroke: var(--brand);
}

html[data-theme='dark'] .landing-benefit-item__hint {
    color: var(--text-faint);
}

html[data-theme='dark'] .landing-benefit-item__hint::before {
    background: rgba(255, 245, 228, 0.22);
}

@media (max-width: 820px) {
    .landing-process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 12px;
    }

    .landing-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 28px;
    }
}

@media (max-width: 560px) {
    .landing-benefits__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .landing-benefit-item__icon {
        width: 66px;
        height: 66px;
        margin-bottom: 16px;
    }

    .landing-benefit-item {
        padding: 18px 16px 16px;
        border-radius: 22px;
    }

    .landing-benefit-item p {
        max-width: none;
    }
}

.landing-feature-card {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid #e6ebf5;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.landing-feature-card__visual {
    position: relative;
    height: 180px;
    margin-bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fbff;
    border: 1px solid #e4eaf7;
}

.landing-feature-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #101828;
}

.landing-feature-card p {
    margin-top: 10px;
    color: #667085;
    font-size: 0.95rem;
}

.landing-premium__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 38px 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, #fff7de, #fff1d6);
    border: 1px solid #f6dfb5;
    box-shadow: 0 16px 36px rgba(173, 129, 37, 0.08);
}

.landing-premium__content {
    max-width: 520px;
}

.landing-premium__content h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #1d2939;
}

.landing-premium__content p {
    margin-top: 14px;
    margin-bottom: 24px;
    color: #667085;
    font-size: 1rem;
}

.landing-premium__visual {
    position: relative;
    width: min(100%, 360px);
    min-height: 230px;
    flex: 0 0 360px;
}

.landing-premium__card {
    position: absolute;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
    overflow: hidden;
}

.landing-premium__card div {
    background: #eef2fb;
    border-radius: 10px;
}

.landing-premium__card--front {
    right: 12px;
    top: 18px;
    width: 210px;
    height: 162px;
    padding: 18px;
    z-index: 2;
}

.landing-premium__card--front div:nth-child(1) {
    height: 18px;
    width: 64%;
}

.landing-premium__card--front div:nth-child(2) {
    height: 56px;
    margin-top: 18px;
}

.landing-premium__card--front div:nth-child(3) {
    height: 18px;
    width: 72%;
    margin-top: 18px;
}

.landing-premium__card--back {
    left: 18px;
    bottom: 10px;
    width: 184px;
    height: 136px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f6f8ff);
}

.landing-premium__card--back div:nth-child(1) {
    height: 20px;
    width: 78%;
}

.landing-premium__card--back div:nth-child(2) {
    height: 64px;
    margin-top: 16px;
}

.landing-premium__badge {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff9d4d, #ff6a55);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 14px 26px rgba(255, 106, 85, 0.28);
}

.landing-trust__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.landing-trust__title {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: #101828;
}

.landing-trust__copy {
    max-width: 620px;
    margin: 16px auto 0;
    color: #667085;
    font-size: 1rem;
}

.landing-trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.landing-trust__logos span {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    color: #475467;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.faq-page {
    padding: 28px 0 88px;
}

.faq-shell {
    display: grid;
    gap: 58px;
}

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

.faq-hero__title {
    margin-top: 16px;
    font-size: clamp(3rem, 6vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    color: #101828;
}

.faq-hero__copy {
    max-width: 700px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 1rem;
}

.faq-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.faq-summary,
.faq-group,
.faq-cta {
    border: 1px solid #e7ebf4;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.faq-summary {
    position: sticky;
    top: 108px;
    padding: 26px;
    border-radius: 24px;
}

.faq-summary h2 {
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: #101828;
}

.faq-summary p {
    margin-top: 12px;
    color: #667085;
    font-size: 0.95rem;
}

.faq-summary__points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.faq-summary__points span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f8fafe;
    border: 1px solid #edf1f7;
    color: #344054;
    font-weight: 600;
}

.faq-groups {
    display: grid;
    gap: 20px;
}

.faq-group {
    padding: 24px;
    border-radius: 24px;
}

.faq-group__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(66, 111, 255, 0.08);
    color: #3758c7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.faq-item {
    border: 1px solid #edf1f7;
    border-radius: 18px;
    background: #fbfcfe;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    cursor: pointer;
    color: #101828;
    font-size: 1rem;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item__toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.8px;
    border-radius: 999px;
    background: #526075;
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-item__body {
    padding: 0 20px 18px;
    color: #667085;
    font-size: 0.95rem;
}

.faq-item__body p {
    margin: 0;
}

.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
}

.faq-cta h2 {
    margin-top: 14px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #101828;
}

.faq-cta p {
    margin-top: 12px;
    max-width: 660px;
    color: #667085;
}

.faq-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1100px) {
    .landing-tools__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-benefits__grid,
    .landing-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-premium__panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-premium__visual {
        width: 100%;
        flex: 0 0 auto;
    }
}

@media (max-width: 820px) {
    .landing-features__grid {
        grid-template-columns: 1fr;
    }

    .landing-hero,
    .landing-tools,
    .landing-benefits,
    .landing-features,
    .landing-premium,
    .landing-trust {
        padding: 60px 0;
    }

    .landing-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-section__head--center {
        align-items: center;
    }

    .landing-tools__grid,
    .landing-benefits__grid,
    .landing-steps__grid,
    .landing-features__grid {
        grid-template-columns: 1fr;
    }

    .landing-premium__panel {
        padding: 28px;
    }
}

@media (max-width: 560px) {
    .landing-hero__title {
        font-size: clamp(2.4rem, 13vw, 3.4rem);
    }

    .landing-tool-card,
    .landing-benefit-card,
    .landing-step-card,
    .landing-feature-card {
        padding: 20px;
    }

    .landing-feature-card__visual {
        height: 150px;
    }

    .landing-premium__visual {
        min-height: 210px;
    }

    .landing-premium__card--front {
        width: 180px;
        height: 146px;
    }

    .landing-premium__card--back {
        width: 160px;
        height: 122px;
    }
}

.page-home .site-header,
.page-dashboard .site-header,
.page-auth .site-header {
    padding-top: 0;
}

.site-header__inner {
    padding-top: 0;
}

.navbar--product {
    border: 1px solid #eceff4;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.navbar--product .navbar__inner {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    min-height: 68px;
    gap: 16px;
    padding: 10px 0;
}

.navbar__primary {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

.navbar--product .navbar__brand {
    gap: 12px;
}

.navbar--product .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b57, #ff4f3b);
    box-shadow: none;
}

.navbar--product .brand-name {
    font-family: 'Inter', var(--font-ui);
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.06em;
}

.navbar--product .brand-name strong {
    color: #111827;
}

.navbar--product .brand-meta {
    display: none;
}

.navbar--product .navbar__link,
.navbar--product .navbar__tools-trigger {
    min-height: 38px;
    padding: 0 13px;
    color: #101828;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
}

.navbar--product .navbar__link--strong {
    color: #101828;
    text-transform: none;
    font-size: 0.95rem;
}

.navbar--product .navbar__link:hover,
.navbar--product .navbar__tools-trigger:hover {
    background: #f5f7fb;
    border-color: #e7ebf4;
}

.navbar--product .site-actions {
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

html[data-theme='dark'] .navbar--product {
    border-color: var(--line);
    background: rgba(17, 17, 17, 0.96);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.navbar--product .btn--sm {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
}

.navbar--product .btn--outline {
    background: #ffffff;
    border-color: #d9dfec;
}

.navbar--product .btn--primary {
    background: linear-gradient(135deg, #ff7557, #ff5630);
    box-shadow: 0 10px 22px rgba(255, 86, 48, 0.18);
}

.navbar--product .tools-dropdown {
    border: 1px solid #e7ebf4;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.1);
    border-radius: 22px;
}

.navbar--product .tools-dropdown__title {
    color: #111827;
}

.navbar--product .tools-dropdown__copy {
    color: #667085;
}

.navbar--product .tools-dropdown__item {
    border-color: #edf1f7;
    background: #fbfcfe;
}

.navbar--product .tools-dropdown__item:hover {
    border-color: #d9dfec;
    box-shadow: none;
}

.navbar--product .navbar__tools-trigger {
    position: relative;
}

.navbar--product .navbar__tools-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    transform: none;
    width: 100%;
    height: 18px;
    background: transparent;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(980px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-strong);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 220;
}

.navbar__tools-trigger--all .mega-menu {
    left: 50%;
    right: auto;
    transform: translateY(10px);
}

.navbar__tools-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.navbar__tools-trigger--all:hover .mega-menu,
.navbar__tools-trigger--all.is-open .mega-menu {
    transform: translateX(-72%) translateY(0);
}

.navbar__tools-trigger--all .mega-menu {
    transform: translateX(-72%) translateY(10px);
}

.mega-menu__grid {
    display: grid;
    gap: 16px;
}

.mega-menu__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mega-menu__grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu__grid--all-tools {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 18px;
}

.mega-menu__column {
    min-width: 0;
}

.mega-menu__column--feature {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 252, 0.92));
    border: 1px solid var(--line);
}

.mega-menu__title {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
}

.mega-menu__list {
    display: grid;
    gap: 6px;
}

.mega-menu__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mega-menu__item:hover {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--line);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
    transform: translateY(-1px);
}

.mega-menu__item--disabled {
    opacity: 0.52;
    cursor: default;
}

.mega-menu__item--disabled:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
}

.mega-menu__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.mega-menu__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.mega-menu__text {
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
}

.mega-menu--all {
    width: min(860px, calc(100vw - 24px));
    padding: 16px;
}

.mega-menu__tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 16px;
}

.mega-menu--all .mega-menu__item {
    min-height: 32px;
    padding: 1px 0;
    border-radius: 0;
    gap: 8px;
    align-items: center;
    border: 0;
    box-shadow: none;
}

.mega-menu--all .mega-menu__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.mega-menu--all .mega-menu__icon img {
    width: 18px;
    height: 18px;
}

.mega-menu--all .mega-menu__text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    white-space: normal;
    line-height: 1.2;
}

.mega-menu--all .mega-menu__item:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    transform: translateX(2px);
}

.mega-menu--convert {
    width: min(720px, calc(100vw - 32px));
    padding: 18px;
}

.mega-menu--convert .mega-menu__grid--two {
    gap: 0;
}

.mega-menu--convert .mega-menu__column--feature {
    padding: 10px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.mega-menu--convert .mega-menu__column--feature + .mega-menu__column--feature {
    border-left: 1px solid var(--line);
}

.mega-menu--convert .mega-menu__title {
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.mega-menu--convert .mega-menu__list {
    gap: 4px;
}

.mega-menu--convert .mega-menu__item {
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 10px;
    box-shadow: none;
}

.mega-menu--convert .mega-menu__item:hover {
    transform: translateX(2px);
}

.mega-menu--convert .mega-menu__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.mega-menu--convert .mega-menu__icon img {
    width: 20px;
    height: 20px;
}

.mega-menu--convert .mega-menu__text {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
}

html[data-theme='dark'] .mega-menu {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.44);
}

html[data-theme='dark'] .mega-menu__column--feature {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

html[data-theme='dark'] .mega-menu__item:hover {
    background: rgba(255, 255, 255, 0.04);
}

html[data-theme='dark'] .mega-menu__icon {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1100px) {
    .mega-menu__tool-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.navbar__apps {
    width: 42px;
    height: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 9px;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

.navbar__apps:hover {
    background: #f5f7fb;
}

html[data-theme='dark'] .navbar__apps:hover {
    background: rgba(255, 255, 255, 0.04);
}

.navbar__apps span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #344054;
}

html[data-theme='dark'] .navbar__apps span {
    background: var(--text-soft);
}

.dashboard-page {
    padding: 52px 0 84px;
}

.dashboard-stack {
    display: grid;
    gap: 22px;
}

.dashboard-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.dashboard-topbar__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(66, 111, 255, 0.08);
    color: #3758c7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-topbar h1 {
    margin-top: 14px;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #101828;
}

.dashboard-topbar p {
    max-width: 640px;
    margin-top: 12px;
    color: #667085;
    font-size: 1rem;
}

html[data-theme='dark'] .dashboard-topbar h1 {
    color: var(--text);
}

html[data-theme='dark'] .dashboard-topbar p {
    color: var(--text-soft);
}

html[data-theme='dark'] .dashboard-topbar__eyebrow {
    background: rgba(87, 128, 255, 0.16);
    color: #c7d6ff;
}

.dashboard-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-stats--clean {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card--clean {
    border: 1px solid #e7ebf4;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

html[data-theme='dark'] .stat-card--clean {
    border-color: rgba(255, 255, 255, 0.08);
    background: #151b26;
    box-shadow: none;
}

html[data-theme='dark'] .stat-card--clean .stat-card__eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

html[data-theme='dark'] .stat-card--clean .stat-card__value {
    color: #ffffff;
}

html[data-theme='dark'] .stat-card--clean .stat-card__label {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-panel--clean {
    border: 1px solid #e7ebf4;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
}

html[data-theme='dark'] .dashboard-panel--clean {
    border-color: rgba(255, 255, 255, 0.08);
    background: #151b26;
    box-shadow: none;
}

html[data-theme='dark'] .dashboard-panel--clean .dashboard-panel__header h2,
html[data-theme='dark'] .dashboard-panel--clean .dashboard-panel__header p,
html[data-theme='dark'] .dashboard-panel--clean .table-meta strong,
html[data-theme='dark'] .dashboard-panel--clean td,
html[data-theme='dark'] .dashboard-panel--clean th,
html[data-theme='dark'] .dashboard-panel--clean .empty-state__icon,
html[data-theme='dark'] .dashboard-panel--clean .empty-state h3 {
    color: #ffffff;
}

html[data-theme='dark'] .dashboard-panel--clean .table-meta span,
html[data-theme='dark'] .dashboard-panel--clean .empty-state p,
html[data-theme='dark'] .dashboard-panel--clean td span:not(.badge),
html[data-theme='dark'] .dashboard-panel--clean th {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-panel__header--clean {
    margin-bottom: 26px;
}

.dashboard-table-wrap {
    overflow-x: auto;
}

.history-table--clean th,
.history-table--clean td {
    border-bottom: 1px solid #edf1f7;
}

html[data-theme='dark'] .history-table--clean th,
html[data-theme='dark'] .history-table--clean td {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.history-table--clean tbody tr:hover {
    background: #f8fafe;
}

html[data-theme='dark'] .history-table--clean tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.empty-state--clean {
    border: 1px dashed #d9dfec;
    background: #fbfcff;
    box-shadow: none;
}

html[data-theme='dark'] .empty-state--clean {
    border-color: rgba(255, 255, 255, 0.1);
    background: #151b26;
}

html[data-theme='dark'] .history-table--clean {
    color: #ffffff;
}

html[data-theme='dark'] .history-table--clean a.btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.16);
    background: transparent;
}

html[data-theme='dark'] .history-table--clean a.btn--outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.empty-state--clean .btn {
    margin-top: 18px;
}

.auth-layout {
    padding: 44px 0 62px;
}

.auth-layout__grid--clean {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 460px);
    gap: 18px;
}

.auth-showcase--clean {
    border: 1px solid #e7ebf4;
    background: linear-gradient(180deg, #f8fbff, #f3f6fc);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.05);
    gap: 24px;
}

html[data-theme='dark'] .auth-showcase--clean {
    border-color: var(--line);
    background:
        radial-gradient(circle at top left, rgba(214, 128, 103, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(28, 30, 34, 0.98), rgba(18, 19, 22, 0.98));
    box-shadow: var(--shadow-md);
}

.auth-showcase--clean h1 {
    max-width: 560px;
    font-family: 'Inter', var(--font-ui);
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: #101828;
}

html[data-theme='dark'] .auth-showcase--clean h1 {
    color: var(--text);
}

.auth-showcase--clean p {
    color: #667085;
    max-width: 520px;
    margin-top: 12px;
    line-height: 1.65;
}

html[data-theme='dark'] .auth-showcase--clean p {
    color: var(--text-soft);
}

.auth-showcase__band {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid #e6ebf5;
    background:
        radial-gradient(circle at top right, rgba(183, 77, 54, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 245, 238, 0.92));
}

.auth-showcase__band-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-showcase__token {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid #e2e8f3;
    font-size: 0.8rem;
    font-weight: 700;
    color: #495568;
}

.auth-showcase__band-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.95fr 0.75fr;
    gap: 10px;
}

.auth-showcase__band-strip span {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(183, 77, 54, 0.72), rgba(35, 66, 59, 0.32));
}

.auth-showcase__band-strip span:nth-child(2) {
    opacity: 0.72;
}

.auth-showcase__band-strip span:nth-child(3) {
    opacity: 0.5;
}

.auth-showcase__band-meta {
    display: grid;
    gap: 4px;
}

.auth-showcase__band-meta strong {
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #182230;
}

.auth-showcase__band-meta span {
    color: #667085;
    font-size: 0.93rem;
    line-height: 1.55;
}

.auth-showcase__visual {
    position: relative;
    height: 196px;
    border-radius: 20px;
    border: 1px solid #e4eaf7;
    background: linear-gradient(135deg, #eef4ff, #fff4ed);
    overflow: hidden;
}

html[data-theme='dark'] .auth-showcase__visual {
    border-color: var(--line);
    background: linear-gradient(135deg, rgba(54, 70, 99, 0.4), rgba(69, 46, 37, 0.36));
}

.auth-showcase__visual--illustrated {
    padding: 0;
    background: linear-gradient(135deg, #eef4ff, #fff4ed);
}

.auth-showcase__visual--illustrated img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-showcase__visual span {
    position: absolute;
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.auth-showcase__visual span:nth-child(1) {
    inset: 24px 28px 92px;
}

.auth-showcase__visual span:nth-child(2) {
    left: 28px;
    bottom: 24px;
    width: 34%;
    height: 42px;
}

.auth-showcase__visual span:nth-child(3) {
    right: 28px;
    bottom: 24px;
    width: 26%;
    height: 62px;
}

.auth-showcase__visual--register span:nth-child(1) {
    inset: 24px 28px 74px;
}

.auth-showcase__visual--register span:nth-child(2) {
    width: 42%;
    height: 18px;
}

.auth-showcase__visual--register span:nth-child(3) {
    width: 30%;
    height: 84px;
}

.auth-showcase__points--clean span {
    min-height: 46px;
    border-radius: 14px;
    border-color: #e5ebf7;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    color: #344054;
}

html[data-theme='dark'] .auth-showcase__points--clean span {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
}

html[data-theme='dark'] .auth-showcase__band {
    border-color: var(--line);
    background:
        radial-gradient(circle at top right, rgba(214, 128, 103, 0.1), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

html[data-theme='dark'] .auth-showcase__token {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text-soft);
}

html[data-theme='dark'] .auth-showcase__band-meta strong {
    color: var(--text);
}

html[data-theme='dark'] .auth-showcase__band-meta span {
    color: var(--text-soft);
}

.auth-card--clean {
    padding: 28px;
    border: 1px solid #e7ebf4;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.06);
}

html[data-theme='dark'] .auth-card--clean {
    border-color: var(--line);
    background: rgba(23, 23, 23, 0.96);
    box-shadow: var(--shadow-md);
}

.auth-card--clean h2 {
    font-family: 'Inter', var(--font-ui);
    color: #101828;
    margin: 0;
}

html[data-theme='dark'] .auth-card--clean h2 {
    color: var(--text);
}

.auth-card--clean .auth-sub,
.auth-card--clean .auth-footer {
    color: #667085;
}

.auth-card--clean .auth-sub {
    margin: 0 0 2px;
}

html[data-theme='dark'] .auth-card--clean .auth-sub,
html[data-theme='dark'] .auth-card--clean .auth-footer {
    color: var(--text-soft);
}

.auth-footer {
    position: relative;
    z-index: 1;
}

.auth-footer__link {
    display: inline-flex;
    align-items: center;
    color: #365fd3;
    font-weight: 700;
    text-decoration: none;
}

html[data-theme='dark'] .auth-footer__link {
    color: #8fb2ff;
}

.auth-footer__link:hover {
    text-decoration: underline;
}

.auth-card--clean .form-group input,
.auth-card--clean .form-group select,
.auth-card--clean .form-group textarea {
    background: #ffffff;
    border-color: #d9dfec;
}

.auth-card--clean {
    display: grid;
    gap: 14px;
}

.auth-card--clean .stack-md {
    gap: 12px;
}

.auth-form-section {
    display: grid;
    gap: 12px;
}

.auth-card--clean .form-group {
    display: grid;
    gap: 6px;
}

.auth-card--clean .form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.01em;
    color: #475467;
}

.auth-card--clean .form-group input,
.auth-card--clean .form-group select,
.auth-card--clean .form-group textarea {
    min-height: 50px;
    padding: 0 15px;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.auth-card--clean .form-group input::placeholder,
.auth-card--clean .form-group textarea::placeholder {
    color: #98a2b3;
}

html[data-theme='dark'] .auth-card--clean .form-group input,
html[data-theme='dark'] .auth-card--clean .form-group select,
html[data-theme='dark'] .auth-card--clean .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
    color: var(--text);
}

.auth-card--clean .btn--secondary {
    background: #f8fafe;
    border-color: #d9dfec;
}

html[data-theme='dark'] .auth-card--clean .btn--secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme='dark'] .auth-card--clean .form-group label {
    color: #c8cfdb;
}

html[data-theme='dark'] .auth-card--clean .form-group input::placeholder,
html[data-theme='dark'] .auth-card--clean .form-group textarea::placeholder {
    color: #8b93a7;
}

.auth-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    border-top: 1px solid #e4e8f0;
}

.auth-divider span {
    position: relative;
    padding: 0 10px;
    background: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #98a2b3;
}

html[data-theme='dark'] .auth-divider::before {
    border-top-color: var(--line);
}

html[data-theme='dark'] .auth-divider span {
    background: rgba(23, 23, 23, 0.96);
    color: #8b93a7;
}

.auth-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid #d9dfec;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
}

.auth-google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(16, 24, 40, 0.08);
}

.auth-google-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.auth-google-btn__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.auth-google-btn span:last-child {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.auth-card--clean .btn--primary {
    min-height: 50px;
    border-radius: 12px;
}

.auth-card--clean .auth-sub {
    margin-top: -2px;
    line-height: 1.55;
}

.auth-card--clean .auth-footer {
    margin-top: 4px;
    line-height: 1.5;
}

html[data-theme='dark'] .auth-google-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
    box-shadow: none;
}

html[data-theme='dark'] .auth-google-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.auth-layout--poster {
    padding: 24px 0 34px;
}

.auth-layout--poster .container {
    width: min(100% - 28px, 1320px);
}

.auth-poster {
    min-height: calc(100vh - var(--nav-height) - 52px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(34, 31, 26, 0.09);
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(25, 21, 17, 0.09);
}

.auth-poster__visual {
    position: relative;
    padding: 42px;
    display: grid;
    align-content: center;
    gap: 28px;
    color: #fff9f2;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(145deg, #b65b41 0%, #8f422f 38%, #3f5f57 100%);
}

.auth-poster__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.auth-poster__brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
}

.auth-poster__brand-mark svg {
    width: 28px;
    height: 28px;
}

.auth-poster__brand strong,
.auth-poster__brand span {
    display: block;
}

.auth-poster__brand strong {
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.auth-poster__brand span {
    margin-top: 4px;
    font-size: 0.88rem;
    color: rgba(255, 249, 242, 0.74);
}

.auth-poster__copy {
    max-width: 560px;
}

.auth-poster__copy .eyebrow {
    margin-bottom: 14px;
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 249, 242, 0.82);
    background: rgba(255, 255, 255, 0.08);
}

.auth-poster__copy h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 0.96;
    letter-spacing: -0.08em;
    color: #fffdf9;
}

.auth-poster__copy p {
    margin: 18px 0 0;
    max-width: 34rem;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 249, 242, 0.8);
}

.auth-poster__benefits {
    display: grid;
    gap: 14px;
    max-width: 560px;
}

.auth-poster__benefit {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 0 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    font-weight: 600;
    line-height: 1.45;
}

.auth-poster__benefit-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #fff9f2;
}

.auth-poster__benefit-icon svg {
    width: 100%;
    height: 100%;
}

.auth-poster__panel {
    display: grid;
    align-items: center;
    padding: 42px 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff),
        var(--surface-strong);
}

.auth-card--poster {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 18px;
}

.auth-card__topline {
    display: grid;
    gap: 8px;
}

.auth-card--poster h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.auth-card--poster .auth-sub {
    margin: 0;
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.auth-card__switch {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
}

.auth-card--poster .stack-md {
    gap: 16px;
}

.auth-google-btn--poster {
    min-height: 58px;
    justify-content: center;
    border-radius: 18px;
    border-color: rgba(34, 31, 26, 0.12);
    background: #ffffff;
    box-shadow: none;
}

.auth-divider--poster {
    margin: 2px 0 0;
}

.auth-divider--poster span {
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-faint);
}

.form-group--poster {
    gap: 10px;
}

.form-group--poster label {
    font-size: 0.92rem;
    color: var(--text);
}

.auth-card--poster .form-group input {
    min-height: 58px;
    border-radius: 18px;
    background: #f4f7fb;
    border-color: transparent;
    padding: 0 18px;
    box-shadow: none;
}

.auth-card--poster .form-group input:focus {
    border-color: rgba(183, 77, 54, 0.26);
    box-shadow: 0 0 0 4px rgba(183, 77, 54, 0.08);
    background: #ffffff;
}

.auth-submit-btn {
    min-height: 58px;
    border-radius: 18px;
    font-size: 1.02rem;
}

.auth-footer--poster {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--text-faint);
}

html[data-theme='dark'] .auth-poster {
    border-color: var(--line);
    background: #121212;
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .auth-poster__visual {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 80% 85%, rgba(255, 255, 255, 0.04), transparent 22%),
        linear-gradient(145deg, rgba(214, 128, 103, 0.86) 0%, rgba(118, 54, 36, 0.92) 38%, rgba(38, 73, 65, 0.95) 100%);
}

html[data-theme='dark'] .auth-poster__panel {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(16, 16, 16, 0.98));
}

html[data-theme='dark'] .auth-card--poster .form-group input {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

html[data-theme='dark'] .auth-card--poster .form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
    .auth-layout--poster .container {
        width: min(100% - 24px, 1320px);
    }

    .auth-poster {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .auth-poster__visual,
    .auth-poster__panel {
        padding: 28px 24px;
    }

    .auth-poster__copy h1 {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }
}

@media (max-width: 720px) {
    .auth-layout--poster {
        padding: 14px 0 24px;
    }

    .auth-poster {
        border-radius: 22px;
    }

    .auth-poster__visual,
    .auth-poster__panel {
        padding: 22px 18px;
    }

    .auth-poster__benefit {
        min-height: 58px;
        padding: 0 16px;
        border-radius: 16px;
    }

    .auth-google-btn--poster,
    .auth-submit-btn,
    .auth-card--poster .form-group input {
        min-height: 54px;
        border-radius: 16px;
    }
}

@media (max-width: 1100px) {
    .dashboard-stats--clean {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auth-layout__grid--clean {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 820px) {
    .site-footer__inner {
        width: min(100% - 20px, 1320px);
    }

    .container,
    .page-home .container,
    .tool-page .container {
        width: min(100% - 20px, 1200px);
    }

    .navbar__primary {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        gap: 8px;
    }

    .navbar--product .site-actions {
        width: 100%;
        margin-left: 0;
        justify-content: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .navbar__apps {
        width: 100%;
        height: 44px;
        grid-template-columns: repeat(3, 1fr);
        justify-content: stretch;
        border: 1px solid #e7ebf4;
        border-radius: 14px;
        background: #f8fafe;
    }

    .navbar--product .navbar__link,
    .navbar--product .navbar__tools-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 0 14px;
        min-height: 46px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        padding: 14px;
        border-radius: 16px;
    }

    .navbar--product .navbar__tools-trigger::after {
        display: none;
    }

    .navbar__tools-trigger:hover .mega-menu,
    .navbar__tools-trigger.is-open .mega-menu {
        display: block;
        transform: none;
    }

    .mega-menu__grid--two,
    .mega-menu__grid--six,
    .mega-menu__grid--all-tools {
        grid-template-columns: 1fr;
    }

    .mega-menu__tool-grid {
        grid-template-columns: 1fr;
    }

    .mega-menu--convert .mega-menu__column--feature + .mega-menu__column--feature {
        border-left: 0;
        border-top: 1px solid #edf1f7;
        margin-top: 10px;
        padding-top: 14px;
    }

    .landing-hero {
        padding-top: 18px;
    }

    .landing-hero__title {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
        line-height: 1.02;
    }

    .landing-hero__copy,
    .landing-section__copy,
    .landing-trust__copy {
        font-size: 0.96rem;
    }

    .landing-tools__grid,
    .landing-benefits__grid,
    .landing-steps__grid,
    .landing-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .landing-tool-card,
    .landing-benefit-card,
    .landing-step-card,
    .landing-feature-card {
        min-height: 0;
        padding: 20px;
        border-radius: 20px;
    }

    .landing-premium__panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
        border-radius: 24px;
    }

    .landing-premium__visual {
        min-height: 180px;
        width: 100%;
    }

    .faq-page {
        padding: 20px 0 64px;
    }

    .faq-shell {
        gap: 36px;
    }

    .faq-hero__title {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 1.02;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-summary {
        position: static;
        padding: 22px;
        border-radius: 22px;
    }

    .faq-group {
        padding: 20px;
        border-radius: 22px;
    }

    .faq-item summary {
        padding: 16px 16px;
        font-size: 0.96rem;
    }

    .faq-item__body {
        padding: 0 16px 16px;
    }

    .faq-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border-radius: 24px;
    }

    .faq-cta__actions .btn {
        width: 100%;
    }

    .dashboard-page {
        padding: 34px 0 64px;
    }

    .dashboard-topbar h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        line-height: 1.04;
    }

    .dashboard-topbar p {
        font-size: 0.95rem;
    }

    .dashboard-topbar__actions,
    .dashboard-panel__header {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-topbar__actions .btn,
    .dashboard-panel__header .btn {
        width: 100%;
    }

    .dashboard-stats--clean {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-card--clean,
    .dashboard-panel--clean {
        border-radius: 20px;
    }

    .dashboard-panel--clean {
        padding: 20px;
    }

    .dashboard-table-wrap {
        margin: 0 -4px;
    }

    .history-table,
    .history-table--clean {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .history-table th,
    .history-table td {
        padding: 14px 10px;
    }

    .auth-layout {
        padding: 34px 0 64px;
    }

    .auth-layout__grid--clean {
        gap: 14px;
    }

    .auth-showcase--clean,
    .auth-card--clean {
        padding: 22px;
        border-radius: 22px;
    }

    .auth-showcase--clean h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .auth-showcase__visual {
        height: 170px;
    }

    .auth-showcase__points--clean span {
        min-height: 48px;
        padding: 12px 14px;
    }

    .auth-showcase__band {
        padding: 16px;
        border-radius: 18px;
    }

    .tool-page {
        padding: 30px 0 64px;
    }

    .tool-page__header {
        margin-bottom: 18px;
    }

    .tool-page__header h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.04;
    }

    .tool-page__header p {
        font-size: 0.95rem;
    }

    #toolAlert {
        max-width: 100% !important;
        margin: 0 auto 14px !important;
    }

    .drop-zone,
    .options-panel,
    .result-panel,
    .progress-wrap,
    .file-list,
    .upload-status {
        max-width: 100%;
    }

    .drop-zone {
        padding: 16px;
        border-radius: 24px;
    }

    .tool-dropzone-shell__inner {
        padding: 34px 18px 28px;
        gap: 18px;
    }

    .tool-dropzone-shell__brand {
        font-size: 1.4rem;
        gap: 10px;
    }

    .tool-dropzone-shell__cta {
        min-height: 62px;
        font-size: 1.18rem;
    }

    .tool-dropzone-shell__cta-plus {
        font-size: 1.6rem;
    }

    .tool-process-band__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tool-preview {
        grid-template-columns: 1fr;
    }

    .tool-preview__stage,
    .tool-preview__frame,
    .tool-preview__image,
    .tool-preview__placeholder {
        min-height: 260px;
    }

    .drop-zone__icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
    }

    .drop-zone h3 {
        font-size: 1.24rem;
    }

    .file-item {
        padding: 14px;
        border-radius: 18px;
    }

    .options-panel .btn,
    .result-panel .btn,
    .result-download {
        width: 100%;
    }

    .footer-panel {
        padding: 24px 20px;
        border-radius: 0;
    }

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

    .footer-downloads {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }

    .footer-divider {
        margin-top: 34px;
    }

    .footer-bottom {
        gap: 16px;
    }

    .footer-language,
    .footer-copy,
    .footer-socials {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        white-space: normal;
    }

    .footer-socials {
        order: 2;
        gap: 14px;
    }

    .dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .navbar__inner {
        padding: 12px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .landing-shell {
        gap: 52px;
    }

    .landing-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-hero__actions .btn {
        width: 100%;
    }

    .landing-tool-card {
        padding: 18px;
    }

    .landing-tool-card__icon {
        width: 64px;
        height: 64px;
    }

    .landing-tool-card__icon img {
        width: 48px;
        height: 48px;
    }

    .landing-feature-card__visual {
        height: 150px;
    }

    .dashboard-topbar__eyebrow,
    .tool-badge,
    .landing-kicker {
        font-size: 0.72rem;
    }

    .stat-card__value {
        font-size: 2rem;
    }

    .auth-showcase__visual {
        height: 160px;
    }

    .auth-showcase__band-row,
    .auth-showcase__band-strip {
        gap: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        border-radius: 16px;
    }

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

@media (max-width: 480px) {
    .site-footer__inner {
        width: min(100% - 16px, 1320px);
    }

    .container,
    .page-home .container,
    .tool-page .container {
        width: min(100% - 16px, 1200px);
    }

    .navbar__inner {
        gap: 10px;
    }

    .navbar__brand {
        min-width: 0;
    }

    .brand-name {
        font-size: 1.08rem;
    }

    .landing-hero__title {
        font-size: clamp(2rem, 12vw, 2.7rem);
    }

    .landing-section__title,
    .landing-trust__title,
    .faq-cta h2 {
        font-size: 1.7rem;
    }

    .landing-tool-card,
    .landing-feature-card,
    .landing-premium__panel,
    .dashboard-panel--clean,
    .auth-showcase--clean,
    .auth-card--clean {
        padding: 18px;
        border-radius: 18px;
    }

    .landing-tool-card__body h3 {
        font-size: 1rem;
    }

    .landing-tool-card__body p,
    .landing-feature-card p,
    .faq-hero__copy,
    .faq-item__body,
    .auth-card--clean .auth-sub,
    .auth-card--clean .auth-footer,
    .dashboard-topbar p {
        font-size: 0.92rem;
    }

    .drop-zone {
        padding: 24px 14px;
    }

    .tool-dropzone-shell__brand {
        font-size: 1.2rem;
    }

    .tool-dropzone-shell__brand-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .tool-dropzone-shell__cta {
        min-height: 58px;
        padding: 0 20px;
        font-size: 1.05rem;
    }

    .tool-dropzone-shell__cta span:last-child {
        transform: none;
    }

    .tool-import-modal__dialog {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .tool-import-modal__actions {
        flex-direction: column;
    }

    .drop-zone__icon {
        width: 56px;
        height: 56px;
    }

    .drop-zone h3 {
        font-size: 1.1rem;
    }

    .file-item__icon,
    .mega-menu__icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .footer-panel {
        padding: 22px 16px;
    }

.footer-store-badge {
        min-height: 46px;
        padding: 0 14px;
    }
}

.grid {
    display: grid;
    gap: 24px;
}

.card {
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border-radius: 28px;
}

html[data-theme='dark'] .card {
    background: rgba(255, 255, 255, 0.03);
}

.info-page {
    padding: 24px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff, #ffffff);
}

.info-page__shell {
    display: grid;
    gap: 32px;
}

.info-page__hero {
    padding-top: 24px;
}

.info-page__hero-panel {
    padding: clamp(48px, 7vw, 76px);
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(35, 66, 59, 0.06), transparent 30%),
        #ffffff;
}

.info-page__hero-copy {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 1.05rem;
    color: var(--text-soft);
}

.info-page__hero-actions {
    justify-content: center;
    margin-top: 28px;
}

.info-page__section {
    padding: 0;
}

.info-page__section-head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.info-page__section-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.info-page__section-copy {
    margin-top: 12px;
    color: var(--text-soft);
}

.info-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.info-page__card {
    padding: 28px;
}

.info-page__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand);
}

.info-page__icon svg {
    width: 24px;
    height: 24px;
}

.info-page__card h3 {
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.info-page__card p,
.info-page__card li,
.info-page__policy-copy,
.info-page__legal-note {
    color: var(--text-soft);
}

.info-page__card p {
    margin-top: 12px;
}

.info-page__list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.info-page__list li {
    position: relative;
    padding-left: 18px;
}

.info-page__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
}

.info-page__policy {
    display: grid;
    gap: 20px;
}

.info-page__policy-card {
    padding: 30px;
}

.info-page__policy-card h2 {
    font-size: 1.42rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.info-page__policy-copy {
    margin-top: 14px;
}

.info-page__policy-copy p + p {
    margin-top: 12px;
}

.info-page__legal-note {
    font-size: 0.95rem;
}

.business-page {
    display: grid;
    gap: 34px;
    padding: 24px 0 88px;
}

.business-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 26px;
    align-items: center;
}

.business-hero__content {
    display: grid;
    gap: 22px;
}

.business-hero__title {
    max-width: 720px;
    font-size: clamp(3rem, 6.3vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    font-weight: 800;
}

.business-hero__copy {
    max-width: 620px;
    font-size: 1.05rem;
    color: var(--text-soft);
}

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

.business-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.business-metric {
    padding: 18px 18px 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
}

html[data-theme='dark'] .business-metric {
    background: rgba(255, 255, 255, 0.03);
}

.business-metric strong,
.business-stat-block strong,
.business-dashboard__headline,
.business-floating strong {
    display: block;
    font-size: 0.98rem;
    letter-spacing: -0.03em;
}

.business-metric span,
.business-stat-block span,
.business-dashboard__row span,
.business-feature-card p,
.business-step p,
.business-trust__inner p {
    color: var(--text-soft);
}

.business-metric span {
    display: block;
    margin-top: 8px;
    font-size: 0.86rem;
}

.business-hero__visual {
    position: relative;
    min-height: 520px;
    padding: 28px;
    border-radius: 34px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(183, 77, 54, 0.09), transparent 28%),
        radial-gradient(circle at bottom right, rgba(35, 66, 59, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff, #fffdf9);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

html[data-theme='dark'] .business-hero__visual {
    background:
        radial-gradient(circle at top left, rgba(214, 128, 103, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(141, 194, 178, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(20, 20, 20, 0.96));
}

.business-dashboard {
    position: absolute;
    inset: 36px 56px 100px 36px;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .business-dashboard {
    background: rgba(255, 255, 255, 0.04);
}

.business-dashboard__top {
    display: flex;
    gap: 8px;
    padding: 18px 20px 0;
}

.business-dashboard__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(183, 77, 54, 0.24);
}

.business-dashboard__body {
    display: grid;
    gap: 20px;
    padding: 22px 20px 22px;
}

.business-dashboard__list {
    display: grid;
    gap: 14px;
}

.business-dashboard__row {
    display: grid;
    gap: 6px;
    padding: 16px 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fffdfa);
}

html[data-theme='dark'] .business-dashboard__row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.business-dashboard__row strong {
    font-size: 0.96rem;
    letter-spacing: -0.02em;
}

.business-dashboard__row span {
    font-size: 0.84rem;
}

.business-floating {
    position: absolute;
    display: grid;
    gap: 6px;
    width: 220px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.business-floating span {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}

.business-floating--accent {
    right: 26px;
    top: 40px;
    background: rgba(35, 66, 59, 0.92);
    color: #f6efe6;
}

.business-floating--accent span,
.business-floating--accent strong {
    color: inherit;
}

.business-floating--soft {
    left: 48px;
    bottom: 28px;
    background: #ffffff;
}

html[data-theme='dark'] .business-floating--soft {
    background: rgba(255, 255, 255, 0.05);
}

.business-trust {
    padding: 0;
}

.business-trust__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 4px;
}

.business-trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.business-trust__logos span {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
}

html[data-theme='dark'] .business-trust__logos span {
    background: rgba(255, 255, 255, 0.03);
}

.business-section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.business-section-title {
    margin-top: 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.business-section-copy {
    max-width: 620px;
    margin-top: 12px;
    color: var(--text-soft);
}

.business-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.business-feature-card {
    min-height: 228px;
    padding: 26px 24px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .business-feature-card {
    background: rgba(255, 255, 255, 0.03);
}

.business-feature-card--warm {
    background: linear-gradient(180deg, #fff6f1, #ffffff 72%);
}

.business-feature-card--accent {
    background: linear-gradient(180deg, #f6faf8, #ffffff 72%);
}

html[data-theme='dark'] .business-feature-card--warm,
html[data-theme='dark'] .business-feature-card--accent {
    background: rgba(255, 255, 255, 0.04);
}

.business-feature-card__number,
.business-step__index {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: var(--text-faint);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

html[data-theme='dark'] .business-feature-card__number,
html[data-theme='dark'] .business-step__index {
    background: rgba(255, 255, 255, 0.04);
}

.business-feature-card h3,
.business-step h3 {
    margin-top: 16px;
    font-size: 1.2rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.business-feature-card p,
.business-step p {
    margin-top: 12px;
}

.business-workflow__layout,
.business-split__panel,
.business-cta__panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .business-workflow__layout,
html[data-theme='dark'] .business-split__panel,
html[data-theme='dark'] .business-cta__panel {
    background: rgba(255, 255, 255, 0.03);
}

.business-workflow__steps {
    display: grid;
    gap: 14px;
}

.business-step {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fffdfa);
}

html[data-theme='dark'] .business-step {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.business-split__visual {
    display: grid;
    align-content: center;
    gap: 18px;
}

.business-panel {
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #fffdfa);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: grid;
    gap: 14px;
}

html[data-theme='dark'] .business-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.business-panel--tall {
    min-height: 260px;
}

.business-panel--short {
    min-height: 160px;
}

.business-panel span {
    display: block;
    border-radius: 16px;
    background: rgba(183, 77, 54, 0.1);
}

.business-panel--tall span:nth-child(1) {
    height: 52px;
}

.business-panel--tall span:nth-child(2) {
    height: 92px;
}

.business-panel--tall span:nth-child(3) {
    height: 48px;
}

.business-panel--short span:nth-child(1) {
    height: 46px;
}

.business-panel--short span:nth-child(2) {
    height: 54px;
    background: rgba(35, 66, 59, 0.12);
}

.business-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 20px;
}

.business-proof__quote {
    padding: 30px;
}

.business-proof__quote p {
    font-size: 1.16rem;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.business-proof__quote strong {
    display: block;
    margin-top: 22px;
}

.business-proof__quote span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
}

.business-proof__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.business-stat-block {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .business-stat-block {
    background: rgba(255, 255, 255, 0.03);
}

.business-stat-block span {
    display: block;
    margin-top: 10px;
}

.business-cta__panel {
    align-items: center;
}

.business-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-self: end;
}

@media (max-width: 820px) {
    .info-page {
        padding: 18px 0 64px;
    }

    .info-page__hero {
        padding-top: 12px;
    }

    .info-page__hero-panel,
    .info-page__card,
    .info-page__policy-card {
        padding: 22px;
        border-radius: 22px;
    }

    .info-page__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .info-page__hero-actions .btn {
        width: 100%;
    }

    .business-page {
        gap: 28px;
        padding: 18px 0 64px;
    }

    .business-hero,
    .business-workflow__layout,
    .business-split__panel,
    .business-cta__panel,
    .business-proof__grid {
        grid-template-columns: 1fr;
    }

    .business-hero__visual {
        min-height: 430px;
    }

    .business-hero__metrics,
    .business-proof__stats,
    .business-feature-grid {
        grid-template-columns: 1fr;
    }

    .business-workflow__layout,
    .business-split__panel,
    .business-cta__panel,
    .business-proof__quote,
    .business-stat-block,
    .business-feature-card {
        padding: 22px;
        border-radius: 22px;
    }

    .business-trust__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .business-trust__logos {
        justify-content: flex-start;
    }

    .business-cta__actions {
        justify-self: stretch;
    }

    .business-cta__actions .btn,
    .business-hero__actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .info-page__hero-copy,
    .info-page__section-copy,
    .info-page__card p,
    .info-page__card li,
    .info-page__policy-copy,
    .info-page__legal-note {
        font-size: 0.94rem;
    }

    .info-page__hero-panel,
    .info-page__card,
    .info-page__policy-card {
        padding: 18px;
        border-radius: 18px;
    }

    .info-page__section-title {
        font-size: 1.8rem;
    }

    .business-hero__title {
        font-size: clamp(2.35rem, 11vw, 3.3rem);
        line-height: 1;
    }

    .business-hero__copy,
    .business-section-copy,
    .business-feature-card p,
    .business-step p,
    .business-metric span,
    .business-proof__quote p,
    .business-stat-block span {
        font-size: 0.94rem;
    }

    .business-hero__visual {
        min-height: 360px;
        padding: 18px;
        border-radius: 22px;
    }

    .business-dashboard {
        inset: 20px 22px 86px 20px;
        border-radius: 22px;
    }

    .business-floating {
        width: auto;
        max-width: 180px;
        padding: 14px;
        border-radius: 18px;
    }

    .business-floating--accent {
        top: 22px;
        right: 18px;
    }

    .business-floating--soft {
        left: 22px;
        bottom: 18px;
    }
}

html[data-theme='dark'] .landing-section__title,
html[data-theme='dark'] .landing-hero__title,
html[data-theme='dark'] .landing-tool-card__body h3,
html[data-theme='dark'] .landing-benefit-card h3,
html[data-theme='dark'] .landing-step-card h3,
html[data-theme='dark'] .landing-feature-card h3,
html[data-theme='dark'] .landing-premium__content h2,
html[data-theme='dark'] .landing-trust__title,
html[data-theme='dark'] .faq-hero__title,
html[data-theme='dark'] .faq-group__eyebrow,
html[data-theme='dark'] .section-title,
html[data-theme='dark'] .info-page__section-title,
html[data-theme='dark'] .info-page__policy-card h2,
html[data-theme='dark'] .business-section-title,
html[data-theme='dark'] .business-hero__title,
html[data-theme='dark'] .business-feature-card h3,
html[data-theme='dark'] .business-step h3,
html[data-theme='dark'] .business-proof__quote strong,
html[data-theme='dark'] .business-stat-block strong,
html[data-theme='dark'] .business-metric strong,
html[data-theme='dark'] .navbar--product .brand-name,
html[data-theme='dark'] .navbar--product .brand-name strong,
html[data-theme='dark'] .navbar--product .navbar__link,
html[data-theme='dark'] .navbar--product .navbar__tools-trigger,
html[data-theme='dark'] .navbar--product .navbar__link--strong {
    color: var(--text);
}

html[data-theme='dark'] .landing-section__copy,
html[data-theme='dark'] .landing-hero__copy,
html[data-theme='dark'] .landing-tool-card__body p,
html[data-theme='dark'] .landing-benefit-card p,
html[data-theme='dark'] .landing-feature-card p,
html[data-theme='dark'] .landing-premium__content p,
html[data-theme='dark'] .landing-trust__copy,
html[data-theme='dark'] .faq-hero__copy,
html[data-theme='dark'] .faq-item__body,
html[data-theme='dark'] .faq-cta p,
html[data-theme='dark'] .info-page__hero-copy,
html[data-theme='dark'] .info-page__section-copy,
html[data-theme='dark'] .info-page__card p,
html[data-theme='dark'] .info-page__card li,
html[data-theme='dark'] .info-page__policy-copy,
html[data-theme='dark'] .info-page__legal-note,
html[data-theme='dark'] .business-hero__copy,
html[data-theme='dark'] .business-section-copy,
html[data-theme='dark'] .business-feature-card p,
html[data-theme='dark'] .business-step p,
html[data-theme='dark'] .business-proof__quote span,
html[data-theme='dark'] .business-stat-block span,
html[data-theme='dark'] .business-metric span,
html[data-theme='dark'] .navbar--product .tools-dropdown__copy {
    color: var(--text-soft);
}

html[data-theme='dark'] .landing-tool-card,
html[data-theme='dark'] .landing-benefit-card,
html[data-theme='dark'] .landing-step-card,
html[data-theme='dark'] .landing-feature-card,
html[data-theme='dark'] .faq-group,
html[data-theme='dark'] .faq-cta,
html[data-theme='dark'] .faq-summary,
html[data-theme='dark'] .navbar--product .tools-dropdown,
html[data-theme='dark'] .navbar--product .tools-dropdown__item {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .landing-tool-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .landing-benefit-card__icon,
html[data-theme='dark'] .landing-step-card__icon {
    background: rgba(214, 128, 103, 0.14);
    color: var(--brand);
}

html[data-theme='dark'] .landing-step-card__number {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
}

html[data-theme='dark'] .landing-feature-card__visual {
    border-color: var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

html[data-theme='dark'] .landing-premium__panel {
    background: linear-gradient(135deg, rgba(80, 58, 24, 0.42), rgba(42, 34, 18, 0.5));
    border-color: rgba(224, 179, 100, 0.18);
    box-shadow: var(--shadow-md);
}

html[data-theme='dark'] .landing-premium__card {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

html[data-theme='dark'] .landing-premium__card div {
    background: rgba(255, 255, 255, 0.1);
}

html[data-theme='dark'] .landing-premium__card--back {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

html[data-theme='dark'] .landing-trust__logos span {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

html[data-theme='dark'] .navbar--product .navbar__link:hover,
html[data-theme='dark'] .navbar--product .navbar__tools-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
}

html[data-theme='dark'] .navbar--product .btn--outline {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line);
    color: var(--text);
}

html[data-theme='dark'] .navbar--product .tools-dropdown__title {
    color: var(--text);
}

:root {
    --transition-slow: 320ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-spring: 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

a,
.btn,
.navbar__link,
.navbar__tools-trigger,
.theme-toggle,
.footer-socials a,
.footer-column a,
.auth-footer__link,
.faq-item summary,
.card,
.landing-tool-card,
.landing-benefit-card,
.landing-step-card,
.landing-feature-card,
.landing-premium__panel,
.business-feature-card,
.business-step,
.business-stat-block,
.business-proof__quote,
.business-dashboard,
.business-floating,
.hero-panel {
    transition:
        transform var(--transition-slow),
        box-shadow var(--transition-slow),
        border-color var(--transition),
        background var(--transition),
        color var(--transition),
        opacity var(--transition);
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.16) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover::after {
    transform: translateX(140%);
}

.navbar__link:hover,
.navbar__tools-trigger:hover,
.theme-toggle:hover {
    transform: translateY(-1px);
}

.landing-tool-card:hover,
.landing-benefit-card:hover,
.landing-step-card:hover,
.landing-feature-card:hover,
.card:hover,
.business-feature-card:hover,
.business-step:hover,
.business-stat-block:hover,
.business-proof__quote:hover,
.landing-premium__panel:hover {
    transform: translateY(-4px);
}

.landing-tool-card:hover,
.landing-benefit-card:hover,
.landing-step-card:hover,
.landing-feature-card:hover,
.card:hover,
.business-feature-card:hover,
.business-step:hover,
.business-stat-block:hover,
.business-proof__quote:hover {
    box-shadow: var(--shadow-md);
}

.tool-card__icon,
.landing-tool-card__icon img,
.landing-feature-card__visual img,
.mega-menu__icon,
.info-page__icon,
.auth-showcase__visual img {
    transition: transform var(--transition-spring), filter var(--transition-slow), opacity var(--transition);
}

.tool-card:hover .tool-card__icon,
.landing-tool-card:hover .landing-tool-card__icon img,
.landing-feature-card:hover .landing-feature-card__visual img,
.mega-menu__item:hover .mega-menu__icon,
.info-page__card:hover .info-page__icon {
    transform: translateY(-3px) scale(1.04);
}

.business-hero__visual:hover .business-dashboard {
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: var(--shadow-md);
}

.business-hero__visual:hover .business-floating--accent {
    transform: translateY(-6px);
}

.business-hero__visual:hover .business-floating--soft {
    transform: translateY(4px);
}

.footer-column a,
.auth-footer__link,
.navbar__link--strong {
    position: relative;
}

.footer-column a::after,
.auth-footer__link::after,
.navbar__link--strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    opacity: 0.82;
}

.footer-column a:hover::after,
.auth-footer__link:hover::after,
.navbar__link--strong:hover::after {
    transform: scaleX(1);
}

.footer-column a:hover,
.faq-item summary:hover {
    transform: translateX(4px);
}

.footer-socials a:hover {
    transform: translateY(-3px) scale(1.06);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }
}

html[data-theme='dark'] .landing-benefits__tab {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

html[data-theme='dark'] .landing-benefits__tab--active {
    color: #ffffff;
    background: linear-gradient(135deg, #7a5cff, #d65ba6);
}

html[data-theme='dark'] .landing-showcase__card,
html[data-theme='dark'] .landing-benefits__workflow,
html[data-theme='dark'] .landing-step-card {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .landing-showcase__card h3,
html[data-theme='dark'] .landing-benefits__workflow h3,
html[data-theme='dark'] .landing-step-card h3,
html[data-theme='dark'] .landing-showcase__flow div,
html[data-theme='dark'] .landing-showcase__tool {
    color: var(--text);
}

html[data-theme='dark'] .landing-showcase__card p,
html[data-theme='dark'] .landing-benefits__workflow p,
html[data-theme='dark'] .landing-step-card p {
    color: var(--text-soft);
}

html[data-theme='dark'] .landing-showcase__meta {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-faint);
}

html[data-theme='dark'] .landing-showcase__visual,
html[data-theme='dark'] .landing-showcase__flow div,
html[data-theme='dark'] .landing-showcase__tool {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

html[data-theme='dark'] .landing-benefits__workflow-visual,
html[data-theme='dark'] .landing-benefits__workflow-pill {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

html[data-theme='dark'] .landing-benefits__workflow-pill {
    color: var(--text);
}

@media (max-width: 1100px) {
    .landing-showcase__card--feature,
    .landing-showcase__card--mini {
        grid-column: span 3;
    }

    .landing-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .landing-benefits__tabs {
        justify-content: flex-start;
    }

    .landing-showcase {
        grid-template-columns: 1fr;
    }

    .landing-showcase__card--feature,
    .landing-showcase__card--mini {
        grid-column: auto;
    }

    .landing-showcase__flow,
    .landing-showcase__visual--tools,
    .landing-steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-benefits__workflow {
        padding: 24px;
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .landing-showcase__flow,
    .landing-showcase__visual--tools,
    .landing-steps__grid {
        grid-template-columns: 1fr;
    }

    .landing-showcase__card,
    .landing-benefits__workflow,
    .landing-step-card {
        padding: 18px;
        border-radius: 18px;
    }
}

html[data-theme='dark'] .landing-benefits__hero,
html[data-theme='dark'] .landing-benefit-card,
html[data-theme='dark'] .landing-step-card,
html[data-theme='dark'] .landing-benefits__workflow,
html[data-theme='dark'] .landing-benefits__summary,
html[data-theme='dark'] .landing-benefits__metric {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-sm);
}

html[data-theme='dark'] .landing-benefits__metric strong,
html[data-theme='dark'] .landing-benefit-card h3,
html[data-theme='dark'] .landing-step-card h3 {
    color: var(--text);
}

html[data-theme='dark'] .landing-benefits__metric span,
html[data-theme='dark'] .landing-benefit-card p,
html[data-theme='dark'] .landing-step-card p,
html[data-theme='dark'] .landing-benefits__workflow p,
html[data-theme='dark'] .landing-benefits__summary p {
    color: var(--text-soft);
}

html[data-theme='dark'] .landing-benefit-card__icon {
    background: rgba(214, 128, 103, 0.14);
    color: var(--brand);
}

@media (max-width: 1100px) {
    .landing-benefits__hero {
        grid-template-columns: 1fr;
    }

    .landing-benefits__grid,
    .landing-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .landing-benefits__hero,
    .landing-benefits__workflow,
    .landing-benefits__summary {
        padding: 24px;
        border-radius: 24px;
    }

    .landing-benefits__grid,
    .landing-steps__grid {
        grid-template-columns: 1fr;
    }

    .landing-benefit-card,
    .landing-step-card,
    .landing-benefits__summary {
        padding: 22px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .landing-benefits__hero,
    .landing-benefits__workflow,
    .landing-benefits__summary {
        padding: 18px;
        border-radius: 18px;
    }

    .landing-benefit-card,
    .landing-step-card,
    .landing-benefits__summary {
        padding: 18px;
        border-radius: 18px;
    }

    .landing-benefit-card p,
    .landing-benefits__summary p {
        font-size: 0.92rem;
    }
}

body.page-dashboard html[data-theme='dark'] {
    color-scheme: dark;
}

html[data-theme='dark'] body.page-dashboard,
html[data-theme='dark'] body.page-dashboard .main-content,
html[data-theme='dark'] body.page-dashboard .dashboard-page {
    background: #0b1118 !important;
    color: #f3f6fb !important;
}

body.page-dashboard.theme-dark,
body.page-dashboard.theme-dark .main-content,
body.page-dashboard.theme-dark .dashboard-page {
    background: #0b1118 !important;
    color: #f3f6fb !important;
}

html[data-theme='dark'] body.page-dashboard .dashboard-topbar h1,
html[data-theme='dark'] body.page-dashboard .dashboard-panel__header h2,
html[data-theme='dark'] body.page-dashboard .stat-card__value,
html[data-theme='dark'] body.page-dashboard .table-meta strong,
html[data-theme='dark'] body.page-dashboard .history-table--clean th,
html[data-theme='dark'] body.page-dashboard .history-table--clean td,
html[data-theme='dark'] body.page-dashboard .empty-state--clean h3,
html[data-theme='dark'] body.page-dashboard .empty-state__icon {
    color: #f3f6fb !important;
}

body.page-dashboard.theme-dark .dashboard-topbar h1,
body.page-dashboard.theme-dark .dashboard-panel__header h2,
body.page-dashboard.theme-dark .stat-card__value,
body.page-dashboard.theme-dark .table-meta strong,
body.page-dashboard.theme-dark .history-table--clean th,
body.page-dashboard.theme-dark .history-table--clean td,
body.page-dashboard.theme-dark .empty-state--clean h3,
body.page-dashboard.theme-dark .empty-state__icon {
    color: #f3f6fb !important;
}

html[data-theme='dark'] body.page-dashboard .dashboard-topbar p,
html[data-theme='dark'] body.page-dashboard .stat-card__label,
html[data-theme='dark'] body.page-dashboard .stat-card__eyebrow,
html[data-theme='dark'] body.page-dashboard .dashboard-panel__header p,
html[data-theme='dark'] body.page-dashboard .table-meta span,
html[data-theme='dark'] body.page-dashboard .empty-state--clean p,
html[data-theme='dark'] body.page-dashboard .history-table--clean td span:not(.badge) {
    color: rgba(243, 246, 251, 0.74) !important;
}

body.page-dashboard.theme-dark .dashboard-topbar p,
body.page-dashboard.theme-dark .stat-card__label,
body.page-dashboard.theme-dark .stat-card__eyebrow,
body.page-dashboard.theme-dark .dashboard-panel__header p,
body.page-dashboard.theme-dark .table-meta span,
body.page-dashboard.theme-dark .empty-state--clean p,
body.page-dashboard.theme-dark .history-table--clean td span:not(.badge) {
    color: rgba(243, 246, 251, 0.74) !important;
}

html[data-theme='dark'] body.page-dashboard .dashboard-topbar__eyebrow {
    background: rgba(95, 127, 255, 0.18) !important;
    color: #cbd7ff !important;
}

body.page-dashboard.theme-dark .dashboard-topbar__eyebrow {
    background: rgba(95, 127, 255, 0.18) !important;
    color: #cbd7ff !important;
}

html[data-theme='dark'] body.page-dashboard .stat-card--clean,
html[data-theme='dark'] body.page-dashboard .dashboard-panel--clean,
html[data-theme='dark'] body.page-dashboard .empty-state--clean {
    background: #121a24 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

body.page-dashboard.theme-dark .stat-card--clean,
body.page-dashboard.theme-dark .dashboard-panel--clean,
body.page-dashboard.theme-dark .empty-state--clean {
    background: #121a24 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

html[data-theme='dark'] body.page-dashboard .history-table--clean th,
html[data-theme='dark'] body.page-dashboard .history-table--clean td,
html[data-theme='dark'] body.page-dashboard .dashboard-topbar,
html[data-theme='dark'] body.page-dashboard .dashboard-panel__header--clean,
html[data-theme='dark'] body.page-dashboard .action-bar {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme='dark'] body.page-dashboard .history-table--clean tbody tr:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

body.page-dashboard.theme-dark .history-table--clean tbody tr:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

html[data-theme='dark'] body.page-dashboard .btn--outline {
    color: #f3f6fb !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: transparent !important;
}

body.page-dashboard.theme-dark .btn--outline {
    color: #f3f6fb !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    background: transparent !important;
}

html[data-theme='dark'] body.page-dashboard .dashboard-stack,
body.page-dashboard.theme-dark .dashboard-stack {
    color: #f3f6fb !important;
}

html[data-theme='dark'] body.page-dashboard .dashboard-stats--clean,
body.page-dashboard.theme-dark .dashboard-stats--clean {
    background: transparent !important;
}

html[data-theme='dark'] body.page-dashboard .badge--done,
body.page-dashboard.theme-dark .badge--done {
    background: rgba(116, 201, 158, 0.18) !important;
    color: #9be2ba !important;
}

html[data-theme='dark'] body.page-dashboard .badge--failed,
html[data-theme='dark'] body.page-dashboard .badge--error,
body.page-dashboard.theme-dark .badge--failed,
body.page-dashboard.theme-dark .badge--error {
    background: rgba(240, 134, 121, 0.18) !important;
    color: #ffb1a7 !important;
}

html[data-theme='dark'] body.page-dashboard .badge--processing,
html[data-theme='dark'] body.page-dashboard .badge--pending,
body.page-dashboard.theme-dark .badge--processing,
body.page-dashboard.theme-dark .badge--pending {
    background: rgba(224, 179, 100, 0.18) !important;
    color: #ffd18e !important;
}

.site-footer__inner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-inline: 0 !important;
}

.footer-panel {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 32px !important;
}

@media (max-width: 820px) {
    .footer-panel {
        padding-inline: 20px !important;
    }
}

@media (max-width: 480px) {
    .footer-panel {
        padding-inline: 16px !important;
    }
}
