/* Tifawt landing — tokens, base, nav, buttons, hero, strip, problem, reframe.
   Sections continue in landing-sections.css.
   Brand palette is sampled from the logo: magenta #a800a8 -> purple #7a12a0 -> violet #4a1a8c. */

:root {
  --bg: #faf7fd; --ink: #1d0f2a; --muted: #625a73; --line: #ece4f5;
  --card: #fff; --cardline: #eee6f7;
  --magenta: #a800a8; --purple: #7a12a0; --violet: #4a1a8c; --purple-2: #8e10a6;
  --tint: #f8e8fa; --tint-2: #f1e6fb; --tintline: #e6c6ec;
  --grad: linear-gradient(135deg, #b400b2 0%, #8a0ea6 48%, #4a1a8c 100%);
  --grad-soft: linear-gradient(135deg, #a800a8, #6a1698);
  --green: #17a673; --gold: #f2a91b; --blue: #2ba6ee; --red: #e5484d;
  --display: 'Cabinet Grotesk', 'Rubik', system-ui, sans-serif;
  --body: 'Switzer', 'Rubik', system-ui, sans-serif;
  --mono: 'Martian Mono', ui-monospace, monospace;
  --ease: cubic-bezier(.32,.72,.32,1);
}
[dir="rtl"] { --display: 'Rubik', system-ui, sans-serif; --body: 'Rubik', system-ui, sans-serif; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; overflow-x: clip; color: var(--ink); font-family: var(--body); line-height: 1.5;
  background: var(--bg) radial-gradient(rgba(122,18,160,.16) 1px, transparent 1px) 0 0 / 26px 26px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--display); letter-spacing: -.025em; line-height: 1.05; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; line-height: 1.2; }
p { margin: 0; }
section { position: relative; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.eyebrow { font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--magenta); }
[dir="rtl"] .eyebrow { letter-spacing: 0; font-family: var(--body); font-weight: 600; font-size: 13.5px; }
.eyebrow.green { color: var(--green); } .eyebrow.blue { color: var(--blue); } .eyebrow.gold { color: #c98a0b; }
.hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .08em; }
.hlf { display: inline-block; padding: 0 10px; margin-inline-start: -10px; background: linear-gradient(90deg, #f6cdf3, #e7d3f8) no-repeat 0 68% / 100% 46%; transform: rotate(-1.2deg); }
.sub { color: var(--muted); font-size: 17px; line-height: 1.6; margin-top: 18px; max-width: 52ch; }
.shead { margin-bottom: 44px; }
.shead h2 { font-weight: 800; font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin-top: 16px; max-width: 18ch; }
.shead.center { text-align: center; }
.shead.center h2, .shead.center .sub { margin-inline: auto; }
.ar { display: inline-block; transition: transform .25s var(--ease); }
[dir="rtl"] .ar { transform: scaleX(-1); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* buttons */
.btn { font-family: var(--body); font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 12px; cursor: pointer; display: inline-flex; gap: 8px; align-items: center; border: 0; position: relative; transition: transform .22s var(--ease), box-shadow .25s, background .2s, border-color .2s; white-space: nowrap; }
.btn.sm { padding: 10px 18px; font-size: 14px; border-radius: 999px; }
.btn.p { background: var(--grad); background-size: 160% 160%; background-position: 0% 50%; color: #fff; overflow: hidden; box-shadow: 0 12px 26px -14px rgba(168,0,168,.7); transition: transform .22s var(--ease), box-shadow .25s, background-position .5s var(--ease); }
.btn.p::after { content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.38), transparent); transform: skewX(-20deg); transition: left .55s ease; pointer-events: none; }
.btn.p:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(122,18,160,.8); }
.btn.p:hover::after { left: 130%; }
.btn.g { background: #fff; border: 1px solid var(--cardline); color: var(--ink); }
.btn.g:hover { transform: translateY(-2px); border-color: var(--tintline); box-shadow: 0 12px 24px -14px rgba(74,26,140,.35); }
.btn:hover .ar { transform: translateX(4px); }
[dir="rtl"] .btn:hover .ar { transform: scaleX(-1) translateX(4px); }

/* nav */
nav#nav { position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 50; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 12px 36px; background: rgba(248,246,252,.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid transparent; border-bottom-color: var(--line); transition: max-width .5s var(--ease), padding .4s var(--ease), border-radius .5s var(--ease), background .3s, margin-top .4s var(--ease), box-shadow .3s; }
nav#nav.shrunk { max-width: 880px; margin-top: 14px; padding: 7px 20px; border-radius: 999px; background: rgba(255,255,255,.86); border-color: var(--cardline); box-shadow: 0 18px 46px -18px rgba(74,26,140,.28); }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
nav .logo { display: flex; align-items: center; gap: 10px; justify-self: center; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
nav .logo img { height: 48px; width: 48px; border-radius: 0; transition: height .5s var(--ease), width .5s var(--ease); }
nav .lg-w { overflow: hidden; max-width: 90px; transition: max-width .5s var(--ease), opacity .35s; }
nav#nav.shrunk .lg-w { max-width: 0; opacity: 0; }
nav#nav.shrunk .logo img { height: 36px; width: 36px; }
.nav-right { display: flex; align-items: center; gap: 14px; justify-self: end; }
[dir="rtl"] .nav-right { justify-self: start; }
.nav-right .signin { font-size: 14.5px; font-weight: 500; color: var(--muted); }
.nav-right .signin:hover { color: var(--ink); }
.lang { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .08em; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--cardline); background: #fff; color: var(--magenta); cursor: pointer; }
.lang:hover { border-color: var(--tintline); }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--cardline); border-radius: 10px; background: #fff; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.burger span { width: 16px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 6px; padding: 8px 0 6px; border-top: 1px solid var(--line); }
.mobile-menu a { padding: 10px 6px; font-weight: 500; font-size: 16px; }
.mobile-menu .btn { justify-content: center; margin-top: 6px; }

/* rings (contour lines) */
.rip { position: absolute; z-index: 0; pointer-events: none; }
.rip path { fill: none; stroke: var(--purple); stroke-width: 1.2; }
.hero::before, .hero::after { content: ""; position: absolute; z-index: 0; pointer-events: none; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero::before { width: 560px; height: 560px; left: -180px; top: 40px; background: radial-gradient(circle, rgba(180,0,178,.35), transparent 65%); }
.hero::after { width: 560px; height: 560px; right: 0; top: 120px; background: radial-gradient(circle, rgba(74,26,140,.35), transparent 65%); }
[dir="rtl"] .hero::before { left: auto; right: 0; } [dir="rtl"] .hero::after { right: auto; left: 0; }
.hero .rip { top: 0; left: 0; width: 100%; height: calc(100% + 360px); -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent); mask-image: linear-gradient(to bottom, #000 68%, transparent); }
.hero .rip path { stroke-opacity: .16; }

/* hero */
.hero { padding: 150px 0 80px; background: linear-gradient(to bottom, var(--bg) 62%, rgba(250,247,253,0) 96%); overflow: visible; }
.hero .wrap { max-width: 1180px; }
.hero .grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 44px; align-items: center; }
.hero .grid > * { min-width: 0; }
.hero .eyebrow { white-space: nowrap; }
.hero h1 { font-weight: 800; font-size: clamp(2.5rem, 5vw, 4.3rem); margin-top: 20px; }
.hero .lead { margin-top: 22px; font-size: 18.5px; line-height: 1.55; color: var(--muted); max-width: 46ch; }
.hero .ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero .fine { margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
[dir="rtl"] .hero .fine { font-family: var(--body); letter-spacing: 0; font-size: 13px; text-transform: none; }

/* live order artifact */
.artifact { background: var(--card); border: 1px solid var(--cardline); border-radius: 16px; overflow: hidden; font-family: var(--mono); font-size: 12.5px; box-shadow: 0 30px 60px -38px rgba(122,18,160,.5); border-top: 3px solid transparent; background-image: linear-gradient(#fff, #fff), var(--grad); background-origin: border-box; background-clip: padding-box, border-box; }
[dir="rtl"] .artifact { font-family: var(--body); font-size: 13.5px; }
.art-steps { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.art-steps .st { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px 5px 6px; border-radius: 999px; border: 1px solid var(--cardline); background: #fff; font-size: 11.5px; color: var(--muted); transition: all .35s; }
[dir="rtl"] .art-steps .st { padding: 5px 6px 5px 12px; }
.art-steps .st span { white-space: nowrap; }
.art-steps .st i { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--cardline); display: grid; place-items: center; font-style: normal; font-size: 10px; }
.art-steps .dash { width: 18px; height: 1px; background: var(--cardline); }
.artifact[data-step="1"] .st[data-st="0"], .artifact[data-step="2"] .st[data-st="0"], .artifact[data-step="2"] .st[data-st="1"], .artifact[data-step="3"] .st { background: #e8f7f0; border-color: #bfe8d3; color: var(--green); }
.artifact[data-step="1"] .st[data-st="0"] i, .artifact[data-step="2"] .st[data-st="0"] i, .artifact[data-step="2"] .st[data-st="1"] i, .artifact[data-step="3"] .st i { background: var(--green); border-color: var(--green); color: #fff; }
.artifact[data-step="0"] .st[data-st="0"], .artifact[data-step="1"] .st[data-st="1"], .artifact[data-step="2"] .st[data-st="2"] { border-color: var(--magenta); color: var(--ink); background: var(--tint); }
.art-body { padding: 18px 20px 20px; }
.art-eyebrow { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--magenta); }
.art-title { font-family: var(--body); font-weight: 600; font-size: 17px; margin-top: 4px; color: var(--ink); }
.art-card { margin-top: 14px; background: #fff; border: 1px solid var(--cardline); border-radius: 12px; padding: 14px 16px; box-shadow: 0 14px 30px -24px rgba(60,20,110,.35); }
.art-head { display: flex; align-items: center; gap: 8px; }
.art-id { font-weight: 500; color: var(--ink); }
.tag { font-size: 10px; padding: 2px 7px; border-radius: 6px; background: var(--tint); color: var(--magenta); }
.art-when { margin-inline-start: auto; font-size: 10.5px; color: var(--muted); }
.art-line { margin-top: 8px; font-family: var(--body); font-size: 14px; color: var(--ink); }
.art-label { margin-top: 12px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.art-tl { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 6px; }
.art-tl li { display: flex; align-items: center; gap: 9px; font-family: var(--body); font-size: 13px; color: var(--muted); transition: color .35s; }
.art-tl .dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--cardline); flex-shrink: 0; position: relative; transition: all .35s; }
.art-tl li.done { color: var(--ink); }
.art-tl li.done .dot { background: var(--green); border-color: var(--green); }
.art-tl li.done .dot::after { content: ""; position: absolute; left: 4px; top: 1.5px; width: 3px; height: 6px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
.art-tl li.now .dot { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(168,0,168,.15); animation: pulse-dot 1.4s ease-in-out infinite; }
.art-wallet { margin-top: 8px; padding: 8px 12px; border-radius: 8px; background: #f2f2f6; color: var(--muted); font-size: 13px; transition: all .4s; }
.artifact[data-step="3"] .art-wallet { background: #e8f7f0; color: #0f7a52; border: 1px solid #bfe8d3; }
.art-chips { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.chip { font-size: 10.5px; padding: 4px 9px; border-radius: 6px; border: 1px solid; }
.chip.ok { color: var(--green); border-color: #bfe8d3; background: #f0faf5; }
.chip.info { color: var(--blue); border-color: #bfe3f7; background: #eef8fe; }
.art-foot { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px; border-top: 1px solid var(--line); background: #fbfafe; font-size: 11px; color: var(--muted); }
.art-foot .live { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.art-foot .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse-dot 1.6s ease-in-out infinite; }
.art-foot .brand { font-family: var(--mono); color: var(--purple); }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

/* stats strip */
.strip-wrap { padding: 0 0 40px; }
.strip { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--cardline); border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -46px rgba(74,26,140,.35); }
.strip .cell { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
[dir="rtl"] .strip .cell { border-right: 0; border-left: 1px solid var(--line); }
.strip .cell:nth-child(4n) { border-right: 0; }
[dir="rtl"] .strip .cell:nth-child(4n) { border-left: 0; }
.strip .cell:nth-child(n+5) { border-bottom: 0; }
.strip .cell:last-child { border-right: 0; }
[dir="rtl"] .strip .cell:last-child { border-left: 0; }
.strip .cell b { font-family: var(--display); font-weight: 800; font-size: 34px; letter-spacing: -.03em; background: var(--grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.strip .cell > span { font-size: 13.5px; color: var(--muted); }
.strip .cell b span { font-size: inherit; }
.strip .cell b.cc { font-size: 11px; letter-spacing: .08em; background: var(--grad); -webkit-background-clip: border-box; background-clip: border-box; color: #fff; -webkit-text-fill-color: #fff; }
.strip .cell.flag { flex-direction: row; gap: 10px; font-weight: 600; color: var(--ink); }
.strip .cell.flag span { color: var(--ink); font-size: 15px; }
.cc { display: inline-grid; place-items: center; min-width: 34px; height: 24px; padding: 0 7px; border-radius: 7px; background: var(--grad); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; }
.strip .span2 { grid-column: span 2; }
.strip .cell.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1.8; }
[dir="rtl"] .strip .cell.mono { font-family: var(--body); letter-spacing: 0; font-size: 14px; text-transform: none; }

/* the problem */
.problem { padding: 96px 0 0; }
.problem .grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.problem h2 { font-weight: 800; font-size: clamp(2rem, 3.9vw, 2.9rem); margin-top: 16px; }
.chat { background: #fff; border: 1px solid var(--cardline); border-radius: 14px; padding: 14px 16px 12px; box-shadow: 0 30px 60px -38px rgba(122,18,160,.5); transform: rotate(1.2deg); font-size: 13px; }
.chat-ch { font-family: var(--mono); font-size: 11px; color: var(--muted); padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.chat-msg { display: flex; gap: 10px; }
.chat .av { width: 32px; height: 32px; border-radius: 9px; background: var(--grad); color: #fff; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.chat .who { display: flex; gap: 8px; align-items: baseline; }
.chat .who span { font-size: 11px; color: var(--muted); }
.chat-quote { margin-top: 8px; padding: 10px 12px; border: 1px solid var(--cardline); border-radius: 8px; display: flex; flex-direction: column; gap: 6px; position: relative; max-width: 220px; }
.chat-quote span { height: 6px; border-radius: 3px; background: #ece7f6; }
.chat-quote span.short { width: 55%; }
.chat-quote i { position: absolute; right: -8px; top: -8px; width: 18px; height: 18px; border-radius: 50%; background: var(--magenta); color: #fff; font-size: 11px; font-weight: 700; font-style: normal; display: grid; place-items: center; }
[dir="rtl"] .chat-quote i { right: auto; left: -8px; }
.chat .react { display: flex; gap: 8px; margin-top: 8px; font-size: 11.5px; }
.chat .react span { padding: 2px 8px; border-radius: 999px; background: #f7f5fb; border: 1px solid var(--cardline); }
.chat .react b { color: var(--magenta); font-weight: 600; margin-inline-start: 4px; }
.bigq { text-align: center; font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 2.4vw, 1.75rem); margin-top: 76px; letter-spacing: -.02em; }
.bigq .hlq { background: linear-gradient(transparent 60%, #f0d2f1 60%); padding: 0 2px; }
.options { display: grid; gap: 26px; justify-items: center; margin-top: 40px; text-align: center; }
.options h3 { font-weight: 800; font-size: 22px; }
.options p { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
[dir="rtl"] .options p { font-family: var(--body); letter-spacing: 0; font-size: 13px; text-transform: none; }
.answer { text-align: center; font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 1.9rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; width: fit-content; margin-inline: auto; margin-top: 44px; letter-spacing: -.02em; }
.drip { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 36px 0 0; height: 90px; }
.drip i { width: 4px; height: 4px; border-radius: 50%; background: var(--magenta); opacity: .55; }

/* meet tifawt — the one dark section */
.reframe { margin-top: 24px; background: radial-gradient(ellipse 70% 60% at 18% 20%, rgba(180,0,178,.45), transparent 60%), radial-gradient(ellipse 60% 70% at 85% 80%, rgba(90,30,170,.5), transparent 60%), linear-gradient(165deg, #4a1a8c, #2a0d48 55%, #1a0830); color: #f4ecfb; text-align: center; padding: 150px 0; }
.reframe .crust { position: absolute; left: 0; width: 100%; height: 26px; z-index: 3; display: block; fill: #4c1a8d; }
.reframe .crust.top { top: -24px; }
.reframe .crust.bot { bottom: -24px; transform: scaleY(-1); fill: #1b0831; }
.reframe .rip { inset: 0; width: 100%; height: 100%; }
.reframe .rip path { stroke: #fff; stroke-opacity: .07; }
.reframe .eyebrow { color: #e79cf0; }
.reframe h2 { font-weight: 800; font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-top: 18px; color: #fff; }
.reframe .sub { margin: 22px auto 0; color: #d9c9ee; max-width: 56ch; }
.reframe .punch { margin-top: 36px; font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: -.02em; color: #fff; }
.reframe .punch em { font-style: normal; color: #f2a0f5; }
.reframe .mono { margin-top: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: #b9a4d6; }
[dir="rtl"] .reframe .mono { font-family: var(--body); letter-spacing: 0; font-size: 14px; }
.reframe .spark { position: absolute; z-index: 2; font-size: 20px; color: #e79cf0; opacity: .9; animation: twinkle 3s ease-in-out infinite; }
.reframe .s1 { left: 16%; top: 24%; } .reframe .s2 { right: 17%; top: 30%; animation-delay: .8s; }
.reframe .s3 { left: 26%; bottom: 26%; font-size: 13px; color: #b79df2; animation-delay: 1.6s; } .reframe .s4 { right: 27%; bottom: 30%; font-size: 13px; color: #b79df2; animation-delay: 2.2s; }
@keyframes twinkle { 0%, 100% { opacity: .35; transform: scale(.85) rotate(0); } 50% { opacity: 1; transform: scale(1.1) rotate(20deg); } }

@media (max-width: 960px) {
  .hero .grid, .problem .grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip .cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .strip .cell:nth-child(2n) { border-right: 0; }
  [dir="rtl"] .strip .cell:nth-child(2n) { border-left: 0; }
  .strip .cell:nth-child(n+5) { border-bottom: 1px solid var(--line); }
  .strip .cell:nth-last-child(-n+2) { border-bottom: 0; }
  .strip .span2 { grid-column: 1 / -1; border-right: 0; order: 10; border-bottom: 0; }
  .strip .cell.flag:nth-child(7) { border-right: 0; }
  [dir="rtl"] .strip .cell.flag:nth-child(7) { border-left: 0; }
}
@media (max-width: 760px) {
  nav#nav { grid-template-columns: auto 1fr auto; padding: 12px 16px; gap: 10px; }
  nav#nav.shrunk { max-width: calc(100% - 20px); margin-top: 10px; padding: 8px 12px; border-radius: 22px; }
  nav#nav.shrunk .lg-w { max-width: 90px; opacity: 1; }
  .nav-links, .nav-right .signin, .nav-right .btn { display: none; }
  nav .logo { justify-self: start; order: -1; }
  .nav-right { justify-self: end; }
  .burger { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero .eyebrow { white-space: normal; font-size: 11px; }
  .hero .ctas .btn { width: 100%; justify-content: center; }
  .chat { transform: none; }
  .art-foot .brand { display: none; }
  .art-head { flex-wrap: wrap; }
  .art-id { font-size: 11px; }
  .reframe { padding: 110px 0; }
  .reframe .spark { display: none; }
}
