/* Shape — the brand's signature container has ONE rounded corner (top-left), taken from
   the notch of the G mark. Everything else is square or barely rounded. */
:root{
  --radius-none:0;
  --radius-xs:2px;
  --radius-sm:4px;
  --radius-md:8px;
  --radius-lg:12px;
  --radius-pill:999px;

  /* Signature shaped container: top-left only. Scale with the element. */
  --radius-container:40px 0 0 0;
  --radius-container-sm:20px 0 0 0;
  --radius-container-lg:80px 0 0 0;

  --border-width:1px; /* @kind other */
  --border-width-strong:2px; /* @kind other */

  /* Shadows are used sparingly on dark; separation comes from surface steps and hairlines.
     On light surfaces a soft warm shadow is allowed. */
  --shadow-none:none;
  --shadow-sm:0 1px 2px rgba(19,19,18,.08);
  --shadow-md:0 6px 24px rgba(19,19,18,.10);
  --shadow-lg:0 24px 64px rgba(19,19,18,.16);
  --shadow-glow:0 0 0 1px rgba(255,23,26,.32),0 8px 40px rgba(255,23,26,.22);
  --ring-focus:0 0 0 2px var(--gv-black),0 0 0 4px var(--gv-fire);

  /* Protection gradient for type over imagery (never a flat scrim) */
  --scrim-bottom:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.65) 40%,rgba(0,0,0,0) 100%); /* @kind color */
  --scrim-left:linear-gradient(to right,rgba(0,0,0,.92) 0%,rgba(0,0,0,.55) 45%,rgba(0,0,0,0) 100%); /* @kind color */

  --blur-glass:blur(16px); /* @kind other */
  --glass-dark:rgba(19,19,18,.72);
  --glass-light:rgba(250,241,236,.72);
}
