:root {
    --brand-green-dark: #072415;
    --brand-green: #176b43;
    --brand-green-light: #2f9865;
    --brand-gold-dark: #765b18;
    --brand-gold: #cda33b;
    --brand-gold-light: #e7c66f;
    --bg: #f7faf7;
    --bg-elevated: #ffffff;
    --bg-muted: #edf4ef;
    --surface: rgba(255, 255, 255, 0.82);
    --text: #0a2115;
    --text-soft: #4d6256;
    --border: #d6e2da;
    --border-strong: #bacdc0;
    --accent: #c89a29;
    --accent-hover: #b98919;
    --accent-text: #281d02;
    --link: #0b6540;
    --ring: #a47100;
    --shadow: 0 24px 70px rgba(21, 61, 39, 0.12);
    --shadow-soft: 0 12px 34px rgba(21, 61, 39, 0.08);
    --header: rgba(247, 250, 247, 0.84);
    --grid: rgba(23, 107, 67, 0.06);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    color-scheme: light;
}

[data-theme="dark"] {
    --bg: #06110b;
    --bg-elevated: #0a1b12;
    --bg-muted: #0d2418;
    --surface: rgba(10, 27, 18, 0.78);
    --text: #f3f7f4;
    --text-soft: #a7b9ae;
    --border: #1c432d;
    --border-strong: #2d5c40;
    --accent: #e1bd62;
    --accent-hover: #f0cf79;
    --accent-text: #171005;
    --link: #edca74;
    --ring: #f0ce75;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.22);
    --header: rgba(6, 17, 11, 0.82);
    --grid: rgba(255, 255, 255, 0.04);
    color-scheme: dark;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

button,
select,
input {
    color: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.2rem;
}

section[id] {
    scroll-margin-top: 88px;
}

[hidden] {
    display: none !important;
}

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

.section {
    position: relative;
    padding: clamp(82px, 10vw, 132px) 0;
}

.section-muted {
    background: var(--bg-muted);
    border-block: 1px solid var(--border);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    inset-inline-start: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--accent-text);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 3px;
}

.site-background {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--grid) 1px, transparent 1px);
    background-size: 30px 30px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%);
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.glow {
    position: absolute;
    width: min(700px, 66vw);
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.24;
}

.glow-one {
    top: -30%;
    inset-inline-end: -14%;
    background: var(--brand-green-light);
}

.glow-two {
    top: 34%;
    inset-inline-start: -30%;
    background: var(--brand-gold);
    opacity: 0.12;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: var(--header);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    border-color: var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    font-size: 1.28rem;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.brand img {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
}

.brand-accent {
    color: var(--accent);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.primary-nav a,
.footer-bottom a {
    transition: color 180ms ease;
}

.primary-nav a:hover,
.footer-bottom a:hover {
    color: var(--link);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.language-select,
.icon-button {
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--surface);
}

.language-select {
    max-width: 112px;
    padding: 0 11px;
    font-size: 0.82rem;
    font-weight: 750;
}

.icon-button {
    display: inline-grid;
    width: 44px;
    min-width: 44px;
    padding: 0;
    place-items: center;
    transition: border-color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.language-select:hover {
    border-color: var(--border-strong);
    background: var(--bg-muted);
}

[data-theme="dark"] .moon-icon,
[data-theme="light"] .sun-icon {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 12px 21px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: var(--accent-text);
    box-shadow: 0 12px 28px rgba(205, 163, 59, 0.2);
}

.button-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 14px 34px rgba(205, 163, 59, 0.28);
}

.button-secondary {
    border-color: var(--border);
    background: var(--surface);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--border-strong);
    background: var(--bg-muted);
}

.button-small {
    min-height: 42px;
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 0.84rem;
}

.arrow-icon {
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.button:hover .arrow-icon {
    transform: translateX(3px);
}

html[dir="rtl"] .arrow-icon {
    transform: scaleX(-1);
}

html[dir="rtl"] .button:hover .arrow-icon {
    transform: scaleX(-1) translateX(3px);
}

.hero {
    display: flex;
    min-height: calc(100svh - 74px);
    align-items: center;
    padding: clamp(58px, 6vw, 78px) 0 clamp(70px, 8vw, 96px);
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(54px, 7vw, 100px);
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    padding: 7px 13px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bd75;
    box-shadow: 0 0 0 5px rgba(56, 189, 117, 0.12);
}

.eyebrow {
    margin-bottom: 15px;
    color: var(--link);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    font-size: clamp(2.75rem, 4.9vw, 4.65rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

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

.hero-lead {
    max-width: 680px;
    margin-bottom: 32px;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 29px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 0;
    padding: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 650;
    list-style: none;
}

.hero-points li,
.beta-copy li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-points li > span:first-child,
.beta-copy li > span:first-child {
    color: var(--link);
    font-weight: 900;
}

.product-visual {
    position: relative;
    min-width: 0;
    padding: 22px 4px;
    direction: ltr;
}

.app-window {
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background: #08130d;
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

[data-theme="light"] .app-window {
    background: #f3f6f4;
}

.window-bar {
    display: grid;
    min-height: 49px;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #1b3325;
    color: #a7b7ad;
    font-size: 0.7rem;
    grid-template-columns: 1fr auto 1fr;
}

[data-theme="light"] .window-bar {
    border-color: #cfdbd3;
    color: #607267;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #304a39;
}

.window-dots span:nth-child(2) {
    background: #816c35;
}

.window-dots span:nth-child(3) {
    background: #347453;
}

.window-title {
    letter-spacing: 0.03em;
}

.window-chip {
    justify-self: end;
    padding: 3px 7px;
    border: 1px solid #36523f;
    border-radius: 5px;
    color: #d7bb72;
    font-size: 0.61rem;
    font-weight: 800;
}

.app-body {
    display: grid;
    min-height: 384px;
    grid-template-columns: 46px minmax(0, 1fr) 112px;
}

.tool-rail {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    padding: 18px 0;
    border-right: 1px solid #1b3325;
    background: #0a1810;
}

[data-theme="light"] .tool-rail {
    border-color: #cfdbd3;
    background: #e8efea;
}

.tool {
    width: 16px;
    height: 16px;
    border: 1px solid #46614e;
    border-radius: 4px;
}

.tool.active {
    border-color: #ddba63;
    background: rgba(221, 186, 99, 0.18);
}

.design-area {
    min-width: 0;
    padding: 13px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 14px 14px;
}

[data-theme="light"] .design-area {
    background-image: radial-gradient(rgba(11, 55, 32, 0.12) 1px, transparent 1px);
}

.design-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #829589;
    font-size: 0.62rem;
}

.zoom-pill {
    padding: 3px 7px;
    border: 1px solid #2b4936;
    border-radius: 5px;
}

.device-screen {
    width: min(100%, 294px);
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    padding: 17px;
    border: 4px solid #1d3326;
    border-radius: 13px;
    background: linear-gradient(145deg, #173c28, #0d2117);
    color: #f4f7f5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.screen-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
}

.screen-nav span:first-child {
    width: 38px;
    height: 5px;
    border-radius: 6px;
    background: #e0bd62;
}

.screen-nav span:last-child {
    width: 11px;
    height: 11px;
    border: 2px solid #5d856d;
    border-radius: 50%;
}

.device-screen > p {
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 800;
}

.metric-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}

.metric-row div {
    padding: 8px;
    border: 1px solid #28543a;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
}

.metric-row small {
    display: block;
    color: #8fa698;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
}

.metric-row strong {
    font-size: 0.8rem;
}

.screen-chart {
    display: flex;
    height: 38px;
    align-items: end;
    gap: 5px;
    margin: 10px 0;
}

.screen-chart i {
    flex: 1;
    height: 38%;
    border-radius: 3px 3px 1px 1px;
    background: #4c9c6d;
}

.screen-chart i:nth-child(2),
.screen-chart i:nth-child(6) {
    height: 72%;
}

.screen-chart i:nth-child(3) {
    height: 55%;
}

.screen-chart i:nth-child(4) {
    height: 88%;
    background: #d9b75e;
}

.screen-chart i:nth-child(5) {
    height: 65%;
}

.device-screen .mock-button {
    display: grid;
    width: 100%;
    min-height: 25px;
    border: 0;
    border-radius: 6px;
    background: #dbb85e;
    color: #171006;
    font-size: 0.56rem;
    font-weight: 850;
    place-items: center;
}

.inspector {
    padding: 17px 12px;
    border-left: 1px solid #1b3325;
    color: #a4b3aa;
    font-size: 0.55rem;
}

[data-theme="light"] .inspector {
    border-color: #cfdbd3;
    color: #5e7065;
}

.inspector strong {
    display: block;
    margin-bottom: 21px;
    color: #e9efeb;
    font-size: 0.62rem;
}

[data-theme="light"] .inspector strong {
    color: #1d3326;
}

.inspector-label {
    display: block;
    margin: 12px 0 5px;
}

.inspector-fields {
    display: grid;
    gap: 4px;
    grid-template-columns: 1fr 1fr;
}

.inspector i {
    display: block;
    height: 17px;
    border: 1px solid #294534;
    border-radius: 4px;
    background: #102218;
}

[data-theme="light"] .inspector i {
    border-color: #c8d5cc;
    background: #fff;
}

.inspector-field {
    margin-bottom: 5px;
}

.inspector-field.short {
    width: 70%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    padding: 11px 13px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--bg-elevated);
    box-shadow: var(--shadow-soft);
}

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

.floating-card strong {
    font-size: 0.75rem;
}

.floating-card small {
    color: var(--text-soft);
    font-size: 0.6rem;
}

.floating-icon {
    display: grid;
    width: 33px;
    height: 33px;
    border-radius: 9px;
    background: var(--bg-muted);
    color: var(--link);
    font-size: 0.7rem;
    font-weight: 900;
    place-items: center;
}

.code-card {
    bottom: -2px;
    inset-inline-start: -28px;
}

.device-card {
    top: 2px;
    inset-inline-end: -24px;
}

.pulse-icon {
    width: 32px;
    height: 32px;
    border: 8px solid rgba(50, 173, 105, 0.16);
    border-radius: 50%;
    background: #32ad69;
}

.platform-strip {
    border-block: 1px solid var(--border);
    background: var(--surface);
}

.platform-list {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2.8vw, 35px);
    overflow: hidden;
    white-space: nowrap;
}

.platform-list > span {
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.platform-list strong {
    font-size: clamp(0.78rem, 1.3vw, 0.95rem);
    letter-spacing: 0.02em;
}

.platform-list i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--border-strong);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading > p:last-child {
    max-width: 690px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.05rem;
}

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

.feature-card {
    position: relative;
    min-height: 320px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.feature-card.featured {
    border-color: var(--border-strong);
    background: linear-gradient(155deg, var(--bg-muted), var(--surface));
}

.card-number {
    position: absolute;
    top: 18px;
    inset-inline-end: 21px;
    color: var(--border-strong);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 54px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--bg-muted);
    color: var(--link);
    place-items: center;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.workflow-grid {
    display: grid;
    align-items: start;
    gap: clamp(52px, 8vw, 120px);
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.workflow-copy {
    position: sticky;
    top: 120px;
}

.workflow-copy > p:not(.eyebrow) {
    max-width: 520px;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
    color: var(--link);
    font-weight: 850;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.workflow-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-steps li {
    display: grid;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 48px 1fr;
}

.workflow-steps li:first-child {
    padding-top: 0;
}

.workflow-steps li > span {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 13px;
    background: var(--surface);
    color: var(--link);
    font-size: 0.84rem;
    font-weight: 900;
    place-items: center;
}

.workflow-steps h3 {
    margin: 2px 0 8px;
}

.workflow-steps p {
    margin-bottom: 0;
    color: var(--text-soft);
}

.split-heading {
    display: grid;
    max-width: none;
    align-items: end;
    gap: 50px;
    margin-bottom: 45px;
    grid-template-columns: 1.08fr 0.92fr;
    text-align: start;
}

.split-heading h2 {
    margin-bottom: 0;
}

.split-heading > p:last-child {
    margin: 0;
}

.hardware-panel {
    display: grid;
    align-items: center;
    padding: clamp(30px, 5vw, 60px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-muted), var(--surface));
    box-shadow: var(--shadow-soft);
    grid-template-columns: minmax(180px, 0.65fr) 1px minmax(0, 1.35fr);
}

.hardware-stat strong {
    display: block;
    color: var(--text);
    font-size: clamp(4.4rem, 9vw, 7.8rem);
    font-weight: 850;
    letter-spacing: -0.09em;
    line-height: 0.9;
}

.hardware-stat strong span {
    color: var(--accent);
}

.hardware-stat p {
    max-width: 190px;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 750;
}

.hardware-divider {
    width: 1px;
    height: 100%;
    min-height: 170px;
    background: var(--border);
}

.validation-list {
    padding-inline-start: clamp(30px, 5vw, 70px);
}

.validation-label {
    margin-bottom: 16px;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.validation-list > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.validation-list > div span {
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--bg-elevated);
    font-size: 0.9rem;
    font-weight: 800;
}

.validation-note {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.independence-note {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 0.78rem;
    text-align: center;
}

.section-beta {
    overflow: hidden;
    border-block: 1px solid var(--border);
    background:
        radial-gradient(circle at 12% 20%, rgba(31, 128, 80, 0.14), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(205, 163, 59, 0.12), transparent 35%),
        var(--bg-muted);
}

.beta-grid {
    display: grid;
    align-items: center;
    gap: clamp(46px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.beta-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.beta-copy > p:not(.eyebrow) {
    color: var(--text-soft);
    font-size: 1.03rem;
}

.beta-copy ul {
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.form-card {
    padding: clamp(25px, 4vw, 38px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
}

.form-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.form-header h3 {
    margin-bottom: 0;
    font-size: 1.45rem;
}

.form-header p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.72rem;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.field {
    min-width: 0;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin: 0 0 7px 2px;
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.field select,
.field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--bg);
    color: var(--text);
    padding: 11px 13px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field select:focus,
.field input:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 20%, transparent);
}

.field input::placeholder {
    color: var(--text-soft);
    opacity: 0.68;
}

#email {
    text-align: left;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 20px 0 0;
    color: var(--text-soft);
    cursor: pointer;
    font-size: 0.84rem;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-note {
    margin: 13px 0 20px;
    color: var(--text-soft);
    font-size: 0.72rem;
    line-height: 1.55;
}

.submit-button {
    width: 100%;
    border: 0;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.form-status {
    min-height: 0;
    margin: 12px 0 0;
    color: #a33a3a;
    font-size: 0.82rem;
    font-weight: 700;
}

[data-theme="dark"] .form-status {
    color: #ff9b9b;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.success-message {
    display: grid;
    min-height: 460px;
    align-content: center;
    justify-items: center;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border: 1px solid #56a87b;
    border-radius: 50%;
    background: rgba(45, 156, 96, 0.12);
    color: var(--link);
    font-size: 1.8rem;
    font-weight: 900;
    place-items: center;
}

.success-message h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.success-message p {
    max-width: 390px;
    margin-bottom: 24px;
    color: var(--text-soft);
}

.faq-grid {
    display: grid;
    align-items: start;
    gap: clamp(48px, 8vw, 110px);
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.faq-heading > p:last-child {
    color: var(--text-soft);
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    padding: 25px 44px 25px 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

html[dir="rtl"] .faq-list summary {
    padding-right: 0;
    padding-left: 44px;
}

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

.faq-list summary::after {
    position: absolute;
    top: 24px;
    inset-inline-end: 4px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--link);
    content: "+";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 720px;
    margin: 0 0 25px;
    padding-inline-end: 42px;
    color: var(--text-soft);
}

.closing-cta {
    padding: 62px 0;
    border-block: 1px solid var(--border);
    background: var(--bg-muted);
}

.closing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.closing-inner .eyebrow {
    margin-bottom: 9px;
}

.closing-inner h2 {
    max-width: 740px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.closing-inner .button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 48px 0 28px;
    background: var(--bg);
}

.footer-grid {
    display: grid;
    align-items: center;
    gap: 24px;
    padding-bottom: 34px;
    grid-template-columns: 1fr auto 1fr;
}

.footer-brand img {
    width: 36px;
    height: 36px;
}

.footer-grid > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-self: end;
    gap: 8px;
}

.social-links a {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text-soft);
    place-items: center;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
    border-color: var(--border-strong);
    color: var(--link);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.76rem;
}

@media (max-width: 1060px) {
    .primary-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    }

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

    .feature-card {
        min-height: 280px;
    }
}

@media (max-width: 1240px) and (min-width: 861px) {
    .device-card {
        inset-inline-end: 0;
    }

    .code-card {
        inset-inline-start: 0;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 84px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid,
    .workflow-grid,
    .beta-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

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

    .product-visual {
        width: min(100%, 590px);
        margin-inline: auto;
    }

    .workflow-copy,
    .faq-heading {
        position: static;
    }

    .split-heading {
        gap: 22px;
        grid-template-columns: 1fr;
    }

    .split-heading > p:last-child {
        max-width: 680px;
    }

    .beta-grid {
        max-width: 720px;
    }

    .closing-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 66px;
        gap: 10px;
    }

    .brand {
        gap: 7px;
        font-size: 1.1rem;
    }

    .brand img {
        width: 35px;
        height: 35px;
        border-radius: 9px;
    }

    .language-select {
        width: 76px;
        max-width: 76px;
        padding: 0 6px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 56px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        align-items: center;
        flex-direction: column;
        gap: 7px;
    }

    .product-visual {
        padding-inline: 0;
    }

    .app-window {
        transform: none;
    }

    .app-body {
        min-height: 305px;
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .inspector {
        display: none;
    }

    .tool-rail {
        padding-top: 15px;
    }

    .device-screen {
        padding: 12px;
    }

    .floating-card {
        min-width: 132px;
    }

    .code-card {
        inset-inline-start: -5px;
    }

    .device-card {
        inset-inline-end: -5px;
    }

    .platform-list {
        min-height: 68px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .platform-list::-webkit-scrollbar {
        display: none;
    }

    .platform-list > span {
        padding-inline-start: 4px;
    }

    .section-heading {
        margin-bottom: 38px;
        text-align: start;
    }

    .section-heading > p:last-child {
        margin: 0;
    }

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

    .feature-card {
        min-height: auto;
    }

    .feature-icon {
        margin-bottom: 40px;
    }

    .hardware-panel {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .hardware-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
    }

    .validation-list {
        padding-inline-start: 0;
    }

    .form-card {
        border-radius: 20px;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .field select,
    .field input {
        font-size: 16px;
    }

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

    .social-links {
        justify-self: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .language-select {
        width: 66px;
        max-width: 66px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .floating-card {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@supports not (color: color-mix(in srgb, black, white)) {
    .field select:focus,
    .field input:focus {
        box-shadow: 0 0 0 3px rgba(198, 154, 41, 0.2);
    }
}
