@charset "UTF-8";
/**
 * Auria — Global / Reset Styles
 * Depends on: tokens.css
 */
/**
 * Auria — Shared Mixins
 * Reusable CSS patterns extracted from across the codebase.
 * Import after _variables.scss.
 */
/* ================================================================
   FOCUS RING
   Standard keyboard-focus indicator used on buttons and links.
   ================================================================ */
/* Lighter 2px variant for inline elements */
/* ================================================================
   FLEX CENTER
   Quick centering shorthand.
   $inline: true  → inline-flex (buttons, badges)
            false → flex (block-level containers)
   ================================================================ */
/* ================================================================
   LABEL CAPS
   Uppercase UI label style reused across forms and table headers.
   ================================================================ */
/* ================================================================
   INPUT BASE
   Standard input/select/textarea base styles.
   ================================================================ */
/* ================================================================
   CARD BASE
   White bordered card used throughout My Account and forms.
   ================================================================ */
/* ================================================================
   BUTTON DISABLED STATE
   ================================================================ */
/* ================================================================
   TRANSITION — BUTTON
   The multi-property transition used on all interactive buttons.
   ================================================================ */
/* ================================================================
   ICON CIRCLE BUTTON
   Shared base for gold-circle and dark-circle icon buttons.
   ================================================================ */
/* ================================================================
   PROOF TITLE
   Repeated uppercase section label used on proof of payment blocks.
   ================================================================ */
/**
 * Auria — Breakpoints
 * Usage: @include bp(md) { ... }
 */
/* ================================================================
   MODERN RESET
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-copy);
  background-color: var(--color-white);
  min-height: 100vh;
}

/* ================================================================
   TYPOGRAPHY — BASE ELEMENTS
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-headline);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
}

h2 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-5xl));
}

h3 {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-4xl));
}

h4 {
  font-size: clamp(var(--text-lg), 2vw, var(--text-3xl));
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  line-height: var(--leading-relaxed);
  color: var(--color-copy);
}
p + p {
  margin-top: var(--space-4);
}

strong, b {
  font-weight: var(--weight-semibold);
  color: var(--color-headline);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--text-sm);
}

/* ================================================================
   LINKS
   ================================================================ */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-secondary);
}
a:focus-visible {
  outline: 2px solid var(--color-focused);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ================================================================
   LISTS
   ================================================================ */
ul, ol {
  padding-left: var(--space-6);
  line-height: var(--leading-relaxed);
}

li + li {
  margin-top: var(--space-1);
}

/* ================================================================
   IMAGES & MEDIA
   ================================================================ */
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

/* ================================================================
   FORMS (base normalisation — detailed in components.scss)
   ================================================================ */
input, textarea, select, button {
  font: inherit;
  color: inherit;
}

input, textarea, select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-300);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-copy);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
input:hover, textarea:hover, select:hover {
  border-color: var(--color-grey-400);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-focused);
  box-shadow: 0 0 0 3px rgba(2, 113, 206, 0.15);
}
input:disabled, textarea:disabled, select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-grey-100);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-grey-500);
  margin-bottom: var(--space-1);
}

/* ================================================================
   TABLES
   ================================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

th, td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-grey-200);
}

th {
  font-weight: var(--weight-semibold);
  color: var(--color-headline);
  background: var(--color-grey-100);
}

/* ================================================================
   CODE
   ================================================================ */
code, kbd, pre {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

code {
  background: var(--color-grey-100);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}

pre {
  background: var(--color-grey-100);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  border-left: 4px solid var(--color-secondary);
}

/* ================================================================
   HR / DIVIDERS
   ================================================================ */
hr {
  border: none;
  border-top: 1px solid var(--color-grey-200);
  margin: var(--space-8) 0;
}

/* ================================================================
   SECTION HEADING ALIASES
   ================================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-eyebrow, var(--color-secondary));
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-secondary);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--theme-text-headline, var(--color-headline));
}

.section-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--theme-text-muted, var(--color-text-muted));
  margin-top: var(--space-4);
}

/* ================================================================
   ACCESSIBILITY HELPERS
   ================================================================ */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  word-wrap: normal;
}

.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  z-index: var(--z-toast);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}
.skip-link:focus {
  top: var(--space-4);
}

.hover-underline {
  position: relative;
}
.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.hover-underline:hover::after {
  transform: scaleX(1);
}

.accent-rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}
.accent-rule--center {
  margin-left: auto;
  margin-right: auto;
}
/*# sourceMappingURL=global.css.map */
