/* Conduit Cards — spacing, geometry & effects.
   The card canvas is a LinkedIn / PDF portrait: 1080 × 1350 (4:5).
   Content lives in a ~74px side gutter. */

:root {
  /* Canvas */
  --card-w: 1080px;
  --card-h: 1350px;
  --card-gutter: 74px;      /* left/right content inset */
  --card-top: 65px;         /* header baseline */
  --card-bottom: 65px;      /* footer inset from bottom */

  /* Landscape slide canvas (16:9) */
  --slide-w: 1920px;
  --slide-h: 1080px;
  --slide-gutter: 80px;     /* left/right content inset */
  --slide-top: 56px;        /* logo baseline */

  /* Tech card (landscape slide) */
  --techcard-w: 337.6px;
  --techcard-h: 418px;
  --techcard-radius: 12px;
  --techcard-pad: 24px;

  /* Spacing scale (used between card blocks) */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 20px;
  --space-4: 32px;
  --space-5: 52px;
  --space-6: 72px;

  /* Signature marks */
  --tick-w: 36px;           /* teal title tick */
  --tick-h: 1px;
  --divider-h: 15px;        /* header vertical divider */

  /* Geometry */
  --radius-callout: 0px;    /* stat callout is a sharp hairline box */
  --border-hairline-w: 1px;

  /* Decorative orb */
  --orb-opacity: 0.55; /* @kind other */

  /* Motion (carousel / interactions) */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --dur-fast: 160ms; /* @kind other */
  --dur-slide: 420ms; /* @kind other */
}
