/*
Theme Name: Codex
Theme URI: https://example.com/codex
Author: Codex Themes
Author URI: https://example.com
Description: Codex is a minimalist, perfectly balanced portfolio and resume theme built for developers, engineers, and IT professionals. It pairs generous whitespace with a precise, monospace-accented type system and ships with a deep Customizer so every color, font, section, and piece of copy can be changed without touching code. The home page features an animated constellation hero — an eye-catching but lightweight, dependency-free visual built on the HTML5 canvas.
Version: 1.1.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codex
Tags: portfolio, blog, one-column, two-columns, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, editor-style, block-styles
*/

/* ============================================================
   1. DESIGN TOKENS
   Most of these are overridden live by the Customizer via an
   inline <style> block printed in the document head.
   ============================================================ */
:root {
  --accent: #2f4cff;
  --accent-soft: rgba(47, 76, 255, 0.12);
  --ink: #14151a;
  --ink-soft: #565a66;
  --ink-faint: #8b8f9c;
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-2: #f3f2ec;
  --line: #e7e7e1;
  --line-strong: #d4d4cc;

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1120px;
  --radius: 14px;
  --radius-sm: 8px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-pad: calc(clamp(4rem, 9vw, 8rem) - 2.5mm);
  --base-size: 18px;

  --shadow-sm: 0 1px 2px rgba(20, 21, 26, 0.04), 0 2px 8px rgba(20, 21, 26, 0.05);
  --shadow-md: 0 8px 30px rgba(20, 21, 26, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.is-dark {
  --ink: #ecedf1;
  --ink-soft: #a8abb6;
  --ink-faint: #71747f;
  --bg: #0c0d11;
  --surface: #14151b;
  --surface-2: #111219;
  --line: #25262e;
  --line-strong: #34353f;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--base-size);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { color: var(--ink-soft); }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   3. LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Alternating "panel" bands so each section reads as its own block.
   Cards inside (work, contact) sit on --surface and pop against the band. */
.section--alt {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

/* Running section index (01, 02, ...) anchored top-right of each section,
   mirroring the eyebrow on the left for a clear, editorial "section start". */
body { counter-reset: section-counter; }
.section[id] { position: relative; counter-increment: section-counter; }
.section[id]::before {
  content: counter(section-counter, decimal-leading-zero);
  position: absolute;
  top: clamp(1.6rem, 4vw, 2.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container);
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--ink-faint);
  opacity: 0.7;
  pointer-events: none;
}

/* Scroll-reveal: JS adds .is-revealable (so no-JS users see everything),
   then .is-visible when the section enters the viewport. */
.section.is-revealable > .container {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.section.is-revealable.is-visible > .container { opacity: 1; transform: none; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 1rem;
  max-width: 18ch;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 56ch; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   5. HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.03em;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.brand .brand-dot { color: var(--accent); }
.brand img { max-height: 40px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
  font-size: 0.92rem; color: var(--ink-soft); position: relative; padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-menu a.is-current { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after, .nav-menu a.is-current::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; cursor: pointer; color: var(--ink-soft);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: rotate(15deg); }
.theme-toggle .icon-moon { display: none; }
.is-dark .theme-toggle .icon-sun { display: none; }
.is-dark .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none; width: 40px; height: 40px; border: none; background: none;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   6. HERO  (the eye-catching component)
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  right: -10%; top: -20%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(20px);
}
.hero-inner {
  position: relative; z-index: 1;
  min-height: clamp(560px, 86vh, 880px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}
.hero-name {
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  margin: 1.25rem 0 0.5rem;
  max-width: 16ch;
}
.hero-role-line {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: var(--ink);
  display: flex; align-items: baseline; gap: 0.65rem; flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-role-line .prompt { color: var(--accent); }
.hero-role {
  color: var(--accent);
  border-right: 2px solid var(--accent);
  padding-right: 2px;
  animation: caret 1s step-end infinite;
}
@keyframes caret { 0%, 100% { border-color: var(--accent); } 50% { border-color: transparent; } }

.hero-tagline { margin-top: 1.75rem; max-width: 50ch; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3.5rem;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-faint);
}
.hero-meta .num { display: block; font-size: 1.6rem; color: var(--ink); font-family: var(--font-display); font-weight: 600; }

/* staggered intro */
[data-reveal] { opacity: 0; transform: translateY(22px); }
.is-ready [data-reveal] {
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   7. ABOUT
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--gap); align-items: start;
}
.about-portrait {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; background: var(--surface);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-body p + p { margin-top: 1.1rem; }
.about-facts { list-style: none; margin-top: 2rem; display: grid; gap: 0.9rem; }
.about-facts li { display: flex; gap: 0.9rem; font-size: 0.95rem; }
.about-facts .k { font-family: var(--font-mono); color: var(--ink-faint); min-width: 8rem; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding-top: 2px; }
.about-facts .v { color: var(--ink); }

/* ============================================================
   8. SKILLS
   ============================================================ */
.skills-wrap { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: var(--gap); align-items: start; }
.skill-cats { display: grid; gap: 1.5rem; }
.skill-cat-title { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.9rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.skill-tag {
  font-family: var(--font-mono); font-size: 0.82rem;
  padding: 0.5rem 0.9rem; border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface); color: var(--ink); transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.skill-tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   9. PORTFOLIO
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.work-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.work-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--accent-soft), transparent); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-thumb-fallback { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--font-mono); color: var(--accent); font-size: 2rem; }
.work-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.work-tech { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.work-title { font-size: 1.3rem; }
.work-excerpt { font-size: 0.95rem; color: var(--ink-soft); }
.work-link { margin-top: auto; font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); display: inline-flex; align-items: center; gap: 0.4rem; }
.work-card:hover .work-link .arrow { transform: translateX(3px); }

/* ============================================================
   10. RESUME / EXPERIENCE
   ============================================================ */
.resume-grid { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: var(--gap); align-items: start; }
.timeline { display: grid; gap: 0; position: relative; }
.timeline-item { position: relative; padding: 0 0 2.25rem 2rem; border-left: 1px solid var(--line); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -5px; top: 4px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--bg);
}
.timeline-period { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.05em; color: var(--ink-faint); text-transform: uppercase; }
.timeline-role { font-size: 1.2rem; margin-top: 0.35rem; }
.timeline-org { color: var(--accent); font-size: 0.95rem; }
.timeline-desc { font-size: 0.95rem; margin-top: 0.5rem; }
.resume-side .btn { margin-top: 1.5rem; }

/* Inline PDF viewer */
.resume-doc {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.resume-doc-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
  font-family: var(--font-mono); font-size: 0.76rem;
}
.resume-doc-name {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.14em;
}
.resume-doc-name .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.resume-doc-dl { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); letter-spacing: 0.04em; transition: color 0.25s var(--ease); }
.resume-doc-dl:hover { color: var(--ink); }
.resume-doc-dl .arrow { transition: transform 0.25s var(--ease); }
.resume-doc-dl:hover .arrow { transform: translateY(2px); }
.resume-doc-frame {
  display: block; width: 100%;
  height: clamp(420px, 78vh, 780px);
  border: 0; background: var(--surface);
}

/* ============================================================
   11. CONTACT
   ============================================================ */
.contact { position: relative; }
.contact-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; box-shadow: var(--shadow-sm);
}
.contact-card .section-title { margin-inline: auto; max-width: 24ch; }
.contact-email {
  display: inline-block; margin-top: 1.5rem; font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem); color: var(--ink); border-bottom: 2px solid var(--accent);
  transition: color 0.25s var(--ease);
}
.contact-email:hover { color: var(--accent); }
.socials { display: flex; justify-content: center; gap: 1rem; margin-top: 2.25rem; flex-wrap: wrap; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-soft); background: var(--surface);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-link:hover { color: #fff; background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.social-link svg { width: 20px; height: 20px; }

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding-block: 2.5rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-inner p, .footer-inner a { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-faint); }
.footer-inner a:hover { color: var(--accent); }

/* ============================================================
   13. GENERIC CONTENT (pages, posts, archives)
   ============================================================ */
.page-hero { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-hero .section-title { max-width: 26ch; }

.entry { max-width: 760px; margin-inline: auto; }
.entry-content { font-size: 1.05rem; line-height: 1.8; }
.entry-content > * + * { margin-top: 1.3rem; }
.entry-content h2 { font-size: 1.7rem; margin-top: 2.5rem; }
.entry-content h3 { font-size: 1.35rem; margin-top: 2rem; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); margin-block: 2rem; }
.entry-content blockquote {
  border-left: 3px solid var(--accent); padding-left: 1.5rem; font-size: 1.2rem;
  color: var(--ink); font-style: italic;
}
.entry-content pre {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.25rem; overflow-x: auto; font-family: var(--font-mono); font-size: 0.9rem;
}
.entry-content code { font-family: var(--font-mono); font-size: 0.9em; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content li + li { margin-top: 0.4rem; }

.post-list { display: grid; gap: 2.5rem; max-width: 760px; margin-inline: auto; }
.post-item { border-bottom: 1px solid var(--line); padding-bottom: 2.5rem; }
.post-item:last-child { border-bottom: none; }
.post-meta { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.post-item h2 { font-size: 1.6rem; margin: 0.6rem 0; }
.post-item h2 a:hover { color: var(--accent); }

.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.pagination .page-numbers {
  font-family: var(--font-mono); font-size: 0.85rem; padding: 0.5rem 0.9rem;
  border: 1px solid var(--line); border-radius: 8px; color: var(--ink-soft);
}
.pagination .page-numbers.current, .pagination .page-numbers:hover { border-color: var(--accent); color: var(--accent); }

/* comments + forms */
.comment-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.comment-body { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
input[type=text], input[type=email], input[type=url], input[type=search], input[type=password], textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 0.8rem 1rem; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink);
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-soft); }

/* widgets */
.widget { margin-bottom: 2rem; }
.widget-title { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid, .skills-wrap, .resume-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 380px; }
  .work-grid { grid-template-columns: 1fr; }

  .nav-menu {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    height: auto;
  }
  .nav-menu.is-open { transform: translateY(0); box-shadow: var(--shadow-md); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-role { border-right: none; }
  .section.is-revealable > .container { opacity: 1 !important; transform: none !important; }
}
