/* AppKong LLC | original static website | no external dependencies */
:root {
  --bg: #0b100d;
  --bg-raised: #101712;
  --bg-card: #121a14;
  --text: #f1f4ed;
  --muted: #a0aea0;
  --quiet: #81917f;
  --accent: #b9f480;
  --line: #28342a;
  --font: Arial, Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1216px;
  --header-height: 88px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--bg); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
button:not(:disabled), a { touch-action: manipulation; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
img, svg { display: block; }
img { max-width: 100%; }
button, a { outline-offset: 5px; }
:focus-visible { outline: 2px solid var(--accent); }
button:disabled { cursor: not-allowed; }
[hidden] { display: none !important; }
button { -webkit-appearance: none; appearance: none; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-weight: 600; }
h1, h2 { text-wrap: balance; }
.icon { flex: 0 0 auto; width: 22px; height: 22px; }
.container { width: min(var(--container), calc(100% - 96px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; padding: 12px 18px; border-radius: 4px; color: var(--bg); background: var(--accent); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.text-muted { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 15px; font-size: 13px; font-weight: 500; }
.text-link .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover { color: var(--accent); }
.text-link:hover .icon { transform: translate(2px, -2px); }
.eyebrow { display: flex; align-items: center; gap: 10px; font: 10px/1.5 var(--mono); letter-spacing: 1.3px; color: #c6d1c0; }
.section-eyebrow { color: var(--accent); margin-bottom: 24px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px #b9f4800c; flex-shrink: 0; }
.button { min-height: 52px; padding: 15px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; border-radius: 5px; font-size: 13px; line-height: 1.5; font-weight: 600; transition: background .2s, transform .2s, box-shadow .2s; }
.button .icon { width: 19px; height: 19px; }
.button-primary { background: var(--accent); color: #152111; }
.button-primary:hover { background: #cbff9c; box-shadow: 0 7px 24px #a8ee5820; transform: translateY(-2px); }
/* Navigation */
.site-header { height: var(--header-height); position: sticky; top: 0; z-index: 40; background: #0b100df2; border-bottom: 1px solid #d2f3b412; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand-icon { width: 39px; height: 39px; color: var(--accent); }
.brand-icon svg { width: 100%; height: 100%; }
.wordmark { font-size: 25px; line-height: 1; font-weight: 700; letter-spacing: -1px; display: flex; align-items: baseline; gap: 6px; }
.brand-llc { font-family: var(--mono); font-weight: 400; font-size: 9px; letter-spacing: .2px; color: var(--muted); }
.desktop-nav { display: flex; gap: 33px; margin-left: auto; margin-right: 25px; }
.desktop-nav a { font-size: 12px; color: #c4cec0; position: relative; padding: 8px 0; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="location"] { color: var(--accent); }
.desktop-nav a::after { content: ""; position: absolute; height: 1px; background: var(--accent); left: 0; right: 0; bottom: 3px; transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); }
.nav-contact { border: 1px solid #41503c; border-radius: 4px; padding: 10px 15px; display: flex; align-items: center; gap: 22px; font-size: 12px; transition: border-color .2s, background .2s; }
.nav-contact .icon { height: 17px; width: 17px; }
.nav-contact:hover { border-color: var(--accent); background: #b9f4800a; }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; width: 44px; height: 44px; border-radius: 4px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 18px; height: 1px; background: var(--text); transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { position: absolute; top: 100%; left: 0; right: 0; background: #101811; border-bottom: 1px solid var(--line); padding: 16px 24px 24px; box-shadow: 0 25px 40px #0007; }
.mobile-nav a { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 18px 4px; font-size: 17px; }
.mobile-nav a:last-child { color: var(--accent); }
/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-ambient { pointer-events: none; position: absolute; inset: 0; background: radial-gradient(ellipse at 86% 40%, #29422a3b, transparent 50%); }
.hero-main { display: grid; grid-template-columns: 1.07fr 1fr; min-height: 688px; align-items: center; position: relative; }
.hero-copy { padding: 56px 0 58px; position: relative; z-index: 3; }
.hero-copy .eyebrow { margin-bottom: 26px; font-size: 9px; }
h1 { font-size: clamp(64px, 6.45vw, 94px); line-height: 1.045; letter-spacing: -5.9px; }
.hero h1 { white-space: nowrap; }
.hero h1 span { color: var(--accent); }
.hero-description { color: #a8b4a7; max-width: 465px; font-size: 15px; line-height: 1.85; margin-top: 27px; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 33px; }
.hero-actions .text-link { font-size: 12px; gap: 9px; }
.platforms { display: flex; align-items: center; gap: 25px; margin-top: 47px; }
.platform-label { font: 8px/1.8 var(--mono); letter-spacing: .8px; color: #94a28e; padding-right: 22px; border-right: 1px solid #35402f; }
.platform-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.platform-item .icon { height: 23px; width: 23px; color: #d4dccf; }
.platform-item small { display: block; font-size: 9px; font-weight: 400; color: #9ca995; }
.hero-visual { min-height: 660px; position: relative; margin-right: -30px; isolation: isolate; }
.hero-fern { position: absolute; width: 690px; max-width: none; height: 739px; object-fit: contain; left: -31px; top: -54px; opacity: .42; transform: rotate(8deg); z-index: -1; mask-image: linear-gradient(to bottom, transparent 1%, #000 20%, #000 68%, transparent 95%); }
.visual-orbit { position: absolute; border: 1px solid #98c08219; border-radius: 50%; z-index: -2; }
.orbit-one { width: 550px; height: 550px; top: 42px; left: 12px; }
.orbit-two { width: 682px; height: 682px; top: -25px; left: -54px; border-style: dashed; border-color: #b9f4800c; }
.visual-label { position: absolute; right: 0; top: 66px; font: 8px/1.8 var(--mono); color: #b4c1a7; letter-spacing: 1.1px; z-index: 2; }
.tiny-cross { font-size: 16px; color: var(--accent); margin-right: 7px; vertical-align: -1px; }
.label-indent { padding-left: 21px; }
.phone-device { position: absolute; width: 264px; height: 544px; left: 149px; top: 52px; background: linear-gradient(130deg,#6a7367,#192019 17%,#54604d 53%,#131a13 80%,#737967); padding: 6px; border-radius: 43px; transform: rotate(9deg); box-shadow: 0 0 0 1px #9da69360, 12px 34px 50px #0009, -7px 2px 20px #94c47910; }
.phone-device::before { content: ""; position: absolute; height: 39px; width: 3px; background: #687260; right: -3px; top: 140px; border-radius: 0 2px 2px 0; }
.phone-device::after { content: ""; position: absolute; height: 56px; width: 2px; background: #697960; left: -2px; top: 132px; border-radius: 2px 0 0 2px; }
.phone-screen { height: 100%; overflow: hidden; background: #f0f2e9; color: #253125; border: 2px solid #111b12; border-radius: 38px; position: relative; padding: 12px 17px 15px; }
.phone-status { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; height: 23px; margin: 0 1px; }
.phone-status>span:last-child { display: flex; align-items: center; gap: 2px; }
.phone-status .icon { width: 14px; height: 14px; }
.phone-island { position: absolute; top: 9px; left: 50%; width: 71px; height: 20px; background: #111811; border-radius: 20px; transform: translateX(-50%); }
.app-header { display: flex; justify-content: space-between; align-items: center; margin-top: 19px; }
.app-logo { display: flex; align-items: center; gap: 4px; font-size: 17px; letter-spacing: -.7px; font-weight: 700; }
.app-logo .icon { width: 17px; height: 17px; }
.app-avatar { border: 1px solid #d0d8c3; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; font-size: 9px; }
.app-overline { font: 6px/1.5 var(--mono); letter-spacing: .65px; color: #687460; margin-top: 24px; }
.app-heading { font-size: 26px; line-height: 1.11; letter-spacing: -1.1px; margin-top: 7px; font-weight: 600; }
.app-feature { height: 171px; border-radius: 10px; background: #223b28; overflow: hidden; margin-top: 18px; position: relative; color: #f0f2e9; }
.app-feature>img { position: absolute; width: 251px; height: 265px; max-width: none; right: -57px; bottom: -33px; transform: rotate(23deg); opacity: .85; }
.feature-sun { position: absolute; border: 1px solid #a6c4975c; width: 147px; height: 147px; border-radius: 50%; left: 30px; top: -45px; background: radial-gradient(circle,#849b5033,transparent); }
.app-pill { position: absolute; top: 13px; left: 13px; font: 5px var(--mono); letter-spacing: .6px; background: #e1fbb218; border: 1px solid #b2d19f50; border-radius: 12px; padding: 5px 7px; }
.app-feature-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(0deg,#132b1cf5,transparent); }
.app-feature-bottom small { display: block; font-size: 7px; color: #c7d4b5; }
.app-feature-bottom strong { display: block; font-size: 18px; line-height: 1.5; letter-spacing: -.5px; font-weight: 500; }
.app-play { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: #c4e89d; color: #31402a; }
.app-play .icon { width: 15px; height: 15px; fill: currentColor; }
.app-section-heading { display: flex; align-items: center; justify-content: space-between; margin: 17px 0 9px; }
.app-section-heading strong { font-size: 11px; }
.app-section-heading>span { font-size: 7px; display: flex; align-items: center; gap: 4px; }
.app-section-heading .icon { height: 11px; width: 11px; }
.app-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.app-mini-cards>div { padding: 10px 8px; background: #e2e7d8; border-radius: 7px; }
.app-mini-cards>div:last-child { background: #e8e5db; }
.app-mini-cards .icon { width: 15px; height: 15px; margin-bottom: 8px; }
.app-mini-cards strong { display: block; font-size: 9px; line-height: 1.4; }
.app-mini-cards span { display: block; font-size: 5.8px; color: #6b735e; margin-top: 1px; }
.app-bottom-nav { display: flex; align-items: center; justify-content: space-around; margin-top: 15px; color: #5e6958; }
.app-bottom-nav>span { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.app-bottom-nav small { font-size: 5.5px; }
.app-bottom-nav .icon { height: 15px; width: 15px; }
.app-bottom-nav .selected { color: #2f5232; }
.home-indicator { width: 79px; height: 3px; background: #172016; border-radius: 4px; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); }
.floating-note { position: absolute; top: 480px; left: 28px; z-index: 5; display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #1e2e1eed, #1d281aeb); backdrop-filter: blur(18px); border: 1px solid #80987060; border-radius: 8px; padding: 17px 18px; box-shadow: 0 12px 30px #0004; transform: rotate(-4deg); }
.note-icon { height: 35px; width: 35px; display: grid; place-items: center; color: #c1f98b; background: #b9f48014; border: 1px solid #b9f48026; border-radius: 8px; }
.note-icon .icon { width: 18px; height: 18px; }
.floating-note small { display: block; color: #b3c99c; font: 6px/1.5 var(--mono); letter-spacing: 1px; margin-bottom: 4px; }
.floating-note strong { display: block; font-size: 13px; font-weight: 500; color: #edf5e7; }
.note-spark { color: var(--accent); font-size: 28px; line-height: 1; padding-left: 9px; }
.hero-visual figcaption { position: absolute; bottom: 20px; left: 60px; right: 0; font: 7px/1.5 var(--mono); color: #a3b198; text-align: center; letter-spacing: .1px; }
.hero-principles { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); position: relative; padding: 24px 0; }
.hero-principles>div { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 12px; color: #c4d1be; border-right: 1px solid var(--line); }
.hero-principles>div:first-child { justify-content: flex-start; }
.hero-principles>div:last-child { justify-content: flex-end; border-right: 0; }
.hero-principles span { font: 9px var(--mono); color: #8aaa6e; }
/* Services */
.section { padding-block: 102px; }
.section-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 46px; }
h2 { font-size: clamp(34px, 3.55vw, 49px); line-height: 1.12; letter-spacing: -2.2px; }
.section-description { color: var(--muted); font-size: 14px; line-height: 1.85; max-width: 330px; padding-bottom: 3px; }
.services { border-top: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { padding: 26px; border-radius: 8px; border: 1px solid #30402f; background: linear-gradient(145deg,#182119,#111812); position: relative; transition: transform .25s, border-color .25s; overflow: hidden; }
.service-card:hover { border-color: #637e4b; transform: translateY(-5px); }
.service-card-top { display: flex; justify-content: space-between; align-items: center; }
.service-icon { color: #b6de93; }
.service-icon .icon { width: 22px; height: 22px; }
.card-number { font: 8px var(--mono); color: #a6b69b; letter-spacing: .7px; }
.service-art { height: 158px; margin-bottom: 11px; position: relative; }
.service-card h3 { font-size: 22px; letter-spacing: -.5px; margin-bottom: 13px; }
.service-card>p { font-size: 13px; line-height: 1.85; color: #a6b29f; min-height: 89px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; padding-top: 21px; margin-top: 15px; border-top: 1px solid #2e3a2a; }
.card-tags span { font: 8px var(--mono); padding: 6px 8px; color: #becbb4; border: 1px solid #415037; border-radius: 4px; }
.mini-device { position: absolute; width: 64px; height: 114px; border: 1px solid #697d55; border-radius: 11px; background: #1d2b1d; padding: 13px 9px 8px; box-shadow: 0 9px 12px #0003; }
.mini-device>span { height: 3px; width: 14px; background: #6e8a50; display: block; position: absolute; top: 4px; left: 24px; border-radius: 4px; }
.device-back { transform: rotate(-13deg); left: calc(50% - 72px); top: 21px; }
.device-front { transform: rotate(11deg); left: calc(50% - 7px); top: 27px; background: #23361e; }
.mini-device>i { display: block; height: 41px; border-radius: 5px; background: linear-gradient(125deg, #577b38, #2a4628); }
.mini-device>b { display: block; height: 4px; width: 33px; background: #94b474; margin-top: 10px; border-radius: 2px; box-shadow: 0 8px 0 #4c623c; }
.mini-device>em { width: 15px; height: 15px; border-radius: 4px; background: #b9f480; position: absolute; bottom: 9px; right: 10px; opacity: .8; }
.code-chip { position: absolute; top: 73px; left: calc(50% + 51px); font: 17px var(--mono); color: var(--accent); padding: 7px 9px; border-radius: 5px; background: #1a2417; border: 1px solid #6e8c50; transform: rotate(-8deg); box-shadow: 0 7px 15px #0005; }
.design-board { position: absolute; left: 50%; top: 27px; transform: translateX(-50%) rotate(-5deg); width: 158px; height: 106px; border: 1px solid #5e764b; background: #1b2a1b; border-radius: 6px; padding: 14px 15px; box-shadow: 0 9px 15px #0002; }
.design-palette { display: flex; gap: 5px; }
.design-palette i { width: 19px; height: 19px; background: var(--accent); border-radius: 4px; }
.design-palette i:nth-child(2) { background: #7aa254; }
.design-palette i:nth-child(3) { background: #425b36; }
.design-headline, .design-line, .design-button { display: block; }
.design-headline { width: 74px; height: 5px; background: #90a87b; border-radius: 2px; margin-top: 13px; }
.design-line { height: 3px; width: 112px; margin-top: 7px; background: #485c3c; }
.design-button { height: 12px; width: 39px; border: 1px solid #93bd68; border-radius: 3px; margin-top: 10px; }
.design-cursor { position: absolute; font-size: 32px; color: #b4ee7c; bottom: 4px; right: 11px; line-height: 1; text-shadow: 1px 2px #101b11; }
.cursor-label { position: absolute; font-size: 6px; background: #b9f480; color: #182c13; border-radius: 3px; padding: 3px 6px; bottom: -7px; right: -34px; }
.manage-art { display: flex; flex-direction: column; padding-top: 21px; gap: 9px; align-items: center; }
.manage-row { border: 1px solid #415638; border-radius: 5px; background: #1e2d1c; display: flex; align-items: center; gap: 11px; padding: 8px 10px; width: 175px; position: relative; z-index: 1; }
.manage-row:nth-child(2) { transform: translateX(11px); }
.manage-row:nth-child(3) { transform: translateX(22px); background: #2a3b1f; border-color: #82a855; }
.manage-row>span { width: 14px; height: 14px; background: #b9f480; color: #253717; border-radius: 50%; display: grid; place-items: center; }
.manage-row .icon { width: 9px; height: 9px; stroke-width: 2.5; }
.manage-row>i { display: block; height: 3px; width: 31px; background: #4c623e; }
.manage-row small { font: 6px var(--mono); letter-spacing: .3px; color: #bad2a8; margin-left: auto; }
.manage-row .manage-active { background: transparent; border: 1px solid #b9f480; }
.manage-row .manage-active::after { content: ""; height: 4px; width: 4px; background: #b9f480; border-radius: 50%; }
.manage-line { height: 85px; width: 1px; background: #617949; position: absolute; top: 31px; left: calc(50% - 56px); transform: rotate(-18deg); }
.services-footnote { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; font-size: 11px; color: #a4b49b; }
.services-footnote span, .services-footnote a { display: flex; align-items: center; gap: 9px; }
.services-footnote .icon { width: 15px; height: 15px; color: #a3cf7c; }
.services-footnote a { color: #d0debf; }
.services-footnote a:hover { color: var(--accent); }
/* Process */
.process { background: #0e1510; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process .section-intro { margin-bottom: 53px; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.step-top { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.step-top::after { content: ""; height: 1px; flex: 1; background: #31432c; order: 1; }
.step-top .icon { order: 2; width: 16px; height: 16px; color: #789767; }
.step-number { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #4e663e; border-radius: 50%; font: 11px var(--mono); color: #bbd5a2; }
.process-grid li:last-child .step-number { color: #142210; background: var(--accent); border-color: var(--accent); }
.process-grid h3 { font-size: 19px; letter-spacing: -.45px; margin-bottom: 11px; }
.process-grid p { color: #a6b09f; font-size: 13px; line-height: 1.85; }
.step-output { display: block; color: #a6c68b; margin-top: 21px; font: 8px/1.6 var(--mono); }
/* About */
.about-grid { display: grid; grid-template-columns: .98fr 1.06fr; gap: 76px; align-items: center; }
.about-art { height: 470px; border: 1px solid #34462d; border-radius: 8px; background: radial-gradient(ellipse at 70% 20%,#3b5c2c3b,transparent 65%),#172315; position: relative; overflow: hidden; isolation: isolate; }
.about-art-grid { position: absolute; inset: 0; background-image: linear-gradient(#b9f48008 1px,transparent 1px),linear-gradient(90deg,#b9f48008 1px,transparent 1px); background-size: 54px 54px; z-index: -2; mask-image: linear-gradient(to bottom,#000,transparent); }
.about-art>img { position: absolute; width: 630px; height: 675px; max-width: none; right: -201px; top: -223px; opacity: .79; transform: rotate(-27deg); z-index: -1; }
.about-art::after { position: absolute; content: ""; inset: 0; z-index: -1; background: linear-gradient(to top,#152212 8%,transparent 70%); }
.about-art-label { position: absolute; left: 29px; top: 27px; font: 8px var(--mono); letter-spacing: 1.1px; color: #b1c898; }
.about-art-copy { position: absolute; bottom: 30px; left: 30px; right: 20px; }
.about-asterisk { display: block; color: var(--accent); font-size: 65px; line-height: 1; margin-bottom: 20px; }
.about-art-copy p { font-size: 48px; line-height: 1.05; letter-spacing: -2px; font-weight: 500; }
.about-art-copy>span:last-child { display: block; font: 7px/1.6 var(--mono); letter-spacing: 1px; color: #b1c79e; margin-top: 22px; }
.about-copy .eyebrow { font-size: 9px; }
.about-copy h2 { font-size: clamp(31px,3.2vw,43px); letter-spacing: -1.8px; margin-bottom: 26px; }
.about-copy>p:not(.eyebrow) { color: #a9b4a3; font-size: 13px; line-height: 1.9; margin-bottom: 15px; }
.about-values { display: flex; flex-wrap: wrap; gap: 9px 20px; border-top: 1px solid #2e3a29; margin-top: 23px; padding-top: 22px; }
.about-values>div { display: flex; align-items: center; gap: 6px; font-size: 10px; color: #c4d3b7; }
.about-values .icon { width: 12px; height: 12px; color: #b2d48f; }
.about-copy>.text-link { margin-top: 26px; font-size: 12px; color: #d6e6c8; }
/* Contact */
.contact-section { padding: 0 0 84px; }
.contact-panel { display: grid; grid-template-columns: 1.3fr 1fr; gap: 65px; background: #182316; border: 1px solid #3e5331; border-radius: 9px; padding: 54px; position: relative; isolation: isolate; overflow: hidden; }
.contact-decoration { position: absolute; top: -280px; left: -285px; width: 650px; pointer-events: none; opacity: .12; transform: rotate(47deg); z-index: -1; }
.contact-intro .eyebrow { font-size: 8px; letter-spacing: 1px; }
.contact-intro h2 { margin: 25px 0 18px; font-size: clamp(38px,3.8vw,54px); line-height: 1.08; letter-spacing: -2.4px; }
.contact-intro h2 span { color: var(--accent); }
.contact-intro>p:not(.eyebrow) { max-width: 290px; color: #afc0a2; font-size: 12px; line-height: 1.8; }
.contact-intro .button { margin-top: 26px; }
.contact-details { border-left: 1px solid #3c4b31; padding-left: 46px; }
.contact-detail+.contact-detail { border-top: 1px solid #35442c; margin-top: 22px; padding-top: 22px; }
.detail-label { display: flex; align-items: center; gap: 8px; font: 8px/1.5 var(--mono); color: #afc49c; letter-spacing: 1px; margin-bottom: 10px; }
.detail-label .icon { width: 14px; height: 14px; }
.email-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.email-row>a { font-size: clamp(16px,1.7vw,23px); letter-spacing: -.6px; white-space: nowrap; }
.email-row>a:hover { color: var(--accent); }
.copy-email { border: 1px solid #526242; border-radius: 4px; width: 32px; height: 32px; background: transparent; display: grid; place-items: center; color: #bddba2; flex-shrink: 0; }
.copy-email .icon { width: 14px; height: 14px; }
.copy-email:hover { background: #b9f4801a; }
.detail-note { display: block; font-size: 9px; line-height: 1.7; color: #afbea4; margin-top: 5px; }
.contact-detail address { font-style: normal; font-size: 12px; line-height: 1.8; color: #d5e0ce; }
.phone-placeholder { font-size: 14px; color: #d9e4d1; }
/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 35px 0 24px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 27px; }
.footer-top .brand-icon { height: 31px; width: 31px; }
.footer-top .wordmark { font-size: 21px; }
.footer-top .brand-llc { font-size: 8px; }
.footer-top>p { color: #a7b79e; font-size: 11px; margin-right: auto; margin-left: 38px; }
.back-top { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #394830; border-radius: 50%; }
.back-top .icon { width: 14px; height: 14px; transform: rotate(180deg); }
.back-top:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 20px; border-top: 1px solid #273321; }
.footer-bottom p { font-size: 9px; color: #9cab92; }
.footer-bottom nav { display: flex; gap: 24px; font-size: 10px; color: #c1cfb6; }
.footer-bottom nav a:hover, .footer-bottom nav a[aria-current="page"] { color: var(--accent); }
.trademark-note { font-size: 8px; line-height: 1.8; color: #92a087; margin-top: 15px; max-width: 710px; }
.toast { position: fixed; z-index: 80; background: var(--accent); border-radius: 6px; color: #172412; box-shadow: 0 8px 30px #0007; padding: 12px 20px; bottom: 26px; left: 50%; transform: translate(-50%,15px); opacity: 0; pointer-events: none; font-size: 13px; transition: opacity .2s,transform .2s; text-align: center; max-width: calc(100% - 32px); width: max-content; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }
/* Legal pages */
.back-home { display: inline-flex; gap: 11px; align-items: center; font-size: 12px; color: #bbcfaa; }
.back-home .icon { transform: rotate(180deg); width: 16px; height: 16px; }
.back-home:hover { color: var(--accent); }
.legal-hero { padding: 75px 0 47px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(43px,5.5vw,76px); letter-spacing: -3px; line-height: 1.1; }
.legal-summary { margin-top: 24px; max-width: 640px; color: #b1bdaa; font-size: 16px; line-height: 1.8; }
.legal-date { display: flex; flex-wrap: wrap; align-items: center; gap: 0 5px; color: #a8ba9d; font: 10px/1.8 var(--mono); margin-top: 27px; }
.legal-date>span { margin: 0 10px; color: #657e50; }
.legal-layout { display: grid; grid-template-columns: 267px 1fr; gap: 74px; padding: 51px 0 80px; align-items: start; }
.legal-sidebar { position: sticky; top: calc(var(--header-height) + 32px); }
.toc-label { display: block; color: #b5d796; font: 9px var(--mono); letter-spacing: 1.3px; margin-bottom: 17px; }
.legal-sidebar nav a { display: flex; gap: 12px; color: #b0bfa5; font-size: 11px; line-height: 1.6; padding: 8px 0; }
.legal-sidebar nav a:hover { color: var(--accent); }
.legal-sidebar nav a>span { color: #a1b68e; font: 9px/1.9 var(--mono); }
.legal-question { display: block; position: relative; padding: 20px 17px; background: #162012; border: 1px solid #354a2a; border-radius: 5px; font-size: 10px; line-height: 1.8; color: #a4bd92; margin-top: 28px; }
.legal-question>.icon { position: absolute; right: 16px; bottom: 22px; width: 17px; height: 17px; color: var(--accent); }
.legal-question>strong { display: block; font-weight: 500; font-size: 14px; color: #e2eed8; margin-top: 5px; }
.legal-content { min-width: 0; }
.legal-section+.legal-section { margin-top: 35px; padding-top: 35px; border-top: 1px solid #273422; }
.legal-heading { display: flex; align-items: baseline; gap: 13px; margin-bottom: 21px; }
.legal-heading>span { font: 11px var(--mono); color: var(--accent); }
.legal-heading h2 { font-size: 25px; line-height: 1.3; letter-spacing: -.6px; }
.legal-section p { font-size: 13px; line-height: 1.95; color: #b5c0ae; margin-top: 13px; }
.legal-section h3 { font-size: 15px; line-height: 1.5; color: #d4e1c9; margin-top: 21px; }
.legal-section strong { font-weight: 500; color: #e1ebd9; }
.legal-section p a { color: var(--accent); text-underline-offset: 4px; text-decoration: underline; overflow-wrap: anywhere; }
.legal-contact { display: flex; flex-direction: column; gap: 9px; background: #151f12; border: 1px solid #3a4f2c; border-radius: 5px; padding: 24px; margin-top: 25px; font-size: 14px; }
.legal-contact>a { color: var(--accent); }
.legal-contact>address { font-style: normal; color: #b1c49e; font-size: 12px; }
.legal-back { display: flex; gap: 10px; align-items: center; color: #c7e3b0; font-size: 12px; margin-top: 38px; }
.legal-back .icon { transform: rotate(180deg); width: 16px; height: 16px; }
/* Progressive enhancement. Content is never hidden while waiting for JavaScript. */
@keyframes soft-appear { from { opacity: .15; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) { .just-revealed { animation: soft-appear .65s ease-out both; } }
/* Responsive layouts */
@media (min-width: 1600px) { .hero-main { min-height: 735px; } .hero-visual { min-height: 680px; } }
@media (max-width: 1199px) {
  .container { width: calc(100% - 72px); }
  .hero h1 { font-size: clamp(59px,7.1vw,86px); letter-spacing: -4.6px; }
  .hero-copy { padding-block: 48px; }
  .hero-description { max-width: 430px; font-size: 13px; }
  .hero-actions { gap: 19px; flex-wrap: wrap; }
  .hero-actions .button { padding-inline: 17px; gap: 18px; }
  .hero-main { min-height: 646px; grid-template-columns: 1.15fr 1fr; }
  .hero-visual { min-height: 620px; margin-right: -15px; }
  .phone-device { left: 82px; top: 60px; width: 251px; height: 521px; border-radius: 40px; }
  .phone-screen { padding-inline: 15px; }
  .app-header { margin-top: 15px; }
  .app-overline { margin-top: 20px; }
  .app-heading { font-size: 24px; }
  .app-feature { height: 159px; margin-top: 16px; }
  .app-mini-cards>div { padding: 9px 8px; }
  .app-bottom-nav { margin-top: 11px; }
  .hero-fern { left: -100px; width: 635px; height: 680px; top: -10px; }
  .orbit-one { left: -35px; width: 490px; height: 490px; top: 75px; }
  .orbit-two { left: -90px; width: 600px; height: 600px; top: 20px; }
  .floating-note { left: -4px; top: 472px; padding: 14px; gap: 9px; }
  .floating-note strong { font-size: 11px; }
  .note-spark { font-size: 25px; }
  .visual-label { right: -9px; top: 36px; font-size: 7px; }
  .hero-visual figcaption { left: 0; bottom: 8px; font-size: 6px; }
  .platforms { gap: 19px; }
  .platform-label { padding-right: 16px; font-size: 7px; }
  .platform-item { font-size: 11px; gap: 7px; }
  .platform-item small { font-size: 8px; }
  .hero-principles>div { font-size: 10px; gap: 10px; }
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 19px; }
  .service-card>p { font-size: 11px; min-height: 100px; }
  .section { padding-block: 80px; }
  .section-description { max-width: 290px; font-size: 12px; }
  .about-grid { gap: 46px; }
  .about-art { height: 456px; }
  .about-art-copy p { font-size: 42px; }
  .contact-panel { padding: 40px; gap: 32px; }
  .contact-details { padding-left: 32px; }
  .legal-layout { gap: 45px; grid-template-columns: 230px 1fr; }
}
@media (max-width: 991px) {
  :root { --header-height: 76px; }
  .container { width: calc(100% - 48px); }
  .desktop-nav { gap: 21px; margin-right: 0; }
  .wordmark { font-size: 22px; }
  .brand-icon { width: 35px; height: 35px; }
  .header-inner { gap: 21px; }
  .hero-main { grid-template-columns: 1.08fr 1fr; min-height: 617px; }
  .hero h1 { font-size: clamp(51px,6.8vw,67px); letter-spacing: -3.8px; }
  .hero-copy .eyebrow { font-size: 7px; letter-spacing: .6px; gap: 7px; }
  .hero-description { font-size: 12px; margin-top: 21px; }
  .hero-actions { gap: 18px; margin-top: 25px; flex-direction: column; align-items: flex-start; }
  .hero-actions .button { min-height: 48px; font-size: 12px; padding-block: 13px; }
  .platforms { margin-top: 28px; gap: 14px; }
  .platform-label { display: none; }
  .hero-visual { margin-right: -15px; min-height: 604px; }
  .phone-device { transform: rotate(8deg) scale(.9); transform-origin: top left; left: 57px; top: 72px; }
  .hero-fern { left: -150px; top: -3px; }
  .orbit-one { width: 440px; height: 440px; left: -55px; top: 97px; }
  .orbit-two { width: 570px; height: 570px; left: -120px; top: 32px; }
  .floating-note { top: 440px; left: -16px; padding: 12px; transform: rotate(-4deg) scale(.9); transform-origin: left; }
  .hero-visual figcaption { bottom: 38px; font-size: 5.5px; left: -5px; right: -5px; }
  .visual-label { top: 41px; right: -5px; font-size: 6px; }
  .hero-principles>div { font-size: 9px; gap: 7px; }
  .section-intro { gap: 28px; }
  h2 { font-size: 35px; }
  .section-description { max-width: 260px; }
  .service-grid { gap: 12px; }
  .service-card { padding: 20px 17px; }
  .service-card h3 { font-size: 17px; }
  .service-card>p { font-size: 11px; min-height: 119px; }
  .service-art { transform: scale(.9); }
  .card-number { font-size: 6px; }
  .card-tags { gap: 5px; }
  .card-tags span { font-size: 6px; padding: 6px; }
  .process-grid { gap: 20px; }
  .process-grid h3 { font-size: 17px; }
  .process-grid p { font-size: 11px; }
  .step-output { font-size: 7px; }
  .about-grid { gap: 35px; }
  .about-art { height: 483px; }
  .about-art-copy p { font-size: 36px; }
  .about-art-copy { left: 24px; }
  .about-art-copy>span:last-child { font-size: 6px; }
  .about-copy .eyebrow { font-size: 7px; letter-spacing: .7px; }
  .about-copy h2 { font-size: 29px; letter-spacing: -1.2px; }
  .about-copy>p:not(.eyebrow) { font-size: 12px; }
  .about-values { gap: 10px 14px; }
  .about-values>div { font-size: 9px; }
  .contact-panel { padding: 34px; grid-template-columns: 1.1fr 1fr; gap: 27px; }
  .contact-intro h2 { font-size: 39px; letter-spacing: -1.8px; }
  .contact-intro .eyebrow { font-size: 6px; letter-spacing: .6px; }
  .contact-intro .button { font-size: 10px; gap: 17px; padding-inline: 15px; }
  .contact-details { padding-left: 24px; }
  .email-row>a { font-size: 16px; letter-spacing: -.4px; }
  .copy-email { width: 28px; height: 28px; }
  .detail-note { font-size: 8px; }
  .contact-detail address { font-size: 11px; }
  .contact-section { padding-bottom: 65px; }
  .legal-layout { gap: 33px; grid-template-columns: 195px 1fr; }
  .legal-sidebar nav a { font-size: 10px; }
}
@media (max-width: 767px) {
  :root { --header-height: 72px; }
  .container { width: calc(100% - 40px); }
  .desktop-nav, .nav-contact { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 15px; }
  .hero-main { display: flex; flex-direction: column; min-height: auto; }
  .hero-copy { padding: 56px 0 17px; width: 100%; }
  .hero-copy .eyebrow { font-size: 8px; letter-spacing: 1px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(57px,11.5vw,83px); letter-spacing: -4px; }
  .hero-description { font-size: 14px; max-width: 470px; line-height: 1.85; margin-top: 23px; }
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
  .hero-actions .text-link { font-size: 11px; }
  .hero-actions .button { font-size: 12px; min-height: 49px; }
  .platforms { margin-top: 29px; gap: 26px; }
  .platform-item { font-size: 12px; gap: 9px; }
  .platform-item small { font-size: 8px; }
  .platform-label { display: block; font-size: 6px; padding-right: 23px; }
  .hero-visual { width: 390px; max-width: 100%; margin-right: 0; min-height: 590px; margin-top: 8px; }
  .phone-device { transform: rotate(8deg); left: 81px; top: 42px; }
  .hero-fern { left: -121px; top: -69px; width: 650px; height: 696px; }
  .orbit-one { width: 450px; height: 450px; left: -30px; top: 75px; }
  .orbit-two { width: 580px; height: 580px; left: -95px; top: 10px; }
  .floating-note { top: 441px; left: 1px; transform: rotate(-4deg); padding: 13px; }
  .floating-note strong { font-size: 12px; }
  .visual-label { right: 3px; top: 6px; font-size: 6px; }
  .hero-visual figcaption { bottom: 0; left: 0; right: 0; font-size: 6px; }
  .hero-principles { margin-top: 18px; padding-block: 18px; gap: 9px; }
  .hero-principles>div { display: block; font-size: 8px; line-height: 1.6; padding-right: 8px; }
  .hero-principles span { display: block; font-size: 8px; margin-bottom: 6px; }
  .hero-principles>div:last-child { padding-right: 0; }
  .section { padding-block: 64px; }
  .section-intro { display: block; margin-bottom: 31px; }
  .section-eyebrow { font-size: 9px; margin-bottom: 19px; }
  h2 { font-size: clamp(33px,6.5vw,44px); letter-spacing: -1.6px; }
  .section-description { max-width: 460px; margin-top: 20px; font-size: 13px; line-height: 1.85; }
  .service-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-card { padding: 26px; }
  .service-art { height: 155px; transform: none; }
  .service-card-top { margin-bottom: 5px; }
  .card-number { font-size: 9px; }
  .service-card h3 { font-size: 25px; margin-bottom: 12px; }
  .service-card>p { font-size: 13px; min-height: 0; line-height: 1.85; }
  .card-tags { margin-top: 19px; padding-top: 19px; gap: 9px; }
  .card-tags span { font-size: 9px; padding: 7px 9px; }
  .services-footnote { align-items: flex-start; gap: 16px; flex-direction: column; font-size: 10px; }
  .process .section-intro { margin-bottom: 32px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 35px 25px; }
  .step-top { margin-bottom: 20px; }
  .process-grid h3 { font-size: 19px; }
  .process-grid p { font-size: 12px; }
  .step-output { font-size: 8px; margin-top: 15px; }
  .about-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-art { height: 400px; }
  .about-art>img { right: -128px; top: -255px; width: 650px; height: 697px; }
  .about-art-copy { bottom: 27px; left: 27px; }
  .about-art-copy p { font-size: 46px; }
  .about-art-copy>span:last-child { font-size: 7px; }
  .about-copy h2 { font-size: clamp(31px,6.5vw,42px); }
  .about-copy .eyebrow { font-size: 8px; letter-spacing: 1px; }
  .about-copy>p:not(.eyebrow) { font-size: 13px; }
  .about-values { gap: 13px 18px; }
  .about-values>div { font-size: 10px; }
  .about-copy>.text-link { font-size: 13px; }
  .contact-panel { display: block; padding: 30px 25px; }
  .contact-intro .eyebrow { font-size: 7px; letter-spacing: .75px; }
  .contact-intro h2 { font-size: clamp(36px,7.8vw,49px); line-height: 1.1; }
  .contact-intro>p:not(.eyebrow) { font-size: 13px; max-width: 340px; }
  .contact-intro .button { font-size: 12px; gap: 22px; padding-inline: 17px; }
  .contact-details { border-left: 0; border-top: 1px solid #3c4b31; padding-left: 0; padding-top: 30px; margin-top: 34px; }
  .email-row { justify-content: flex-start; gap: 18px; }
  .email-row>a { font-size: 23px; letter-spacing: -.5px; }
  .copy-email { height: 36px; width: 36px; }
  .detail-label { font-size: 9px; }
  .detail-note { font-size: 10px; }
  .contact-detail address { font-size: 13px; }
  .phone-placeholder { font-size: 15px; }
  .contact-section { padding-bottom: 52px; }
  .site-footer { padding-top: 27px; }
  .footer-top { gap: 15px; flex-wrap: wrap; position: relative; margin-bottom: 23px; }
  .footer-top>p { margin: 0; flex-basis: 100%; font-size: 10px; }
  .back-top { position: absolute; right: 0; top: 2px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
  .footer-bottom nav { font-size: 10px; gap: 21px; }
  .footer-bottom p { font-size: 9px; }
  .trademark-note { font-size: 8px; line-height: 1.85; margin-top: 21px; }
  .back-home { font-size: 11px; }
  .legal-hero { padding: 49px 0 35px; }
  .legal-hero h1 { font-size: clamp(37px,8vw,59px); letter-spacing: -2px; }
  .legal-summary { margin-top: 20px; font-size: 14px; }
  .legal-date { font-size: 8px; row-gap: 5px; margin-top: 20px; }
  .legal-date>span { margin: 0 5px; }
  .legal-layout { display: block; padding: 32px 0 55px; }
  .legal-sidebar { position: static; border-bottom: 1px solid var(--line); margin-bottom: 37px; padding-bottom: 29px; }
  .legal-sidebar nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 17px; }
  .toc-label { grid-column: 1/-1; margin-bottom: 13px; }
  .legal-sidebar nav a { font-size: 10px; gap: 8px; }
  .legal-question { display: none; }
  .legal-heading { gap: 11px; }
  .legal-heading h2 { font-size: 23px; letter-spacing: -.5px; }
  .legal-section p { font-size: 13px; }
  .legal-section+.legal-section { margin-top: 29px; padding-top: 29px; }
}
@media (max-width: 374px) {
  .container { width: calc(100% - 32px); }
  .hero-copy .eyebrow { font-size: 6px; letter-spacing: .85px; }
  .hero h1 { font-size: 53px; letter-spacing: -3.6px; }
  .hero-description { font-size: 13px; }
  .hero-actions { gap: 18px; }
  .hero-actions .text-link { font-size: 12px; }
  .platforms { gap: 18px; }
  .platform-label { display: none; }
  .hero-visual { min-height: 545px; }
  .phone-device { transform: rotate(8deg) scale(.9); transform-origin: top left; left: 45px; top: 49px; }
  .hero-fern { left: -170px; top: -55px; width: 605px; height: 648px; }
  .floating-note { top: 422px; left: -2px; transform: rotate(-4deg) scale(.87); transform-origin: left; }
  .hero-visual figcaption { font-size: 5.1px; }
  .visual-label { right: 0; font-size: 5.8px; }
  .hero-principles>div { font-size: 7px; }
  h2 { font-size: 30px; }
  .service-card { padding: 22px; }
  .service-card h3 { font-size: 22px; }
  .process-grid { gap: 31px 16px; }
  .process-grid h3 { font-size: 17px; }
  .process-grid p { font-size: 11px; }
  .step-output { font-size: 7px; }
  .about-art-copy p { font-size: 40px; }
  .about-copy h2 { font-size: 28px; }
  .contact-panel { padding: 28px 20px; }
  .contact-intro h2 { font-size: 33px; }
  .contact-intro .eyebrow { font-size: 6px; }
  .email-row { gap: 10px; }
  .email-row>a { font-size: 19px; }
  .detail-note { font-size: 9px; }
  .legal-sidebar nav { grid-template-columns: 1fr; }
  .legal-hero h1 { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
  :root { --bg: #fff; --text: #111; --muted: #333; --accent: #234e15; --line: #ddd; }
  body { background: #fff; color: #111; }
  .site-header { position: static; background: #fff; }
  .site-footer, .legal-sidebar, .skip-link, .back-home, .back-top, .copy-email, .toast { display: none; }
  .container { width: 100%; }
  .legal-layout { display: block; }
  .legal-hero { padding-top: 24px; }
  .legal-section p, .legal-summary, .legal-date, .legal-contact>address { color: #222; }
  .legal-section { break-inside: avoid; }
  .legal-contact { background: #f6f6f6; }
}
