/* Self-hosted fonts — no third-party request chain */
@font-face{font-family:'Inter';font-style:normal;font-weight:400 700;font-display:swap;src:url('fonts/Inter-400-700-normal.woff2') format('woff2')}
@font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:400 500;font-display:swap;src:url('fonts/JetBrainsMono-400-normal.woff2') format('woff2')}

/* ===========================================================
   I Totally Need That LLC — shared styles
   Light monochrome. The gallery is a light-theme port of the
   radial fan carousel; see the .appstack block below.
   =========================================================== */
:root{
  --paper:#ffffff;
  --field:#e6e8ea;          /* the gallery band — set to #fff to flatten */
  --surface-2:#f4f5f6;      /* card interior */
  --ink:#0e1013;
  --ink-dim:#585e66;
  --ink-faint:#8b9098;
  --line:rgba(16,20,26,.10);
  --line-strong:rgba(16,20,26,.16);
  --accent:#12151a;         /* the reference is monochrome — ink, not blue */
  --max:1180px;
  --mx:56px;
  --gap:104px;
  --ease:cubic-bezier(0.22,1,0.36,1);
  --font:'Inter',system-ui,-apple-system,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;
}

*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  background:var(--paper);color:var(--ink);font-family:var(--font);
  font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
::selection{background:var(--ink);color:#fff}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

.wrap{max-width:var(--max);margin:0 auto;padding:0 var(--mx)}
.section-pad{padding:var(--gap) 0}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.label{display:inline-block;font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-faint);margin-bottom:18px}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in-view{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}

/* ---------- Header ---------- */
.site-head{position:sticky;top:0;z-index:200;background:rgba(255,255,255,.88);backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.site-head .wrap{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{font-family:var(--mono);font-size:15px;letter-spacing:.14em;font-weight:500}
.site-nav{display:flex;gap:26px;font-family:var(--mono);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-dim)}
.site-nav a{transition:color .25s var(--ease)}
.site-nav a:hover{color:var(--ink)}

/* ---------- Hero ---------- */
.hero{padding:clamp(72px,12vw,130px) 0 clamp(56px,8vw,90px)}
.hero h1{font-size:clamp(38px,6.4vw,68px);line-height:1.04;letter-spacing:-.035em;font-weight:600;max-width:16ch}
.hero p{margin-top:26px;max-width:52ch;font-size:clamp(17px,2vw,19px);color:var(--ink-dim)}
.hero-meta{margin-top:40px;display:flex;flex-wrap:wrap;gap:10px 28px;font-family:var(--mono);font-size:12px;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-faint)}

/* ---------- App stack gallery (radial fan, looping) ------------------------
   Light-theme port of the Deus Group component, pulled back toward the
   reference it was based on (Orbit 5-01 LITE): monochrome, soft shadows, and
   the grey wheel the cards rotate on.

   Cards share one pivot far below the stage, so a plain rotate() swings each
   along the arc and tilts it — the whole stack turns as one wheel. Stacking
   order runs left-to-right (each card laps the one before it, including the
   centre), and the strip wraps, so there is no first or last card.
   Tunables: --as-w card width, --as-ratio media aspect, --as-step deg per card,
             --as-visible cards shown either side of centre.
--------------------------------------------------------------------------- */
.gallery{background:var(--field);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:clamp(56px,8vw,88px) 0 0}
.gallery .section-head{text-align:center;margin-bottom:clamp(28px,5vw,48px)}
.gallery .section-head h2{font-size:clamp(26px,4vw,40px);letter-spacing:-.03em;font-weight:600}
.gallery .section-head p{margin-top:12px;color:var(--ink-dim);font-size:16px}

.appstack{--as-w:212px;--as-ratio:9/16;--as-step:10;--as-visible:3;--as-elastic:cubic-bezier(.34,1.36,.5,1);
          --as-h:calc(var(--as-w) * 16 / 9)}
.appstack-stage{
  position:relative;height:calc(var(--as-h) * 1.38);
  overflow:hidden;touch-action:pan-y;isolation:isolate;
  /* a drag across the fan should move it, not select text or lift an image */
  -webkit-user-select:none;user-select:none;
  /* overflow:hidden clips the fan flat at the bottom and both sides. Fading the
     mask out before those lines lets the cards dissolve into the band instead
     of meeting a hard edge. Two gradients intersected — sides, then bottom;
     the top is left alone, the arc already tapers there. */
  --as-fade-x:10%;
  --as-fade-y:16%;
  -webkit-mask-image:
    linear-gradient(to right,transparent 0,#000 var(--as-fade-x),#000 calc(100% - var(--as-fade-x)),transparent 100%),
    linear-gradient(to bottom,#000 calc(100% - var(--as-fade-y)),transparent 100%);
  mask-image:
    linear-gradient(to right,transparent 0,#000 var(--as-fade-x),#000 calc(100% - var(--as-fade-x)),transparent 100%),
    linear-gradient(to bottom,#000 calc(100% - var(--as-fade-y)),transparent 100%);
  -webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;
  -webkit-mask-composite:source-in;mask-composite:intersect;
}
.appstack-card{
  position:absolute;left:50%;top:4%;
  width:var(--as-w);aspect-ratio:var(--as-ratio);
  margin:0 0 0 calc(var(--as-w) / -2);   /* centre the card on the stage axis */
  padding:0;border:none;background:none;cursor:pointer;
  transition:transform .8s var(--as-elastic),opacity .55s var(--ease);
  will-change:transform;
}
.appstack-inner{
  position:absolute;inset:0;overflow:hidden;
  border-radius:20px;background:var(--surface-2);
  border:1px solid var(--line-strong);
  box-shadow:0 26px 48px -28px rgba(18,22,28,.42),0 3px 10px -6px rgba(18,22,28,.22);
  transition:border-color .5s var(--ease),box-shadow .6s var(--ease);
}
.appstack-card[aria-current="true"] .appstack-inner{border-color:rgba(16,20,26,.42)}
.appstack-card:focus-visible .appstack-inner{outline:2px solid var(--accent);outline-offset:3px}
/* Phone captures are taller than the 9:16 card, so cover crops them. Biasing the
   crop up the frame takes it out of the status bar rather than splitting it
   evenly and slicing through the app's own top bar. */
.appstack-card img,.appstack-card video{width:100%;height:100%;object-fit:cover;object-position:center 33%;display:block;-webkit-user-drag:none}

/* Treatment 1 — full-bleed screenshot. Treatment 2 — icon on a tinted plate.
   Treatment 3 — the placeholder frame, for products with no art yet. */
.appstack-brand{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:22px;
  background:linear-gradient(165deg,#fbfbfc 0%,#e9ebee 100%);
}
.appstack-brand img{width:34%;height:auto;border-radius:22%;box-shadow:0 12px 26px -14px rgba(18,22,28,.5)}
.appstack-brand span{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-faint)}
.appstack-ph{
  position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
  background:repeating-linear-gradient(0deg,rgba(16,20,26,.035) 0 1px,transparent 1px 32px),linear-gradient(160deg,#f3f4f5,#dde0e3);
  color:var(--ink-faint);font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;text-align:center;padding:0 14px;
}
.appstack-ph .plus{font-size:24px;color:var(--line-strong);line-height:1}

/* caption tucks up into the pocket the arc leaves beneath the centre card */
.appstack-info{position:relative;z-index:70;max-width:560px;margin:-54px auto 0;text-align:center;min-height:118px;
  transition:opacity .28s var(--ease),transform .28s var(--ease)}
.appstack-info.swapping{opacity:0;transform:translateY(8px)}
.appstack-info h3{font-size:clamp(22px,3vw,30px);font-weight:600;letter-spacing:-.02em;margin-bottom:10px}
.appstack-info p{color:var(--ink-dim);font-size:16px;line-height:1.6;margin:0 auto;max-width:46ch}
.appstack-more{display:inline-flex;align-items:center;gap:6px;margin-top:14px;font-family:var(--mono);font-size:13px;letter-spacing:.08em;color:var(--ink-dim);border-bottom:1px solid var(--line-strong);padding-bottom:2px;transition:gap .3s var(--ease),color .3s var(--ease)}
.appstack-more:hover{gap:12px;color:#0b0d10}
.appstack-more[hidden]{display:none}

.appstack-nav{display:flex;align-items:center;justify-content:center;gap:22px;margin-top:20px}
.appstack-arrow{width:46px;height:46px;flex:none;background:transparent;border:1px solid var(--line-strong);color:var(--ink);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s var(--ease)}
.appstack-arrow:hover{border-color:var(--ink);background:rgba(16,20,26,.05)}
.appstack-arrow:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.appstack-dots{display:flex;gap:9px}
.appstack-dot{width:7px;height:7px;padding:0;border:none;border-radius:50%;background:rgba(16,20,26,.22);cursor:pointer;transition:all .3s var(--ease)}
.appstack-dot[aria-current="true"]{background:var(--accent);transform:scale(1.45)}
.appstack-dot:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

/* Chrome strip along the bottom edge of the field, as in the reference */
.appstack-chrome{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  margin-top:clamp(38px,6vw,60px);padding:14px 0 16px;border-top:1px solid var(--line);
  font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-faint);
}
@media(max-width:640px){ .appstack-chrome span:nth-child(2){display:none} }

/* Mobile: bigger hero card, only its two neighbours, deliberately overflowing */
@media(max-width:820px){
  .appstack{--as-w:58vw;--as-step:13;--as-visible:1}
  /* shallower arc needs far less headroom than the 7-card desktop fan, and the
     stage breaks out of the wrap so the two neighbours run off the screen edge
     rather than being cut off at the gutter */
  /* The shallower stage leaves only ~9% of its height below the centre card, so
     the desktop bottom fade would eat into the focused card. Narrow it. */
  .appstack-stage{height:calc(var(--as-h) * 1.15);width:100vw;margin-left:calc(50% - 50vw);
    --as-fade-y:8%}
  .appstack-info{margin-top:-18px;min-height:140px}
}
@media(max-width:420px){ .appstack{--as-w:60vw;--as-step:14} }

/* ---------- Products ---------- */
.products h2{font-size:clamp(26px,4vw,40px);letter-spacing:-.03em;font-weight:600}
.products > .wrap > p{margin-top:12px;color:var(--ink-dim);max-width:54ch}
.product-list{margin-top:clamp(32px,5vw,52px);border-top:1px solid var(--line)}
.product{display:grid;grid-template-columns:64px 1fr auto;align-items:center;gap:24px;
  padding:26px 0;border-bottom:1px solid var(--line);transition:background .3s var(--ease)}
a.product:hover{background:rgba(16,20,26,.025)}
.product-icon{width:56px;height:56px;border-radius:14px;overflow:hidden;border:1px solid var(--line);
  background:var(--surface-2);display:flex;align-items:center;justify-content:center;
  font-family:var(--mono);font-size:19px;color:var(--ink-faint)}
.product-icon img{width:100%;height:100%;object-fit:cover}
.product-body h3{font-size:19px;font-weight:600;letter-spacing:-.01em}
.product-body p{margin-top:4px;color:var(--ink-dim);font-size:15.5px;max-width:60ch}
.product-meta{display:flex;align-items:center;gap:18px;font-family:var(--mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-faint);white-space:nowrap}
.product-meta .go{color:var(--ink);transition:transform .3s var(--ease)}
a.product:hover .go{transform:translateX(4px)}

@media(max-width:640px){
  .product{grid-template-columns:48px 1fr;gap:16px}
  .product-icon{width:44px;height:44px;border-radius:11px}
  .product-meta{grid-column:2;justify-content:flex-start}
}

/* ---------- Product pages (/voxelfall/, /maxmypoints/, /notedove/) --------
   One layout shared by every product page on this domain. Each product keeps
   its own accent via --accent-prod, set inline on <body>.
--------------------------------------------------------------------------- */
.back{display:inline-block;font-family:var(--mono);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-faint);transition:color .25s var(--ease)}
.back:hover{color:var(--ink)}

.prod-hero{padding:clamp(40px,6vw,64px) 0 clamp(40px,6vw,60px)}
.prod-id{display:flex;align-items:center;gap:20px;margin-top:28px}
.prod-id .prod-icon{width:76px;height:76px;flex:none;border-radius:18px;overflow:hidden;border:1px solid var(--line);background:var(--surface-2)}
.prod-id .prod-icon img{width:100%;height:100%;object-fit:cover}
.prod-id h1{font-size:clamp(32px,5vw,50px);line-height:1.05;letter-spacing:-.035em;font-weight:600}
.prod-tag{margin-top:6px;color:var(--ink-dim);font-size:clamp(16px,2vw,19px)}
.prod-meta{margin-top:26px;display:flex;flex-wrap:wrap;gap:10px 12px}
.prod-meta span{font-family:var(--mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-dim);border:1px solid var(--line-strong);padding:6px 12px}
.prod-meta span.live{border-color:var(--accent-prod,var(--accent));color:var(--accent-prod,var(--accent))}
.prod-lede{margin-top:30px;max-width:60ch;font-size:clamp(17px,2vw,19px)}
.prod-links{margin-top:26px;display:flex;flex-wrap:wrap;gap:10px 24px}
.prod-links a{font-family:var(--mono);font-size:13px;letter-spacing:.06em;border-bottom:1px solid var(--line-strong);padding-bottom:3px;transition:border-color .3s var(--ease)}
.prod-links a:hover{border-color:var(--accent-prod,var(--ink))}

/* Screenshots. .shots-phone is a row of portrait captures; .shots-web stacks
   wide browser captures. Phone captures are cropped from the top by the
   container's aspect ratio + object-position, which drops the status bar. */
.shots{background:var(--field);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:clamp(44px,6vw,68px) 0}
.shots h2{font-size:clamp(20px,2.6vw,26px);letter-spacing:-.02em;font-weight:600;margin-bottom:8px}
.shots > .wrap > p{color:var(--ink-dim);font-size:15.5px;margin-bottom:clamp(28px,4vw,40px)}
.shots figure{margin:0}
.shots figcaption{margin-top:12px;font-family:var(--mono);font-size:11px;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-faint);text-align:center}

.shots-phone .shot-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:clamp(20px,3vw,34px);max-width:820px;margin:0 auto}
/* The frame takes its height from the capture rather than imposing a ratio, so
   a screenshot is never trimmed at the top or bottom. Captures are uniform
   414x900, so the row still lines up; one of a different shape gets its own
   height instead of being silently cropped. */
.shots-phone .frame{overflow:hidden;border-radius:22px;border:1px solid var(--line-strong);
  box-shadow:0 22px 44px -26px rgba(18,22,28,.38),0 3px 10px -6px rgba(18,22,28,.2)}
.shots-phone .frame img{width:100%;height:auto;display:block}

/* Widget captures are Home Screen crops rather than whole phones, so they get
   their own row: natural height, capped width, centred. */
.shots .widget-head{margin-top:clamp(38px,5vw,56px)}
.shots .widget-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(20px,3vw,34px)}
.shots .widget-grid figure{width:min(240px,80vw)}
.shots .widget-grid .frame{aspect-ratio:auto;overflow:hidden;border-radius:16px;border:1px solid var(--line-strong);
  box-shadow:0 18px 36px -22px rgba(18,22,28,.36),0 3px 10px -6px rgba(18,22,28,.2)}
.shots .widget-grid .frame img{width:100%;height:auto;object-fit:fill;object-position:center;display:block}

.shots-web .shot-grid{display:grid;gap:clamp(24px,3.5vw,40px)}
.shots-web .frame{overflow:hidden;border-radius:12px;border:1px solid var(--line-strong);
  box-shadow:0 22px 44px -26px rgba(18,22,28,.34),0 3px 10px -6px rgba(18,22,28,.18)}
.shots-web .frame img{width:100%;height:auto;display:block}
@media(min-width:900px){ .shots-web .shot-grid{grid-template-columns:1fr 1fr} .shots-web figure.wide{grid-column:1 / -1} }

/* Feature grid */
.facts h2{font-size:clamp(24px,3.4vw,34px);letter-spacing:-.03em;font-weight:600}
.fact-grid{margin-top:clamp(28px,4vw,44px);display:grid;gap:1px;background:var(--line);border:1px solid var(--line)}
@media(min-width:720px){ .fact-grid{grid-template-columns:1fr 1fr} }
.fact{background:var(--paper);padding:26px 24px}
.fact h3{font-size:17px;font-weight:600;letter-spacing:-.01em;margin-bottom:8px}
.fact h3 .n{font-family:var(--mono);font-size:12px;color:var(--accent-prod,var(--ink-faint));margin-right:10px}
.fact p{color:var(--ink-dim);font-size:15.5px}

/* Placeholder page for a product whose public copy isn't ready. Deliberately
   only the name, the one-liner and its status — no feature write-up. */
.coming{background:var(--field);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:clamp(56px,10vw,110px) 0;text-align:center}
.coming .kicker{display:block;font-family:var(--mono);font-size:12px;letter-spacing:.18em;
  text-transform:uppercase;color:var(--accent-prod,var(--ink-faint));margin-bottom:18px}
.coming h2{font-size:clamp(26px,4vw,38px);letter-spacing:-.03em;font-weight:600}
.coming p{margin:16px auto 0;max-width:48ch;color:var(--ink-dim);font-size:16px}

.prod-id .prod-icon.letter{display:flex;align-items:center;justify-content:center;
  font-family:var(--mono);font-size:28px;color:var(--ink-faint)}

/* Plain capability list, for products whose ABOUT bullets have no bold lead-in
   and so don't suit the .fact-grid. */
.facts .does{margin-top:clamp(26px,4vw,42px);display:grid;gap:14px 40px;list-style:none}
@media(min-width:720px){ .facts .does{grid-template-columns:1fr 1fr} }
.facts .does li{position:relative;padding-left:24px;color:var(--ink-dim);font-size:16px}
.facts .does li::before{content:"";position:absolute;left:0;top:.66em;width:10px;height:1px;
  background:var(--accent-prod,var(--ink-faint))}

.facts .prose{margin-top:20px;max-width:62ch;color:var(--ink-dim);font-size:16px}
.facts .prose + .prose{margin-top:14px}
.facts .sub{margin-top:clamp(48px,7vw,80px)}

.note{margin-top:clamp(28px,4vw,40px);padding:18px 20px;border-left:2px solid var(--line-strong);
  color:var(--ink-dim);font-size:15px;max-width:64ch}

@media(max-width:560px){
  .prod-id{gap:16px}
  .prod-id .prod-icon{width:60px;height:60px;border-radius:14px}
}

/* ---------- Contact / footer ---------- */
.contact{border-top:1px solid var(--line);background:var(--field)}
.contact h2{font-size:clamp(24px,3.4vw,34px);letter-spacing:-.03em;font-weight:600}
.contact p{margin-top:14px;color:var(--ink-dim);max-width:48ch}
.contact a.mail{display:inline-block;margin-top:22px;font-family:var(--mono);font-size:15px;letter-spacing:.04em;border-bottom:1px solid var(--line-strong);padding-bottom:3px;transition:border-color .3s var(--ease)}
.contact a.mail:hover{border-color:var(--ink)}

.site-foot{padding:40px 0;font-family:var(--mono);font-size:11.5px;letter-spacing:.08em;color:var(--ink-faint);text-transform:uppercase}
.site-foot .wrap{display:flex;flex-wrap:wrap;gap:12px 32px;justify-content:space-between}
.site-foot address{font-style:normal}

@media(max-width:820px){ :root{--mx:22px;--gap:72px} }

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto}
  .reveal{opacity:1;transform:none}
  .appstack-card{transition-duration:.001ms!important;transition-delay:0ms!important}
  .appstack-info{transition-duration:.001ms!important}
}

/* ---------------------------------------------------------------- notify form
   First form on the site. Coming-soon pages use it to collect an address while
   the product is built; without one, every visitor before launch is lost. */
.notify{max-width:32rem}
.notify-row{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1.1rem}
.notify input[type=email]{flex:1 1 16rem;min-width:0;padding:.85rem 1rem;
  border:1px solid var(--line,#d9d4cd);border-radius:.6rem;background:#fff;
  font:inherit;color:inherit}
.notify input[type=email]:focus{outline:none;border-color:var(--accent-prod,#1e1b18)}
.notify button{padding:.85rem 1.6rem;border:0;border-radius:.6rem;cursor:pointer;
  background:var(--accent-prod,#1e1b18);color:#fff;font:inherit;font-weight:600;
  letter-spacing:.02em;transition:transform .15s ease}
.notify button:hover{transform:scale(.97)}
.notify button[disabled]{opacity:.55;cursor:default;transform:none}
.notify .hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.notify-note{margin-top:.7rem;font-size:.86rem;opacity:.68}
.notify-msg{margin-top:.9rem;font-size:.95rem}
.notify-msg.err{color:#8c2f22}
