:root {
  --landing-ink: #11120f;
  --landing-paper: #f3f4ee;
  --landing-white: #ffffff;
  --landing-line: #d7d9d0;
  --landing-muted: #666960;
  --landing-lime: #c7ff3d;
  --landing-red: #f2332f;
  --landing-cyan: #74ddf7;
  --landing-cobalt: #163cff;
  --landing-ease: cubic-bezier(.22, 1, .36, 1);
}

.landing-page { margin: 0; overflow-x: hidden; background: var(--landing-paper); color: var(--landing-ink); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; }
.landing-page * { box-sizing: border-box; letter-spacing: 0; }
.landing-page button, .landing-page input { font: inherit; }
.landing-page a { color: inherit; text-decoration: none; }
.landing-page button { cursor: pointer; }
.section-shell { width: min(1380px, calc(100% - 80px)); margin-inline: auto; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 74px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 34px; border-bottom: 1px solid rgba(255,255,255,.16); background: rgba(9,10,8,.74); color: #fff; backdrop-filter: blur(14px); transition: height .3s var(--landing-ease), background .3s; }
.site-header.is-scrolled { height: 64px; background: rgba(9,10,8,.94); }
.site-brand { display: inline-flex; align-items: center; justify-self: start; gap: 11px; width: max-content; font-size: 15px; }
.site-brand strong { font-weight: 850; }
.brand-glyph { width: 27px; height: 23px; display: inline-flex; align-items: flex-end; gap: 3px; transform: skew(-10deg); }
.brand-glyph i { width: 7px; display: block; border-radius: 1px; background: currentColor; }
.brand-glyph i:first-child { height: 15px; }
.brand-glyph i:nth-child(2) { height: 22px; }
.brand-glyph i:last-child { height: 11px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 12px; font-weight: 650; }
.site-nav a { color: #d6d8d1; transition: color .2s; }
.site-nav a:hover { color: var(--landing-lime); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.header-actions button { min-height: 40px; border-radius: 4px; font-size: 12px; font-weight: 800; }
.header-login { padding: 0 15px; border: 0; background: transparent; color: #fff; }
.header-cta { display: flex; align-items: center; gap: 9px; padding: 0 14px; border: 0; background: var(--landing-lime); color: #11140d; }
.header-cta svg { width: 15px; }

.landing-hero { position: relative; height: 88svh; min-height: 680px; max-height: 900px; overflow: hidden; isolation: isolate; background: #080907; color: #fff; }
.hero-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: hero-scale 1.8s var(--landing-ease) both; }
.landing-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(0,0,0,.08); pointer-events: none; }
.hero-content { width: min(1380px, calc(100% - 80px)); height: 100%; margin: auto; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 64px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; font-size: 11px; font-weight: 800; text-transform: uppercase; animation: hero-rise .8s .15s var(--landing-ease) both; }
.hero-kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--landing-lime); box-shadow: 0 0 0 6px rgba(199,255,61,.14); }
.hero-content h1 { margin: 0; font-size: 96px; line-height: .9; font-weight: 850; animation: hero-rise .9s .25s var(--landing-ease) both; }
.hero-lead { width: min(600px, 46%); margin: 28px 0 0; color: #e7e8e2; font-size: 22px; line-height: 1.38; animation: hero-rise .9s .34s var(--landing-ease) both; }
.hero-actions { display: flex; gap: 10px; margin-top: 34px; animation: hero-rise .9s .42s var(--landing-ease) both; }
.hero-actions > * { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; border-radius: 4px; font-size: 13px; font-weight: 800; }
.hero-primary { min-width: 216px; border: 1px solid var(--landing-lime); background: var(--landing-lime); color: #11130e; }
.hero-primary svg { width: 17px; }
.hero-secondary { border: 1px solid rgba(255,255,255,.34); background: rgba(10,11,9,.44); color: #fff; backdrop-filter: blur(8px); }
.hero-secondary svg { width: 15px; fill: currentColor; }
.hero-proof { position: absolute; left: max(40px, calc((100% - 1380px) / 2)); bottom: 34px; display: flex; gap: 28px; animation: hero-rise .9s .52s var(--landing-ease) both; }
.hero-proof span { display: grid; grid-template-columns: auto auto; align-items: center; gap: 7px; color: #d5d7cf; font-size: 10px; }
.hero-proof strong { color: var(--landing-lime); font-size: 9px; }
.hero-side-note { position: absolute; right: 32px; top: 50%; display: flex; align-items: center; gap: 12px; transform: translate(43%, -50%) rotate(90deg); transform-origin: center; font-size: 9px; text-transform: uppercase; }
.hero-side-note small { color: #bfc2b8; }
.hero-scroll { position: absolute; right: 34px; bottom: 30px; display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 10px; font-weight: 750; }
.hero-scroll svg { width: 16px; }

.problem-section { padding: 128px 0 120px; background: var(--landing-paper); }
.problem-section > .section-shell:first-child, .possibilities-section > .section-shell:first-child, .pricing-head { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 60px; }
.section-index { display: flex; align-items: flex-start; gap: 12px; padding-top: 9px; color: #5e6159; }
.section-index span, .section-index b { min-width: 34px; color: var(--landing-red); font-size: 12px; font-weight: 850; }
.section-index small { font-size: 11px; line-height: 1.4; text-transform: uppercase; }
.section-index.light { color: #a9ada3; }
.section-index.light span { color: var(--landing-lime); }
.problem-heading { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .7fr); gap: 70px; align-items: end; }
.problem-heading h2, .possibilities-copy h2, .pricing-head h2 { margin: 0; font-size: 64px; line-height: 1.02; font-weight: 770; }
.problem-heading h2 em, .possibilities-copy h2 em, .pricing-head h2 em, .final-cta h2 em { color: var(--landing-red); font-style: normal; }
.problem-heading p, .possibilities-copy p, .pricing-head p { margin: 0 0 5px; color: var(--landing-muted); font-size: 16px; line-height: 1.65; }
.pain-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 88px; border-top: 1px solid var(--landing-line); }
.pain-item { min-width: 0; padding: 34px 36px 10px 0; border-right: 1px solid var(--landing-line); }
.pain-item + .pain-item { padding-left: 36px; }
.pain-item:last-child { border-right: 0; }
.pain-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 5px; background: var(--landing-lime); }
.pain-icon.coral { background: #ff755d; }
.pain-icon.cyan { background: var(--landing-cyan); }
.pain-icon svg { width: 20px; }
.pain-item > small { color: #74776f; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.pain-item h3 { min-height: 81px; margin: 14px 0 18px; font-size: 24px; line-height: 1.18; }
.pain-item p { margin: 0; color: var(--landing-muted); font-size: 14px; line-height: 1.62; }

.workflow-section { padding: 124px 0 112px; background: var(--landing-ink); color: #fff; }
.workflow-head { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 60px; }
.workflow-head > div:last-child { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.workflow-head h2 { margin: 0; font-size: 62px; line-height: 1.02; }
.workflow-head p { width: 300px; margin: 0 0 6px; color: #aeb1a7; font-size: 15px; line-height: 1.55; }
.workflow-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 78px; border-top: 1px solid #3a3d36; }
.workflow-step { min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 26px 28px; border-right: 1px solid #3a3d36; }
.workflow-step:first-child { border-left: 1px solid #3a3d36; }
.workflow-step > span { color: var(--landing-lime); font-size: 10px; font-weight: 850; }
.workflow-step > div { display: grid; gap: 15px; }
.workflow-step svg { width: 27px; height: 27px; color: var(--landing-cyan); }
.workflow-step:nth-child(2) svg { color: #ff735d; }
.workflow-step:nth-child(3) svg { color: var(--landing-lime); }
.workflow-step:nth-child(4) svg { color: #7e8dff; }
.workflow-step h3 { margin: 4px 0 0; font-size: 24px; }
.workflow-step p { margin: 0; color: #aeb1a7; font-size: 13px; line-height: 1.6; }

.possibilities-section { padding: 130px 0; background: #fff; }
.possibilities-copy { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr); align-items: end; gap: 70px; }
.showcase-grid { height: 780px; display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 1fr .72fr; gap: 8px; margin-top: 84px; }
.showcase-grid figure { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #d9dbd3; }
.showcase-large { grid-row: 1 / 3; }
.showcase-wide { grid-column: 2 / 4; }
.landing-crop { display: block; width: 100%; height: 100%; background-repeat: no-repeat; background-size: 200% 200%; transition: transform .8s var(--landing-ease); }
.sheet-one { background-image: url("../images/gallery-sheet-01.png"); }
.sheet-two { background-image: url("../images/gallery-sheet-02.png"); }
.crop-a { background-position: 0 0; }
.crop-b { background-position: 100% 0; }
.crop-c { background-position: 0 100%; }
.crop-d { background-position: 100% 100%; }
.showcase-grid figure:hover .landing-crop { transform: scale(1.035); }
.showcase-grid figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; display: flex; justify-content: space-between; align-items: end; padding: 12px 13px; border-radius: 4px; background: rgba(11,12,10,.78); color: #fff; backdrop-filter: blur(8px); }
.showcase-grid figcaption strong { font-size: 12px; }
.showcase-grid figcaption small { color: #bec1b7; font-size: 9px; }

.focus-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr); min-height: 770px; background: var(--landing-cyan); }
.focus-visual { min-width: 0; min-height: 650px; overflow: hidden; }
.focus-visual .landing-crop { background-size: 200% auto; }
.focus-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(60px, calc((100vw - 1380px) / 2)); padding-left: 78px; }
.section-index.compact { gap: 13px; padding: 0; font-size: 10px; text-transform: uppercase; }
.focus-copy h2 { margin: 30px 0 25px; font-size: 62px; line-height: 1; }
.focus-copy > p { max-width: 550px; margin: 0; color: #2c3d42; font-size: 16px; line-height: 1.65; }
.focus-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 56px 0 42px; padding-top: 25px; border-top: 1px solid rgba(17,18,15,.22); }
.focus-stats div { display: grid; gap: 8px; }
.focus-stats dt { font-size: 34px; font-weight: 850; }
.focus-stats dd { margin: 0; color: #35484e; font-size: 11px; line-height: 1.45; }
.text-cta { width: max-content; display: inline-flex; align-items: center; gap: 10px; padding: 0 0 7px; border: 0; border-bottom: 2px solid currentColor; background: transparent; color: var(--landing-ink); font-size: 13px; font-weight: 850; }
.text-cta svg { width: 16px; }

.pricing-section { padding: 130px 0; background: var(--landing-paper); }
.pricing-head > div:last-child { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr); align-items: end; gap: 70px; }
.landing-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 82px; }
.landing-plan { min-height: 520px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--landing-line); border-radius: 6px; background: #fff; }
.landing-plan.featured { border-color: var(--landing-ink); background: var(--landing-ink); color: #fff; }
.plan-label { min-height: 25px; display: flex; align-items: center; justify-content: space-between; color: var(--landing-red); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.landing-plan.featured .plan-label { color: var(--landing-lime); }
.plan-label i { padding: 5px 7px; border-radius: 3px; background: var(--landing-lime); color: #10120d; font-size: 8px; font-style: normal; }
.landing-plan h3 { margin: 22px 0 42px; font-size: 25px; }
.landing-price { display: flex; align-items: baseline; gap: 8px; }
.landing-price strong { font-size: 44px; }
.landing-price small { color: #777a72; font-size: 11px; }
.landing-plan > p { margin: 10px 0 0; color: #4d7a00; font-size: 12px; font-weight: 800; }
.landing-plan.featured > p { color: var(--landing-lime); }
.landing-plan ul { display: grid; gap: 14px; margin: 38px 0; padding: 27px 0 0; border-top: 1px solid var(--landing-line); list-style: none; }
.landing-plan.featured ul { border-color: #3c3e38; }
.landing-plan li { display: flex; align-items: center; gap: 9px; color: #555850; font-size: 12px; }
.landing-plan.featured li { color: #c4c7bc; }
.landing-plan li svg { width: 15px; color: #579400; }
.landing-plan.featured li svg { color: var(--landing-lime); }
.landing-plan button { min-height: 48px; margin-top: auto; border: 1px solid var(--landing-ink); border-radius: 4px; background: transparent; color: var(--landing-ink); font-size: 12px; font-weight: 850; }
.landing-plan.featured button { border-color: var(--landing-lime); background: var(--landing-lime); color: var(--landing-ink); }

.final-cta { position: relative; min-height: 720px; overflow: hidden; background: var(--landing-red); color: #fff; }
.final-cta-media { position: absolute; inset: 0 0 0 47%; background-size: 200% auto; }
.final-cta-copy { position: relative; z-index: 2; min-height: 720px; width: 54%; display: flex; flex-direction: column; justify-content: center; padding: 80px 6vw; background: var(--landing-red); }
.final-cta-copy > span { font-size: 11px; font-weight: 850; text-transform: uppercase; }
.final-cta h2 { margin: 30px 0 42px; font-size: 72px; line-height: .98; }
.final-cta h2 em { color: var(--landing-lime); }
.final-cta button { width: max-content; min-height: 52px; display: inline-flex; align-items: center; gap: 18px; padding: 0 18px; border: 0; border-radius: 4px; background: var(--landing-ink); color: #fff; font-size: 13px; font-weight: 850; }
.final-cta button svg { width: 17px; }

.site-footer { padding: 76px 0 24px; background: #0b0c0a; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; padding-bottom: 76px; }
.footer-brand { margin-bottom: 24px; }
.footer-top > div:first-child p { margin: 0; color: #8f9388; font-size: 14px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; }
.footer-links > span { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 8px; color: #73776d; font-size: 10px; text-transform: uppercase; }
.footer-links a { width: max-content; max-width: 100%; color: #c8cbc1; font-size: 12px; }
.footer-links a:hover { color: var(--landing-lime); }
.footer-bottom { min-height: 66px; display: grid; grid-template-columns: 1fr 1.4fr auto; align-items: center; gap: 20px; border-top: 1px solid #2f312c; color: #74786e; font-size: 9px; }
.footer-bottom button { display: inline-flex; align-items: center; gap: 8px; padding: 0; border: 0; background: transparent; color: var(--landing-lime); font-size: 11px; font-weight: 800; }
.footer-bottom svg { width: 14px; }

.auth-dialog { width: min(540px, calc(100vw - 28px)); max-height: calc(100dvh - 28px); overflow: auto; padding: 0; border: 0; border-radius: 7px; background: #f3f4ef; color: #171816; box-shadow: 0 30px 110px rgba(0,0,0,.54); }
.auth-dialog::backdrop { background: rgba(7,8,6,.78); backdrop-filter: blur(10px); }
.auth-dialog .auth-card { position: relative; width: 100%; padding: 34px 40px 38px; animation: none; }
.auth-dialog .modal-brand { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; font-size: 13px; }
.auth-dialog .auth-tabs { margin-bottom: 28px; }
.auth-dialog .auth-copy { margin-bottom: 22px; }
.auth-dialog .auth-copy h2 { margin-top: 13px; font-size: 30px; }
.auth-dialog .auth-form { gap: 14px; }
.auth-dialog .input-wrap input { height: 48px; }
.auth-dialog-close { position: fixed; z-index: 2; top: max(22px, calc((100dvh - min(720px, 100dvh - 28px)) / 2 + 16px)); left: calc(50% + min(270px, (100vw - 28px) / 2) - 49px); width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #d3d5ce; border-radius: 4px; background: #fff; color: #171816; }
.auth-dialog-close svg { width: 16px; }
.signup-note { margin: -2px 0 0; color: #777971; font-size: 10px; line-height: 1.5; }
.signup-note a { font-weight: 750; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--landing-ease), transform .8s var(--landing-ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-scale { from { opacity: .35; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero-content h1 { font-size: 76px; }
  .hero-lead { width: 52%; font-size: 19px; }
  .problem-section > .section-shell:first-child, .possibilities-section > .section-shell:first-child, .pricing-head, .workflow-head { grid-template-columns: 150px minmax(0, 1fr); gap: 35px; }
  .problem-heading, .possibilities-copy, .pricing-head > div:last-child { grid-template-columns: 1fr; gap: 28px; }
  .problem-heading h2, .possibilities-copy h2, .pricing-head h2, .workflow-head h2 { font-size: 52px; }
  .workflow-head > div:last-child { align-items: flex-start; flex-direction: column; }
  .workflow-rail { grid-template-columns: repeat(2, 1fr); }
  .workflow-step { min-height: 290px; border-bottom: 1px solid #3a3d36; }
  .showcase-grid { height: 650px; }
  .focus-section { grid-template-columns: .9fr 1.1fr; }
  .focus-copy { padding-left: 52px; }
  .focus-copy h2 { font-size: 52px; }
  .final-cta h2 { font-size: 60px; }
}

@media (max-width: 760px) {
  .section-shell { width: calc(100% - 36px); }
  .site-header { height: 62px; padding: 0 18px; }
  .site-brand { font-size: 13px; }
  .header-login { display: none; }
  .header-cta { min-height: 36px !important; padding-inline: 12px; }
  .landing-hero { height: 91svh; min-height: 650px; max-height: 790px; }
  .hero-media { object-position: 57% center; opacity: .7; }
  .landing-hero::after { background: rgba(0,0,0,.34); }
  .hero-content { width: calc(100% - 36px); justify-content: flex-end; padding: 0 0 128px; }
  .hero-content h1 { max-width: 100%; font-size: 51px; overflow-wrap: anywhere; }
  .hero-lead { width: 100%; max-width: 480px; margin-top: 20px; font-size: 17px; }
  .hero-actions { width: 100%; display: grid; margin-top: 26px; }
  .hero-actions > * { width: 100%; }
  .hero-proof { left: 18px; right: 18px; bottom: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-proof span { display: grid; grid-template-columns: 1fr; gap: 3px; font-size: 8px; }
  .hero-side-note, .hero-scroll { display: none; }
  .problem-section, .possibilities-section, .pricing-section { padding: 88px 0; }
  .problem-section > .section-shell:first-child, .possibilities-section > .section-shell:first-child, .pricing-head, .workflow-head { grid-template-columns: 1fr; gap: 30px; }
  .section-index { padding: 0; }
  .problem-heading h2, .possibilities-copy h2, .pricing-head h2, .workflow-head h2 { font-size: 39px; }
  .problem-heading p, .possibilities-copy p, .pricing-head p { font-size: 14px; }
  .pain-grid { grid-template-columns: 1fr; margin-top: 58px; }
  .pain-item, .pain-item + .pain-item { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--landing-line); }
  .pain-item h3 { min-height: 0; font-size: 22px; }
  .pain-icon { margin-bottom: 24px; }
  .workflow-section { padding: 88px 0; }
  .workflow-head > div:last-child { gap: 22px; }
  .workflow-head p { width: auto; }
  .workflow-rail { grid-template-columns: 1fr; margin-top: 50px; }
  .workflow-step { min-height: 240px; border-left: 1px solid #3a3d36; }
  .showcase-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 470px 240px 280px; }
  .showcase-large { grid-column: 1 / 3; grid-row: auto; }
  .showcase-wide { grid-column: 1 / 3; }
  .showcase-grid figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .focus-section { grid-template-columns: 1fr; }
  .focus-visual { min-height: 490px; }
  .focus-copy { padding: 76px 18px 84px; }
  .focus-copy h2 { font-size: 42px; }
  .focus-copy > p { font-size: 14px; }
  .focus-stats { gap: 10px; }
  .focus-stats dt { font-size: 29px; }
  .landing-plans { grid-template-columns: 1fr; margin-top: 54px; }
  .landing-plan { min-height: 480px; }
  .final-cta { min-height: 720px; }
  .final-cta-media { inset: 44% 0 0; }
  .final-cta-copy { min-height: 430px; width: 100%; justify-content: flex-start; padding: 78px 18px 60px; }
  .final-cta h2 { margin: 24px 0 34px; font-size: 49px; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 54px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .auth-dialog .auth-card { padding: 28px 22px 32px; }
  .auth-dialog-close { position: absolute; top: 14px; right: 14px; left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-media, .hero-content > *, .hero-proof { animation: none !important; }
}
