
/*======================================================================
CTM PATH™ Guided Journey v6.0

Purpose
Reset all browser defaults and establish a consistent foundation.

Responsibility
• Remove browser inconsistencies
• Normalize element rendering
• Prepare premium UI foundation

======================================================================*/


/*==================================================
Universal Box Model
==================================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*==================================================
Document
==================================================*/

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    min-height: 100vh;
    overflow-x: hidden;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/*==================================================
Media
==================================================*/

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}


/*==================================================
Typography
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
small,
strong {
    margin: 0;
    padding: 0;
}


/*==================================================
Lists
==================================================*/

ul,
ol {
    list-style: none;
}


/*==================================================
Links
==================================================*/

a {
    text-decoration: none;
    color: inherit;
}


/*==================================================
Buttons
==================================================*/

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font: inherit;
}


/*==================================================
Forms
==================================================*/

input,
textarea,
select {
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    color: inherit;
}


textarea {
    resize: vertical;
}


/*==================================================
Tables
==================================================*/

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*==================================================
Fieldset
==================================================*/

fieldset {
    border: none;
}


/*==================================================
Horizontal Rule
==================================================*/

hr {
    border: none;
}


/*==================================================
Hidden
==================================================*/

[hidden] {
    display: none !important;
}


/*==================================================
Selection
==================================================*/

::selection {
    background: rgba(255,255,255,.18);
}


/*==================================================
Touch
==================================================*/

* {
    -webkit-tap-highlight-color: transparent;
}


/*==================================================
Reduced Motion
==================================================*/

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}
