@font-face {
  font-family: 'Lexend';
  src: url('fonts/Lexend-VariableFont.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
}

:root {
    --text: #000000;
    --text-i: #ffffff;
    --sub-text: #00000099;
    --pr: #000000;
    --t-pb: #00000010;
    --t-sb: #ffffffb2;
    --border-none: 1px solid transparent;
    --border: 1px solid #0000000c;
    --border-hover: 1px solid #00000048;
    --padding: 10px;
    --padding-m: 20px;
    --gap: 70px;
    --radius: 30px;
    --radius-m: 30px;
    --blur: blur(10px);
    --features-pad-x: clamp(1rem, 6vw, 5rem);
    --features-pad-y: 0;
    --features-text-width: clamp(220px, 30vw, 420px);
    --features-image-edge-crop: 3px;
    --indicator-height: 4px;
    --indicator-transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Lexend';
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #111111 #ececec;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: #ececec;
}

*::-webkit-scrollbar-thumb {
    background: #111111;
    border-radius: 999px;
    border: 3px solid #ececec;
}

*::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

mark {
    background: rgb(209, 209, 209);
}

b {
    font-weight: 900;
}

.grid-bg {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #ffffff;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

/* --------------------------------- Titlebar --------------------------------- */
.titlebar {
    display: flex;
    position: fixed;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 15px;
}

.titlebar-links {
    display: flex;
    justify-self: center;
    z-index: 100;
    background-color: var(--t-sb);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: var(--border);
    border-radius: var(--radius);
    backdrop-filter: var(--blur);
    align-items: space-between;
    gap: var(--gap);
    justify-content: center;
    height: 50px;
    width: 500px;
    padding: 0 70px;
    box-sizing: border-box;
}

.titlebar-links a {
    padding: var(--padding) 0;
    align-content: center;
    text-decoration: none;
    color: var(--sub-text);
    transition: color 140ms ease;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.titlebar-links a:hover,
.titlebar-links a:focus-visible,
.titlebar-links a.active {
    color: var(--text);
}

.titlebar-indicator {
    position: absolute;
    left: 0;
    bottom: 0;
    height: var(--indicator-height);
    background: var(--text);
    border-radius: 999px;
    width: 0;
    transform: translateX(0);
    transition: transform var(--indicator-transition), width var(--indicator-transition), opacity 140ms ease;
    opacity: 0;
    /* pointer-events: none; */
}

.titlebar img {
    padding-top: 5px;
    height: 26px;
    width: 26px;
    padding: 13px 13px;
    /* filter: invert(1); */
    background-color: var(--t-sb);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: var(--border);
    border-radius: var(--radius);
    backdrop-filter: var(--blur);
}

.titlebar-empty {
    padding-top: 5px;
    height: 26px;
    width: 28px;
    padding: 13px 13px;
}
/* --------------------------------- Titlebar --------------------------------- */
/* --------------------------------- Hero --------------------------------- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    padding: 20vh 20vw;
    padding-bottom: 0;
    gap: 10vh;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title h1{
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.09rem;
    word-spacing: 0.2rem;
    line-height: 5rem;
    margin: 1rem 0;
}

.hero-title p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5rem;
}
/* --------------------------------- Waitlist --------------------------------- */
.waitlist-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2vh;
    width: min(100%, 520px);
}

.waitlist-form input {
    flex: 1;
    border: var(--border);
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 140ms ease;
    outline: none;
}

.waitlist-form input:hover {
    border: var(--border-hover);
    background: #f3f3f3;
}

.waitlist-form input:focus-visible {
    border: var(--border-hover);
    background: #f3f3f3;
}

.waitlist-form button {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--pr);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-i);
    cursor: pointer;
    white-space: nowrap;
    transition: 100ms ease;
    display: flex;
    align-items: center;
}

.svg-icon {
    width: 0px;
    opacity: 0;
    transition: 200ms ease;
    padding-left: 3px;
}
/* on waitlist-form button hover effect the svg icon */
.waitlist-form button:hover .svg-icon {
    padding-left: 8px;
    width: 18px;
    opacity: 1;
}

.svg {
    stroke-width: 3;
}

/* pressed state */
.waitlist-form button:active {
    scale: 0.95;
}


.waitlist-status {
    height: 30px;
    /* margin: 0.65rem 0 0; */
    color: var(--sub-text);
    transition: 200ms ease;
    opacity: 0;
    /* text-align: center; */
    padding-top: 0.5rem;
}

.waitlist-status.visible {
    opacity: 1;
    font-size: 0.8rem;
}

.waitlist-status.error {
    color: #000000;
}

.waitlist-status.success {
    color: #000000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* --------------------------------- Waitlist --------------------------------- */
/* --------------------------------- Hero --------------------------------- */
/* --------------------------------- Features --------------------------------- */
.features-stage {
    position: relative;
    height: 260vh;
}

.features {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--features-pad-y) var(--features-pad-x);
    box-sizing: border-box;
    overflow: hidden;
}

.features-content {
    position: relative;
    width: min(1200px, 100%);
    min-height: min(74vh, 620px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image {
    position: relative;
    width: min(72vw, 920px);
    max-width: 100%;
    max-height: 100%;
    background-color: var(--t-pb);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-m);
    border: var(--border);
    padding: var(--padding-m);
    box-sizing: border-box;
    transform-origin: center center;
    will-change: transform;
    overflow: hidden; /* ensure any overflow (e.g. cropped image) is clipped */
}

.features-image-layer {
    display: block;
    border-radius: calc(var(--radius) / 2);
    object-fit: contain;
    clip-path: inset(var(--features-image-edge-crop) round calc((var(--radius) / 2) - var(--features-image-edge-crop)));
}

.features-image-layer-base {
    border-radius: calc(var(--radius) / 2);
    width: 100%;
    max-height: calc(100vh - (var(--features-pad-y) * 2) - (var(--padding-m) * 2));
    height: auto;
}

.features-image-layer-next {
    position: absolute;
    top: var(--padding-m);
    left: var(--padding-m);
    width: calc(100% - (var(--padding-m) * 2));
    height: calc(100% - (var(--padding-m) * 2));
    opacity: 0;
    /* pointer-events: none; */
    will-change: opacity;
}

.features-progress {
    position: absolute;
    --progress-track-top: 0%;
    --progress-track-bottom: 0%;
    left: clamp(49%, 54vw, 57%);
    top: 50%;
    width: 14px;
    height: clamp(160px, 32vh, 240px);
    transform: translate(-50%, calc(-50% + 10px));
    display: flex;
    justify-content: center;
    align-items: stretch;
    z-index: 2;
    opacity: 0;
    will-change: opacity, transform;
}

.features-progress-track {
    position: absolute;
    left: 50%;
    top: var(--progress-track-top);
    bottom: var(--progress-track-bottom);
    width: 2px;
    transform: translateX(-50%);
    background: rgb(204, 204, 204);
    border-radius: 999px;
    overflow: hidden;
}

.features-progress-fill {
    position: absolute;
    inset: 0;
    transform-origin: top center;
    transform: scaleY(0);
    background: #000000;
    border-radius: 999px;
    will-change: transform;
}

.features-progress-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.features-progress-dot {
    position: absolute;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: rgb(204, 204, 204);
    box-sizing: border-box;
    cursor: pointer;
    padding: 0;
    appearance: none;
    transition: background-color 220ms ease, scale 220ms ease;
}

.features-progress-dot.filled {
    background: #000000;
    scale: 1.12;
}

.features-image-text {
    position: absolute;
    top: 50%;
    left: clamp(54%, 58vw, 62%);
    width: var(--features-text-width);
    max-width: calc(100vw - (var(--features-pad-x) * 2));
    min-height: clamp(260px, 44vh, 420px);
    opacity: 1;
    transform: translate3d(0, calc(-50% - var(--feature-preview-balance-shift, 0px)), 0);
    will-change: auto;
    padding: 2rem;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 3;
}

.feature-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    will-change: opacity, transform;
    pointer-events: none;
}

.feature-preview {
    position: relative;
    margin-top: 0.95rem;
    border: var(--border);
    border-radius: 14px;
    background: #ffffff;
    padding: 0.9rem;
    box-sizing: border-box;
    pointer-events: auto;
}

.feature-preview-toggle {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    border: var(--border);
    border-radius: 999px;
    background: #ffffffe8;
    color: var(--text);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.35rem 0.62rem;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    z-index: 2;
}

.feature-preview-rendered {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.feature-preview-rendered h1,
.feature-preview-rendered h2,
.feature-preview-rendered h3,
.feature-preview-rendered h4,
.feature-preview-rendered h5,
.feature-preview-rendered h6 {
    margin: 0.35rem 0 0.55rem;
    line-height: 1.25;
}

.feature-preview-rendered p {
    margin: 0.35rem 0 0.65rem;
}

.feature-preview-rendered blockquote {
    margin: 0.35rem 0 0.65rem;
    padding-left: 0.7rem;
    border-left: 3px solid #0000002e;
    color: var(--sub-text);
}

.feature-preview-rendered code {
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.82rem;
    background: #f2f2f2;
    border-radius: 6px;
    padding: 0.08rem 0.34rem;
}

.feature-preview-source {
    margin: 0;
    display: none;
    background: #f7f7f7;
    border: var(--border);
    border-radius: 10px;
    padding: 0.75rem;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #111111;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: none;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.feature-preview-source code {
    font-family: inherit;
}

.feature-preview.show-source .feature-preview-rendered {
    display: none;
}

.feature-preview.show-source .feature-preview-source {
    display: block;
}

.feature-preview-rendered a {
    color: #0055cc;
}

.markdown-math-inline {
    white-space: nowrap;
}

.markdown-math-block {
    margin: 0.4rem 0 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.markdown-table-wrap {
    margin: 0.45rem 0 0.8rem;
    border: var(--border);
    border-radius: 10px;
    background: #ffffff;
    overflow-x: auto;
}

.markdown-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    line-height: 1.45;
}

.markdown-table th,
.markdown-table td {
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid #00000012;
    vertical-align: top;
}

.markdown-table thead th {
    background: #f4f4f4;
    font-weight: 600;
}

.markdown-table tbody tr:last-child td {
    border-bottom: none;
}

.markdown-code-block {
    margin: 0.45rem 0 0.8rem;
    border: var(--border);
    border-radius: 10px;
    background: #0f1115;
    overflow-x: auto;
    padding: 0.85rem 0.9rem;
}

.markdown-code-block code {
    display: block;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #e8edf5;
    white-space: pre;
}

.markdown-code-block[data-language]::before {
    content: attr(data-language);
    display: inline-block;
    margin: 0 0 0.6rem;
    border-radius: 999px;
    background: #ffffff1a;
    color: #d4def0;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.14rem 0.48rem;
}

.feature-preview-rendered mjx-container {
    max-width: 100%;
}

.feature-preview-rendered mjx-container[display="true"] {
    margin: 0.35rem 0 0.7rem !important;
    overflow-x: auto;
    overflow-y: hidden;
}

.markdown-list {
    margin: 0.35rem 0 0.65rem;
    padding-left: 1rem;
}

.markdown-list li {
    margin-bottom: 0.45rem;
}

.markdown-checklist {
    list-style: none;
    margin: 0.35rem 0 0.65rem;
    padding: 0;
}

.markdown-check-item {
    margin: 0 0 0.45rem;
}

.markdown-check-item label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.markdown-check-item input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    accent-color: #000000;
    width: 0.95rem;
    height: 0.95rem;
    margin: 0.16rem 0 0;
    border: 2px solid #000000;
    border-radius: 0.2rem;
    background: #ffffff;
    flex: 0 0 auto;
    display: inline-grid;
    place-content: center;
    pointer-events: none;
}

.markdown-check-item input[type="checkbox"]::after {
    content: "";
    width: 0.26rem;
    height: 0.5rem;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform 140ms ease;
}

.markdown-check-item input[type="checkbox"]:checked {
    background: #000000;
    border-color: #000000;
}

.markdown-check-item input[type="checkbox"]:checked::after {
    transform: rotate(45deg) scale(1);
}

.markdown-check-item label span {
    line-height: 1.45;
}

.markdown-check-item input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    color: var(--sub-text);
}

.feature-item-line {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    will-change: opacity, transform;
}

.feature-item-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: var(--border);
    background: #ffffffb0;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

.feature-item-title {
    margin: 0 0 0.8rem;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text);
}

.feature-item-description {
    margin: 0 0 0.95rem;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.65;
    color: var(--sub-text);
}

.feature-item-points {
    margin: 0;
    padding-left: 1rem;
}

.feature-item-points li {
    margin: 0 0 0.6rem;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.55;
    color: var(--text);
}
/* --------------------------------- Features --------------------------------- */
/* --------------------------------- Pricing --------------------------------- */
.pricing {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(5rem, 12vh, 9rem) clamp(1.25rem, 10vw, 12rem);
    box-sizing: border-box;
    overflow: hidden;
}

.pricing-layout {
    width: min(1100px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing--layout-visible .pricing-layout,
.pricing--done .pricing-layout {
    opacity: 1;
    pointer-events: auto;
}

.pricing-text {
    order: 1;
    flex: 1 1 auto;
    max-width: 560px;
}

.pricing-text h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.85rem, 3.2vw, 2.8rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.pricing-text p {
    margin: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    line-height: 1.6;
    color: var(--sub-text);
}

.pricing-story {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.pricing-story-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(980px, 88vw);
    margin: 0;
    text-align: center;
    color: var(--text);
    font-size: clamp(2rem, 4.4vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 620;
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 30px), 0) scale(0.96);
    will-change: transform, opacity;
}

.pricing-ellipsis {
    display: inline-flex;
    width: auto;
    gap: 0;
    margin-left: -0.01em;
}

.pricing-ellipsis-dot {
    display: inline-block;
}

.pricing-story-line.is-ellipsis-bounce .pricing-ellipsis-dot {
    animation: pricingDotBounce 320ms ease-in-out 2 both;
}

.pricing-story-line.is-ellipsis-bounce .pricing-ellipsis-dot:nth-child(1) {
    animation-delay: 0ms;
}

.pricing-story-line.is-ellipsis-bounce .pricing-ellipsis-dot:nth-child(2) {
    animation-delay: 90ms;
}

.pricing-story-line.is-ellipsis-bounce .pricing-ellipsis-dot:nth-child(3) {
    animation-delay: 180ms;
}

.pricing-float-price {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.18em;
    font-size: clamp(2.6rem, 6.3vw, 6.1rem);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text);
    opacity: 0;
    transform: translate3d(-50%, calc(-50% + 24px), 0) scale(0.95);
    font-variant-numeric: tabular-nums lining-nums;
    pointer-events: none;
    z-index: 4;
    will-change: transform, opacity, left, top;
}

.pricing-float-price-amount {
    font-variant-numeric: tabular-nums lining-nums;
}

.pricing-float-price-suffix {
    font-size: 0.34em;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0;
    padding-bottom: 0.13em;
}

.pricing-price-slot {
    order: 2;
    flex: 0 0 clamp(230px, 30vw, 380px);
    min-height: clamp(78px, 14vh, 132px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pricing-reveal-line {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: blur(6px);
}

.waitlist-snippet {
    margin-top: 2rem !important;
    color: var(--sub-text) !important;
}

.pricing-reveal-line.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1), filter 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing--done .pricing-story {
    opacity: 0;
    pointer-events: none;
}
/* --------------------------------- Pricing --------------------------------- */
/* --------------------------------- Contact --------------------------------- */
.contact-section {
    position: relative;
    margin-top: clamp(4.5rem, 14vh, 10rem);
    padding: 20vh 10vw;
    border-top: var(--border);
    background:
        radial-gradient(120% 120% at 20% 0%, #ffffff 0%, #f6f6f6 55%, #f1f1f1 100%);
}

.contact-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 470px);
    gap: clamp(1.3rem, 4vw, 3rem);
    align-items: stretch;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
}

.contact-kicker {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sub-text);
    font-weight: 600;
}

.contact-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
}

.contact-copy {
    margin: 0;
    max-width: 58ch;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.68;
    color: var(--sub-text);
}

.contact-meta {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.5rem;
}

.contact-meta p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--sub-text);
}

.contact-meta strong {
    color: var(--text);
    font-weight: 600;
}

.contact-meta a {
    color: var(--text);
    text-decoration-color: #0000004f;
    text-underline-offset: 0.14em;
}

.contact-form-wrap {
    border: var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(1.1rem, 2vw, 1.55rem);
    background: #ffffffe1;
    box-shadow: 0 20px 60px #00000012;
    backdrop-filter: blur(8px);
}

.contact-form {
    display: grid;
    gap: 0.92rem;
}

.contact-field {
    display: grid;
    gap: 0.35rem;
}

.contact-field span {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--sub-text);
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: var(--border);
    border-radius: 14px;
    background: #ffffff;
    padding: 0.8rem 0.95rem;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text);
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
    min-height: 128px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #00000073;
}

.contact-field input:hover,
.contact-field textarea:hover {
    border: var(--border-hover);
    background: #f3f3f3;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
    border: var(--border-hover);
    background: #f3f3f3;
}

/* .contact-submit {
    border: none;
    border-radius: 999px;
    padding: 0.82rem 1.15rem;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: var(--pr);
    color: var(--text-i);
    cursor: pointer;
    justify-self: start;
    transition: transform 120ms ease, box-shadow 180ms ease, background-color 180ms ease;
    box-shadow: 0 10px 24px #00000024;
}

.contact-submit:hover {
    box-shadow: 0 14px 26px #00000030;
}

.contact-submit:active {
    transform: scale(0.97);
} */

.contact-submit {
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--pr);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-i);
    cursor: pointer;
    white-space: nowrap;
    transition: 100ms ease;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-self: start;
}

.svg-icon {
    width: 0px;
    opacity: 0;
    transition: 200ms ease;
    padding-left: 3px;
}
/* on waitlist-form button hover effect the svg icon */
.contact-submit:hover .svg-icon {
    padding-left: 8px;
    width: 18px;
    opacity: 1;
}

.svg {
    stroke-width: 3;
}

/* pressed state */
.contact-submit:active {
    scale: 0.95;
}

.contact-note {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    color: var(--sub-text);
}
/* --------------------------------- Contact --------------------------------- */

@media (max-width: 1280px) {
    .features {
        padding: var(--features-pad-y) clamp(1rem, 4vw, 2.25rem);
    }

    .features-content {
        width: min(1100px, 100%);
        min-height: min(72vh, 590px);
    }

    .features-image {
        width: min(68vw, 780px);
    }

    .features-progress {
        left: clamp(48.8%, 53.2vw, 56%);
        height: clamp(148px, 30vh, 220px);
    }

    .features-image-text {
        left: clamp(53%, 57.2vw, 60.8%);
        width: clamp(220px, 32vw, 380px);
        padding: 1.45rem;
    }

    .pricing {
        padding: clamp(4rem, 10vh, 7.2rem) clamp(1.15rem, 6vw, 8rem);
    }

    .pricing-layout {
        width: min(980px, 100%);
        gap: clamp(1.3rem, 3.3vw, 2.8rem);
    }

    .pricing-text {
        max-width: 520px;
    }

    .pricing-text h2 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
    }

    .pricing-story-line {
        width: min(92vw, 920px);
        font-size: clamp(1.85rem, 4.1vw, 3.4rem);
    }

    .contact-shell {
        width: min(1040px, 100%);
        grid-template-columns: 1fr minmax(300px, 430px);
    }

    .contact-intro h2 {
        font-size: clamp(1.8rem, 3.4vw, 2.75rem);
    }
}

@media (max-width: 1080px) {
    .features {
        padding: 0 1.15rem;
    }

    .features-content {
        width: 100%;
        min-height: min(70vh, 540px);
    }

    .features-image {
        width: min(70vw, 670px);
        padding: 0.95rem;
    }

    .features-progress {
        left: clamp(47.4%, 51.8vw, 54.4%);
        width: 10px;
        height: clamp(132px, 26vh, 182px);
    }

    .features-image-text {
        left: clamp(51.4%, 55.9vw, 59.2%);
        width: clamp(206px, 34vw, 330px);
        min-height: clamp(220px, 40vh, 360px);
        padding: 1rem;
    }

    .feature-item-title {
        font-size: clamp(1.03rem, 1.7vw, 1.35rem);
    }

    .feature-item-description {
        font-size: clamp(0.9rem, 1.08vw, 0.98rem);
    }

    .feature-preview {
        padding: 0.72rem;
    }

    .pricing {
        min-height: 95vh;
        padding: 4.4rem 1.4rem 3.4rem;
    }

    .pricing-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .pricing-price-slot {
        order: 1;
        flex-basis: auto;
        min-height: 0;
        justify-content: flex-start;
    }

    .pricing-text {
        order: 2;
        max-width: min(700px, 100%);
    }

    .pricing-story-line {
        width: min(93vw, 780px);
        font-size: clamp(1.72rem, 4.8vw, 3.05rem);
    }

    .contact-shell {
        grid-template-columns: 1fr;
        gap: 1.05rem;
    }

    .contact-intro {
        gap: 0.62rem;
    }

    .contact-copy {
        max-width: none;
    }

    .contact-form-wrap {
        max-width: min(640px, 100%);
    }
}

@media (max-width: 900px) {
    .hero {
        height: auto;
        padding: 7rem 1.5rem 3rem;
        gap: 2rem;
    }

    .hero-title h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-title p br {
        display: none;
    }

    .waitlist-form {
        flex-direction: column;
        align-items: stretch;
    }

    .features-stage {
        height: auto;
    }

    .features {
        position: relative;
        height: auto;
        padding: 0 1.5rem;
        overflow: visible;
    }

    .features-content {
        min-height: auto;
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-image {
        width: 100%;
        padding: 0.8rem;
        transform: none !important;
    }

    .features-image-text {
        position: relative;
        left: auto;
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 0;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    .features-progress {
        display: none;
    }

    .feature-item {
        position: relative;
        inset: auto;
        margin-bottom: 1.35rem;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    .feature-item-line {
        opacity: 1 !important;
        transform: none !important;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .pricing {
        min-height: 90vh;
        padding: 5.5rem 1.5rem 4rem;
    }

    .pricing-layout {
        flex-direction: column;
        align-items: stretch;
        gap: 1.4rem;
    }

    .pricing-text {
        order: 1;
        max-width: none;
    }

    .pricing-price-slot {
        order: 2;
        flex-basis: auto;
        min-height: 0;
        justify-content: flex-start;
    }

    .pricing-story-line {
        width: min(94vw, 560px);
        font-size: clamp(1.7rem, 8vw, 2.6rem);
    }

    .contact-section {
        margin-top: 4.2rem;
        padding: 2.6rem 1.2rem 3.2rem;
    }

    .contact-shell {
        gap: 1rem;
    }

    .contact-intro h2 {
        font-size: clamp(1.55rem, 8.2vw, 2.2rem);
    }

    .contact-form-wrap {
        padding: 0.95rem;
    }

    .contact-submit {
        width: 100%;
        justify-self: stretch;
    }
}

@keyframes pricingDotBounce {
    0%, 64%, 100% {
        transform: translateY(0);
    }
    32% {
        transform: translateY(-0.16em);
    }
}

footer {
    position: relative;
}
