/* Re-themes the existing landing-v2 marketing stylesheet to the Stallion palette
   and typeface by overriding its CSS custom properties. Loaded after
   landing-v2/style.css. All existing markup, copy, and layout in
   pages/*.blade.php are untouched.

   The font files themselves are loaded by a <link> in the front layout, not by
   an @import here — an @import would not be discovered until this stylesheet had
   been fetched and parsed, delaying the fonts by a full round trip. */
:root {
    --yellow: #2dd4a8;
    --light-yellow: #5eecc8;
    --off-white: #d7f5ec;
    --gray: #16161f;
    --gray-1: #0a0a0a;
    --light-gray: #9a958c;
    --light-gray-1: #9a958c;
    /* Matches the signed-in app's body stack exactly, so the marketing site and
       the product render in the same typeface. Noto SC/Thai cover the Chinese
       and Thai locales this page is also served in. */
    --primary-font: 'Inter', 'Noto Sans SC', 'Noto Sans Thai', -apple-system, sans-serif;
}

body { background-color: #0a0a0f; }

.btn-warning,
.contact .btn-primary,
.signin .btn-primary,
.copy {
    background: linear-gradient(90deg, #1aab87 0%, #5eecc8 50%, #1aab87 100%) !important;
    color: #0a0a0f !important;
    border-color: #1aab87 !important;
}

.navbar { border-bottom-color: rgba(45, 212, 168, 0.25) !important; }
.tier, .why { border-color: rgba(45, 212, 168, 0.25) !important; }
