/*
Theme Name: Chronos & Code Technical
Theme URI: https://chronosandcode.com/
Author: Chronos & Code
Description: A lightweight custom publication theme for Chronos & Code, focused on IT, cybersecurity, systems, projects, and labs.
Version: 1.0.1
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: chronos-code
*/

:root {
  --cc-ink: #07142c;
  --cc-ink-2: #14213d;
  --cc-muted: #667085;
  --cc-line: #e8edf3;
  --cc-soft: #f7f9fc;
  --cc-white: #ffffff;
  --cc-orange: #ef8b17;
  --cc-orange-soft: #fff3e3;
  --cc-blue: #1976d2;
  --cc-magenta: #ba0b6f;
  --cc-green: #0a8f62;
  --cc-radius: 16px;
  --cc-shadow: 0 18px 50px rgba(7, 20, 44, .08);
  --cc-wrap: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
.cc-article-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #0a1d38, #163c64); }
.cc-post-nav-next { text-align: right; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cc-ink);
  background: var(--cc-white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.cc-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.cc-wrap { width: var(--cc-wrap); margin-inline: auto; }

/* Header */
.cc-header-login {
    color: #07142c;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 8px;
    transition: 0.2s ease;
}

.cc-header-login:hover {
    color: #e58b16;
}

.cc-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,237,243,.9);
}
.admin-bar .cc-site-header { top: 32px; }
.cc-header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.cc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.cc-brand .custom-logo { width: 64px; height: 64px; object-fit: contain; }
.cc-brand-fallback {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cc-ink);
  color: #fff;
  border: 3px solid #2ba9b7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.cc-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.cc-brand-name { font-weight: 800; font-size: 20px; }
.cc-brand-name em { color: var(--cc-orange); font-style: normal; }
.cc-brand-tagline { margin-top: 5px; color: var(--cc-muted); font-size: 11px; }

.cc-primary-nav { justify-self: center; }
.cc-primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0; margin: 0;
}
.cc-primary-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.cc-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: var(--cc-orange);
  transition: right .2s ease;
}
.cc-primary-nav a:hover::after,
.cc-primary-nav .current-menu-item > a::after,
.cc-primary-nav .current-menu-ancestor > a::after { right: 0; }

.cc-header-actions { display: flex; align-items: center; gap: 12px; }
.cc-icon-button, .cc-menu-toggle {
  width: 42px; height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cc-ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.cc-icon-button:hover, .cc-menu-toggle:hover { background: var(--cc-soft); }
.cc-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--cc-magenta);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.cc-menu-toggle { display: none; }

/* Search overlay */
.cc-search-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(7,20,44,.72);
  padding: 120px 20px 20px;
}
.cc-search-panel.is-open { display: block; }
.cc-search-box {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--cc-shadow);
}
.cc-search-box form { display: flex; gap: 10px; }
.cc-search-box input[type="search"] {
  flex: 1;
  border: 1px solid var(--cc-line);
  border-radius: 10px;
  padding: 14px 16px;
}
.cc-search-box button {
  border: 0; border-radius: 10px;
  background: var(--cc-ink); color: #fff;
  padding: 0 22px; font-weight: 800;
}

/* Hero */
.cc-user-account {
    background: #0e77d8 !important;
    border-color: #0e77d8 !important;
    color: #ffffff !important;
}

.cc-user-account:hover {
    background: #0b63b6 !important;
    border-color: #0b63b6 !important;
    color: #ffffff !important;
}

.cc-hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 660px;
  background: #fff;
  overflow: hidden;
}
.cc-hero-copy {
  padding: 90px max(42px, calc((100vw - 1240px)/2));
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.cc-eyebrow {
  color: var(--cc-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.cc-eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 12px;
  background: var(--cc-orange);
}
.cc-hero h1 {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: clamp(44px, 4.7vw, 74px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 850;
}
.cc-hero h1 .cc-dot { color: var(--cc-orange); }
.cc-hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: #566173;
  font-size: 18px;
  line-height: 1.7;
}
.cc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.cc-btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9px;
  border: 1px solid var(--cc-ink);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cc-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,20,44,.12); }
.cc-btn-primary { background: var(--cc-ink); color: #fff; }
.cc-btn-secondary { background: #fff; color: var(--cc-ink); }
.cc-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--cc-line);
}
.cc-point { display: flex; align-items: center; gap: 10px; }
.cc-point-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cc-orange);
  background: var(--cc-orange-soft);
  font-weight: 900;
}
.cc-point strong { display: block; font-size: 13px; }
.cc-point small { color: var(--cc-muted); font-size: 11px; }
.cc-hero-media { position: relative; min-height: 660px; background: #07142c; }
.cc-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  z-index: 2;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,.82) 35%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.cc-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; display: block; }

/* Shared sections */
.cc-section { padding: 92px 0; }
.cc-section-soft { background: var(--cc-soft); }
.cc-section-dark { background: var(--cc-ink); color: #fff; }
.cc-section-head { max-width: 820px; margin: 0 auto 48px; text-align: center; }
.cc-kicker { color: var(--cc-orange); font-size: 12px; letter-spacing: .18em; font-weight: 900; text-transform: uppercase; }
.cc-section-head h2 { margin: 12px 0 0; font-size: clamp(32px, 3.2vw, 48px); line-height: 1.12; letter-spacing: -.035em; }
.cc-section-head p { margin: 16px auto 0; max-width: 700px; color: var(--cc-muted); }
.cc-section-dark .cc-section-head p { color: #aeb9c9; }

/* Topic cards */
.cc-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cc-topic-card {
  display: block;
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  padding: 30px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(7,20,44,.045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cc-topic-card:hover { transform: translateY(-5px); border-color: #d5dee8; box-shadow: var(--cc-shadow); }
.cc-topic-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: 22px;
  background: #edf5ff;
  color: var(--cc-blue);
  font-weight: 900;
  font-size: 20px;
}
.cc-topic-card:nth-child(2) .cc-topic-icon { background: #fff0f3; color: #d7325f; }
.cc-topic-card:nth-child(3) .cc-topic-icon { background: #edfbf4; color: var(--cc-green); }
.cc-topic-card h3 { margin: 0; font-size: 21px; }
.cc-topic-card p { margin: 10px 0 20px; color: var(--cc-muted); }
.cc-card-link { color: var(--cc-orange); font-weight: 800; font-size: 14px; }

/* Article grids */
.cc-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cc-article-card {
  background: #fff;
  border: 1px solid var(--cc-line);
  border-radius: var(--cc-radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(7,20,44,.04);
  display: flex;
  flex-direction: column;
}
.cc-article-thumb { aspect-ratio: 16/9; background: #e9eef5; overflow: hidden; }
.cc-article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cc-article-card:hover .cc-article-thumb img { transform: scale(1.035); }
.cc-article-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.cc-pill { align-self: flex-start; display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--cc-orange-soft); color: #b86400; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.cc-article-card h3 { margin: 13px 0 0; font-size: 21px; line-height: 1.3; }
.cc-article-card h3 a { text-decoration: none; }
.cc-article-meta { margin-top: 12px; color: #8993a3; font-size: 12px; }
.cc-article-excerpt { margin: 12px 0 0; color: var(--cc-muted); font-size: 14px; }
.cc-article-more { margin-top: auto; padding-top: 18px; color: var(--cc-blue); font-weight: 800; text-decoration: none; font-size: 14px; }
.cc-empty {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px dashed #cfd8e4;
  border-radius: var(--cc-radius);
  color: var(--cc-muted);
  text-align: center;
  background: #fff;
}

/* Lab section */
.cc-lab-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.cc-lab-copy .cc-kicker { color: #ff9e38; }
.cc-lab-copy h2 { margin: 12px 0 0; font-size: clamp(34px, 3.5vw, 52px); line-height: 1.08; letter-spacing: -.035em; }
.cc-lab-copy p { color: #b4bfd0; font-size: 17px; }
.cc-tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.cc-tech-tags span { border: 1px solid #2a3c5c; background: #0d213e; color: #d8e6f8; padding: 6px 10px; border-radius: 999px; font-size: 12px; }
.cc-lab-panel { min-height: 360px; border-radius: 20px; background: linear-gradient(135deg, #0e2444, #08182e); border: 1px solid #223757; display: grid; place-items: center; padding: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.cc-terminal { width: 100%; max-width: 560px; background: #030a12; border-radius: 14px; border: 1px solid #20354f; overflow: hidden; }
.cc-terminal-bar { display: flex; gap: 7px; padding: 12px 14px; border-bottom: 1px solid #15253a; }
.cc-terminal-dot { width: 8px; height: 8px; border-radius: 50%; background: #33475f; }
.cc-terminal pre { margin: 0; padding: 24px; white-space: pre-wrap; color: #7de3ba; font-size: 13px; line-height: 1.8; overflow: auto; }

/* Archive teaser */
.cc-archive-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 40px 0; }
.cc-archive-band h2 { margin: 0; font-size: 30px; }
.cc-archive-band p { margin: 8px 0 0; color: var(--cc-muted); max-width: 760px; }

/* Newsletter */
.cc-newsletter {
  background: linear-gradient(135deg, #f7f9fc, #fff7eb);
  border: 1px solid var(--cc-line);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cc-newsletter h2 { margin: 0; font-size: 34px; }
.cc-newsletter p { margin: 8px 0 0; color: var(--cc-muted); }

/* Generic content */
.cc-main { min-height: 60vh; }
.cc-page-hero { padding: 70px 0 48px; background: var(--cc-soft); border-bottom: 1px solid var(--cc-line); }
.cc-page-hero h1 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.04em; }
.cc-page-hero p { max-width: 760px; margin: 14px 0 0; color: var(--cc-muted); }
.cc-content-shell { width: min(860px, calc(100% - 40px)); margin: 60px auto 90px; }
.cc-content-shell > *:first-child { margin-top: 0; }
.cc-content-shell h2, .cc-content-shell h3 { line-height: 1.25; margin-top: 1.8em; }
.cc-content-shell p, .cc-content-shell li { font-size: 17px; }
.cc-content-shell a { color: #0f67b7; }
.cc-content-shell img { border-radius: 14px; }
.cc-content-shell pre { overflow: auto; background: #08111f; color: #d8e8fb; padding: 20px; border-radius: 14px; }
.cc-content-shell blockquote { border-left: 4px solid var(--cc-orange); margin-left: 0; padding-left: 20px; color: #495568; }

/* Single post */
.cc-post-hero { padding: 72px 0 44px; }
.cc-post-category { color: var(--cc-orange); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: 12px; }
.cc-post-title { max-width: 980px; margin: 14px 0 0; font-size: clamp(40px, 4.5vw, 68px); line-height: 1.06; letter-spacing: -.045em; }
.cc-post-meta { margin-top: 18px; color: var(--cc-muted); font-size: 13px; }
.cc-post-feature { width: min(1160px, calc(100% - 40px)); margin: 0 auto 42px; border-radius: 20px; overflow: hidden; }
.cc-post-feature img { width: 100%; display: block; max-height: 620px; object-fit: cover; }
.cc-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--cc-line); }
.cc-post-nav a { text-decoration: none; padding: 18px; border: 1px solid var(--cc-line); border-radius: 12px; }

/* Archive */
.cc-archive-grid { padding: 64px 0 90px; }
.cc-pagination { margin-top: 40px; }
.cc-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-pagination a, .cc-pagination span { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--cc-line); border-radius: 9px; text-decoration: none; }
.cc-pagination .current { background: var(--cc-ink); color: #fff; border-color: var(--cc-ink); }

/* Footer */
.cc-site-footer { background: #07111f; color: #d8e1ef; }
.cc-footer-main { padding: 62px 0 44px; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 42px; }
.cc-footer-brand h3 { margin: 0; color: #fff; font-size: 24px; }
.cc-footer-brand h3 span { color: var(--cc-orange); }
.cc-footer-brand p { max-width: 420px; color: #99a8bc; }
.cc-footer-col h4 { margin: 0 0 16px; color: #fff; font-size: 14px; }
.cc-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cc-footer-col a { color: #aeb9c9; text-decoration: none; font-size: 14px; }
.cc-footer-col a:hover { color: #fff; }
.cc-footer-bottom { border-top: 1px solid #1a2a40; padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; color: #7f8da2; font-size: 12px; }

/* Forms/comments */
.comment-form input, .comment-form textarea, .search-form input[type="search"] { width: 100%; border: 1px solid var(--cc-line); border-radius: 10px; padding: 12px 14px; }
.comment-form input[type="submit"] { border: 0; border-radius: 9px; background: var(--cc-ink); color: #fff; padding: 12px 18px; font-weight: 800; }

@media (max-width: 1080px) {
  .cc-header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .cc-primary-nav { position: fixed; inset: 92px 0 auto 0; background: #fff; border-bottom: 1px solid var(--cc-line); display: none; padding: 24px; }
  .admin-bar .cc-primary-nav { inset: 124px 0 auto 0; }
  .cc-primary-nav.is-open { display: block; }
  .cc-primary-nav ul { flex-direction: column; align-items: flex-start; gap: 18px; width: var(--cc-wrap); margin: 0 auto; }
  .cc-menu-toggle { display: inline-grid; }
  .cc-header-actions { justify-self: end; }
  .cc-brand-tagline { display: none; }
  .cc-hero { grid-template-columns: 1fr; }
  .cc-hero-copy { padding: 76px 40px 54px; }
  .cc-hero-media { min-height: 460px; }
  .cc-hero-media::before { display: none; }
  .cc-topic-grid, .cc-article-grid { grid-template-columns: 1fr 1fr; }
  .cc-lab-grid { grid-template-columns: 1fr; }
  .cc-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --cc-wrap: min(100% - 28px, 1240px); }
  .admin-bar .cc-site-header { top: 46px; }
  .cc-header-inner { min-height: 78px; gap: 12px; }
  .cc-brand { min-width: 0; }
  .cc-brand .custom-logo { width: 48px; height: 48px; }
  .cc-brand-name { font-size: 16px; }
  .cc-brand-fallback { width: 46px; height: 46px; }
  .cc-subscribe { display: none; }
  .cc-primary-nav { inset: 78px 0 auto 0; }
  .admin-bar .cc-primary-nav { inset: 124px 0 auto 0; }
  .cc-hero-copy { padding: 62px 24px 42px; }
  .cc-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .cc-hero-lede { font-size: 16px; }
  .cc-hero-actions { flex-direction: column; align-items: stretch; }
  .cc-btn { width: 100%; }
  .cc-hero-points { flex-direction: column; gap: 16px; }
  .cc-hero-media { min-height: 340px; }
  .cc-section { padding: 70px 0; }
  .cc-topic-grid, .cc-article-grid { grid-template-columns: 1fr; }
  .cc-newsletter { grid-template-columns: 1fr; padding: 32px 24px; }
  .cc-archive-band { grid-template-columns: 1fr; }
  .cc-post-nav { grid-template-columns: 1fr; }
  .cc-footer-main { grid-template-columns: 1fr; }
  .cc-footer-bottom { flex-direction: column; }
}


/* =====================================================
   SUDO CURIOUS × CHRONOS & CODE
   ===================================================== */

.cc-sudo-section {
    background: #ffffff;
}

.cc-sudo-card {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;

    padding: 55px 60px;

    background:
        linear-gradient(
            135deg,
            #07142c 0%,
            #0a1d38 100%
        );

    border-radius: 22px;
    overflow: hidden;
    position: relative;

    box-shadow: 0 25px 70px rgba(7, 20, 44, 0.13);
}

.cc-sudo-card::after {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -130px;

    border-radius: 50%;

    background: rgba(239, 139, 23, 0.08);

    pointer-events: none;
}

.cc-sudo-copy {
    position: relative;
    z-index: 2;
}

.cc-sudo-copy .cc-kicker {
    color: #ef8b17;
}

.cc-sudo-copy h2 {
    margin: 12px 0 0;

    color: #ffffff;

    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.cc-sudo-copy p {
    max-width: 590px;

    margin: 18px 0 28px;

    color: #b8c3d3;

    font-size: 16px;
    line-height: 1.7;
}

.cc-sudo-btn {
    background: #ef8b17 !important;
    border-color: #ef8b17 !important;
    color: #07142c !important;
}

.cc-sudo-btn:hover {
    background: #ff9e38 !important;
    border-color: #ff9e38 !important;
    transform: translateY(-2px);
}


/* Discovery → depth visual */

.cc-sudo-flow {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

.cc-sudo-step {
    flex: 1;

    min-height: 150px;

    padding: 24px 18px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;

    background: rgba(255,255,255,0.05);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-sudo-step span {
    color: #ef8b17;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cc-sudo-step strong {
    display: block;

    margin-top: 8px;

    color: #ffffff;

    font-size: 18px;
}

.cc-sudo-step small {
    display: block;

    margin-top: 6px;

    color: #9ba9bc;

    font-size: 12px;
    line-height: 1.45;
}

.cc-sudo-arrow {
    color: #ef8b17;
    font-size: 22px;
    font-weight: 800;
}


/* Tablet / mobile */

@media (max-width: 900px) {

    .cc-sudo-card {
        grid-template-columns: 1fr;
        padding: 42px 30px;
        gap: 38px;
    }

}

@media (max-width: 650px) {

    .cc-sudo-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .cc-sudo-step {
        min-height: auto;
    }

    .cc-sudo-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

}

/* =========================================================
   CHRONOS & CODE — SUBSCRIBE PAGE
   ========================================================= */

.cc-subscribe-page {
    background: #ffffff;
    color: #07142c;
}


/* ============================
   HERO
   ============================ */

.cc-subscribe-hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(239, 139, 23, 0.08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f9fbfd 100%
        );

    border-bottom: 1px solid #edf0f4;
}

.cc-subscribe-wrap {
    max-width: 1380px;

    margin: 0 auto;

    padding: 90px 40px 85px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;
    gap: 80px;
}

.cc-subscribe-kicker,
.cc-subscribe-page .cc-kicker {
    color: #ef8b17;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.cc-subscribe-kicker::after {
    content: "";

    display: block;

    width: 42px;
    height: 2px;

    margin-top: 12px;

    background: #ef8b17;
}


.cc-subscribe-copy h1 {
    max-width: 700px;

    margin: 24px 0 0;

    font-size: clamp(48px, 5vw, 78px);
    line-height: 1.02;

    letter-spacing: -0.05em;

    color: #07142c;

    font-weight: 800;
}

.cc-subscribe-copy h1 span {
    color: #ef8b17;
}

.cc-subscribe-intro {
    max-width: 650px;

    margin: 25px 0 0;

    font-size: 19px;
    line-height: 1.7;

    color: #5f6b7d;
}


/* ============================
   MAILPOET FORM
   ============================ */

.cc-subscribe-form {
    max-width: 680px;

    margin-top: 34px;
}

.cc-subscribe-form form {
    margin: 0 !important;
}

.cc-subscribe-form input[type="email"],
.cc-subscribe-form input[type="text"] {
    width: 100% !important;

    min-height: 58px;

    padding: 0 18px !important;

    background: #ffffff !important;

    border: 1px solid #d7dde6 !important;

    border-radius: 9px !important;

    color: #07142c !important;

    font-size: 15px !important;

    box-shadow:
        0 5px 20px
        rgba(7,20,44,0.04);
}

.cc-subscribe-form input:focus {
    outline: none !important;

    border-color: #ef8b17 !important;

    box-shadow:
        0 0 0 3px
        rgba(239,139,23,0.12) !important;
}

.cc-subscribe-form input[type="submit"],
.cc-subscribe-form button {
    min-height: 56px;

    padding: 0 30px !important;

    border: none !important;

    border-radius: 9px !important;

    background: #ef8b17 !important;

    color: #ffffff !important;

    font-size: 15px !important;
    font-weight: 800 !important;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(239,139,23,0.22);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.cc-subscribe-form input[type="submit"]:hover,
.cc-subscribe-form button:hover {
    background: #dc790d !important;

    transform: translateY(-2px);
}


/* TRUST ITEMS */

.cc-subscribe-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;

    margin-top: 30px;
}

.cc-subscribe-trust > div {
    display: grid;
    grid-template-columns: 26px auto;

    column-gap: 8px;

    align-items: center;
}

.cc-subscribe-trust span {
    grid-row: 1 / 3;

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3e5;

    color: #ef8b17;

    font-size: 12px;
    font-weight: 900;
}

.cc-subscribe-trust strong {
    color: #243044;

    font-size: 13px;
}

.cc-subscribe-trust small {
    color: #7c8796;

    font-size: 11px;
}


/* ============================
   ILLUSTRATION
   ============================ */

.cc-subscribe-visual {
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-mail-scene {
    position: relative;

    width: min(100%, 520px);
    height: 410px;
}

.cc-mail-back-card {
    position: absolute;

    width: 360px;
    height: 270px;

    left: 80px;
    top: 85px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #07142c,
            #102845
        );

    transform: rotate(-5deg);

    box-shadow:
        0 35px 70px
        rgba(7,20,44,0.25);
}

.cc-mail-envelope {
    position: absolute;

    width: 360px;
    height: 245px;

    left: 90px;
    top: 50px;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid #dfe5ec;

    box-shadow:
        0 25px 65px
        rgba(7,20,44,0.14);

    overflow: hidden;
}

.cc-mail-envelope::before,
.cc-mail-envelope::after {
    content: "";

    position: absolute;

    bottom: 0;

    width: 70%;
    height: 75%;

    background: #f8fafc;

    border-top: 1px solid #e5e9ef;
}

.cc-mail-envelope::before {
    left: -20%;

    transform: skewY(28deg);
}

.cc-mail-envelope::after {
    right: -20%;

    transform: skewY(-28deg);
}

.cc-mail-flap {
    position: absolute;

    width: 100%;
    height: 135px;

    top: -68px;

    background: #f0f3f7;

    transform: rotate(45deg) scale(0.72);

    border: 1px solid #dce2e9;
}

.cc-mail-letter {
    position: absolute;

    z-index: 4;

    width: 245px;
    height: 175px;

    left: 58px;
    top: 35px;

    padding: 25px;

    border-radius: 10px;

    background: #ffffff;

    border: 1px solid #e2e7ed;

    box-shadow:
        0 10px 25px
        rgba(7,20,44,0.08);
}

.cc-mail-brand {
    color: #07142c;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 8px;
}

.cc-mail-brand strong {
    color: #ef8b17;
}

.cc-mail-dot {
    width: 18px;
    height: 18px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #07142c 55%,
            #ef8b17 55%
        );
}

.cc-mail-line {
    width: 75%;
    height: 6px;

    margin-top: 17px;

    border-radius: 5px;

    background: #e9edf2;
}

.cc-mail-line.long {
    width: 92%;

    margin-top: 25px;
}

.cc-mail-line.short {
    width: 55%;
}


/* Floating icons */

.cc-floating-icon {
    position: absolute;

    z-index: 10;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #ffffff;

    color: #ef8b17;

    border: 1px solid #e3e8ee;

    box-shadow:
        0 15px 40px
        rgba(7,20,44,0.10);

    font-size: 22px;
    font-weight: 800;
}

.cc-floating-security {
    left: 20px;
    top: 80px;
}

.cc-floating-code {
    left: 60px;
    bottom: 10px;
}

.cc-floating-system {
    right: 5px;
    top: 180px;
}


/* ============================
   BENEFITS
   ============================ */

.cc-subscribe-benefits {
    padding: 100px 40px;

    background: #ffffff;
}

.cc-subscribe-benefits .cc-wrap {
    max-width: 1380px;

    margin: auto;
}

.cc-section-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.cc-section-heading h2 {
    margin: 14px 0 0;

    color: #07142c;

    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.cc-section-heading p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #697585;

    font-size: 16px;
    line-height: 1.65;
}


.cc-subscribe-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.cc-subscribe-benefit-card {
    padding: 32px;

    border: 1px solid #e8ecf1;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(7,20,44,0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-subscribe-benefit-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(7,20,44,0.09);
}

.cc-subscribe-benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #fff3e5;

    color: #ef8b17;

    font-size: 19px;
    font-weight: 800;
}

.cc-subscribe-benefit-card h3 {
    margin: 0;

    color: #07142c;

    font-size: 18px;
}

.cc-subscribe-benefit-card p {
    margin: 12px 0 0;

    color: #667284;

    font-size: 14px;
    line-height: 1.65;
}


/* ============================
   FINAL CTA
   ============================ */

.cc-subscribe-final {
    padding: 20px 40px 100px;

    background: #ffffff;
}

.cc-subscribe-final .cc-wrap {
    max-width: 1380px;

    margin: auto;
}

.cc-subscribe-final-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 55px 60px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #07142c,
            #102744
        );

    box-shadow:
        0 25px 65px
        rgba(7,20,44,0.14);
}

.cc-subscribe-final-box h2 {
    max-width: 720px;

    margin: 10px 0 0;

    color: #ffffff;

    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.12;
}


/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1000px) {

    .cc-subscribe-wrap {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 70px;
    }

    .cc-subscribe-copy {
        text-align: center;
    }

    .cc-subscribe-kicker::after {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-subscribe-intro,
    .cc-subscribe-form {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-subscribe-trust {
        justify-content: center;
    }

    .cc-subscribe-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .cc-subscribe-wrap {
        padding:
            55px 22px
            60px;
    }

    .cc-subscribe-copy h1 {
        font-size: 45px;
    }

    .cc-subscribe-visual {
        min-height: 330px;
    }

    .cc-mail-scene {
        transform: scale(0.75);
    }

    .cc-subscribe-benefits {
        padding:
            75px 22px;
    }

    .cc-subscribe-benefit-grid {
        grid-template-columns: 1fr;
    }

    .cc-subscribe-final {
        padding:
            10px 22px
            70px;
    }

    .cc-subscribe-final-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px 28px;
    }

}

/* =========================================================
   CHRONOS & CODE — ABOUT PAGE
   ========================================================= */

.cc-about-page {
    background: #ffffff;
    color: #07142c;
}

.cc-about-wrap {
    width: min(1320px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.cc-about-hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(239, 139, 23, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f9fc 100%
        );

    border-bottom: 1px solid #e9edf2;
}

.cc-about-hero-grid {
    width: min(1380px, calc(100% - 80px));
    min-height: 700px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;
    gap: 70px;

    padding: 85px 0;
}

.cc-about-kicker,
.cc-about-section-label {
    color: #ef8b17;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}

.cc-about-kicker::after {
    content: "";

    display: block;

    width: 45px;
    height: 2px;

    margin-top: 12px;

    background: #ef8b17;
}

.cc-about-hero-copy h1 {
    max-width: 750px;

    margin: 25px 0 0;

    color: #07142c;

    font-size: clamp(50px, 5.4vw, 82px);
    line-height: 1.01;

    letter-spacing: -0.055em;

    font-weight: 800;
}

.cc-about-hero-copy h1 span {
    display: block;

    color: #ef8b17;
}

.cc-about-lead {
    max-width: 710px;

    margin: 30px 0 0;

    color: #425065;

    font-size: 20px;
    line-height: 1.65;
}

.cc-about-secondary {
    max-width: 690px;

    margin: 15px 0 0;

    color: #748093;

    font-size: 16px;
    line-height: 1.75;
}

.cc-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    margin-top: 34px;
}


/* =========================================================
   HERO TECH VISUAL
   ========================================================= */

.cc-about-visual {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    max-width: 560px;

    margin: auto;
}

.cc-about-core {
    position: absolute;

    z-index: 10;

    width: 210px;
    height: 210px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #07142c,
            #102846
        );

    color: #ffffff;

    box-shadow:
        0 35px 80px
        rgba(7, 20, 44, 0.28);
}

.cc-about-core-symbol {
    color: #ef8b17;

    font-size: 32px;
    font-weight: 800;

    margin-bottom: 13px;
}

.cc-about-core strong {
    font-size: 13px;

    letter-spacing: 1px;
}

.cc-about-core span {
    margin-top: 7px;

    color: #9caabd;

    font-size: 9px;

    letter-spacing: 1.4px;
}


/* Orbit rings */

.cc-about-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(7, 20, 44, 0.12);

    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 300px;
    height: 300px;
}

.orbit-two {
    width: 410px;
    height: 410px;

    border-style: dashed;
}

.orbit-three {
    width: 520px;
    height: 520px;

    border-color: rgba(239, 139, 23, 0.18);
}


/* Floating technical nodes */

.cc-about-node {
    position: absolute;

    z-index: 12;

    padding: 11px 15px;

    border-radius: 7px;

    background: #ffffff;

    border: 1px solid #e0e5ec;

    color: #07142c;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        0 10px 30px
        rgba(7, 20, 44, 0.08);
}

.node-one {
    top: 10%;
    left: 42%;
}

.node-two {
    top: 47%;
    right: 0;
}

.node-three {
    bottom: 9%;
    left: 42%;
}

.node-four {
    top: 47%;
    left: 0;
}


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.cc-about-section {
    padding: 110px 0;
}

.cc-about-heading {
    max-width: 780px;

    margin: 0 auto 58px;

    text-align: center;
}

.cc-about-heading h2 {
    margin: 14px 0 0;

    color: #07142c;

    font-size: clamp(35px, 3.8vw, 52px);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.cc-about-heading > p {
    max-width: 660px;

    margin: 20px auto 0;

    color: #707c8d;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   MISSION
   ========================================================= */

.cc-about-mission {
    background: #ffffff;
}

.cc-about-mission-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    margin-top: 22px;
}

.cc-about-mission-grid h2 {
    margin: 0;

    color: #07142c;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;

    letter-spacing: -0.045em;
}

.cc-about-mission-copy {
    padding-top: 6px;
}

.cc-about-mission-copy p {
    margin: 0 0 22px;

    color: #5f6b7d;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   TOPICS
   ========================================================= */

.cc-about-cover {
    background: #f7f9fc;
}

.cc-about-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.cc-about-topic-card {
    position: relative;

    display: block;

    min-height: 390px;

    padding: 38px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e5e9ef;
    border-radius: 16px;

    text-decoration: none !important;

    box-shadow:
        0 12px 35px
        rgba(7, 20, 44, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border 0.25s ease;
}

.cc-about-topic-card:hover {
    transform: translateY(-6px);

    border-color: rgba(239, 139, 23, 0.4);

    box-shadow:
        0 24px 55px
        rgba(7, 20, 44, 0.10);
}

.cc-about-topic-number {
    position: absolute;

    right: 28px;
    top: 22px;

    color: #eef1f5;

    font-size: 55px;
    font-weight: 800;
}

.cc-about-topic-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 50%;

    background: #fff3e5;

    color: #ef8b17;

    font-size: 20px;
    font-weight: 800;
}

.cc-about-topic-card h3 {
    position: relative;

    margin: 0;

    color: #07142c;

    font-size: 23px;
}

.cc-about-topic-card p {
    position: relative;

    margin: 15px 0 28px;

    color: #697586;

    font-size: 15px;
    line-height: 1.75;
}

.cc-about-topic-card > span {
    position: absolute;

    left: 38px;
    bottom: 34px;

    color: #ef8b17;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   EDITORIAL APPROACH
   ========================================================= */

.cc-about-editorial {
    background: #07142c;
}

.cc-about-editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: start;
}

.cc-about-editorial-intro {
    position: sticky;
    top: 130px;
}

.cc-about-editorial-intro h2 {
    margin: 17px 0 0;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.08;

    letter-spacing: -0.045em;
}

.cc-about-editorial-intro p {
    margin: 20px 0 0;

    color: #9dabbc;

    font-size: 17px;
    line-height: 1.7;
}

.cc-about-principles {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.cc-about-principle {
    display: grid;
    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 34px 0;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cc-about-principle > span {
    color: #ef8b17;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.cc-about-principle h3 {
    margin: 0;

    color: #ffffff;

    font-size: 21px;
}

.cc-about-principle p {
    max-width: 650px;

    margin: 10px 0 0;

    color: #9dabbc;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   PROCESS
   ========================================================= */

.cc-about-process {
    background: #ffffff;
}

.cc-about-process-track {
    margin-top: 55px;

    display: flex;
    align-items: stretch;

    gap: 15px;
}

.cc-about-process-step {
    flex: 1;

    min-height: 210px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid #e4e8ee;
    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(7, 20, 44, 0.04);
}

.cc-about-process-step span {
    color: #ef8b17;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.cc-about-process-step strong {
    margin-top: 25px;

    color: #07142c;

    font-size: 21px;
}

.cc-about-process-step p {
    margin: 10px 0 0;

    color: #6f7b8d;

    font-size: 14px;
    line-height: 1.65;
}

.cc-about-process-arrow {
    align-self: center;

    color: #ef8b17;

    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   HISTORY
   ========================================================= */

.cc-about-history {
    padding-top: 20px;

    background: #ffffff;
}

.cc-about-history-card {
    padding: 65px;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(239, 139, 23, 0.10),
            transparent 30%
        ),
        #f7f9fc;

    border: 1px solid #e6eaf0;
}

.cc-about-history-label {
    margin-bottom: 30px;

    color: #ef8b17;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.cc-about-history-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.cc-about-history-grid h2 {
    margin: 0;

    color: #07142c;

    font-size: clamp(34px, 3.7vw, 50px);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.cc-about-history-grid p {
    margin: 0 0 18px;

    color: #667284;

    font-size: 16px;
    line-height: 1.75;
}

.cc-about-history-link {
    display: inline-block;

    margin-top: 8px;

    color: #ef8b17 !important;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none !important;
}


/* =========================================================
   INDEPENDENCE
   ========================================================= */

.cc-about-independent {
    background: #ffffff;
}

.cc-about-independent-grid {
    max-width: 1030px;

    margin: auto;

    display: grid;
    grid-template-columns: 260px 1fr;

    gap: 70px;

    align-items: center;
}

.cc-about-independent-mark {
    width: 240px;
    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #07142c;

    color: #ffffff;

    font-size: 50px;
    font-weight: 800;

    letter-spacing: -4px;

    box-shadow:
        0 30px 70px
        rgba(7,20,44,0.18);
}

.cc-about-independent-mark span {
    color: #ef8b17;

    margin: 0 4px;
}

.cc-about-independent-grid h2 {
    margin: 15px 0 0;

    color: #07142c;

    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.cc-about-independent-grid p {
    margin: 18px 0 0;

    color: #687486;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.cc-about-final {
    padding: 20px 0 100px;

    background: #ffffff;
}

.cc-about-final-card {
    padding: 58px 62px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #07142c,
            #102846
        );

    box-shadow:
        0 25px 65px
        rgba(7,20,44,0.14);
}

.cc-about-final-card h2 {
    max-width: 760px;

    margin: 12px 0 0;

    color: #ffffff;

    font-size: clamp(30px, 3.4vw, 45px);
    line-height: 1.1;

    letter-spacing: -0.035em;
}

.cc-about-final-card p {
    max-width: 700px;

    margin: 15px 0 0;

    color: #aab6c6;

    font-size: 15px;
    line-height: 1.7;
}

.cc-about-final-actions {
    min-width: 220px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.cc-btn-orange {
    background: #ef8b17 !important;
    border: 1px solid #ef8b17 !important;

    color: #ffffff !important;
}

.cc-btn-orange:hover {
    background: #dc790d !important;

    transform: translateY(-2px);
}

.cc-btn-dark-outline {
    border: 1px solid rgba(255,255,255,0.35) !important;

    background: transparent !important;

    color: #ffffff !important;
}

.cc-btn-dark-outline:hover {
    border-color: #ffffff !important;

    background: rgba(255,255,255,0.06) !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .cc-about-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        padding:
            75px 0
            60px;
    }

    .cc-about-hero-copy {
        text-align: center;
    }

    .cc-about-kicker::after {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-about-lead,
    .cc-about-secondary {
        margin-left: auto;
        margin-right: auto;
    }

    .cc-about-actions {
        justify-content: center;
    }

    .cc-about-visual {
        max-width: 480px;
    }

    .cc-about-mission-grid,
    .cc-about-editorial-grid,
    .cc-about-history-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cc-about-editorial-intro {
        position: static;
    }

    .cc-about-topic-grid {
        grid-template-columns: 1fr;
    }

    .cc-about-topic-card {
        min-height: 310px;
    }

    .cc-about-process-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-about-process-arrow {
        display: none;
    }

}


@media (max-width: 750px) {

    .cc-about-wrap,
    .cc-about-hero-grid {
        width: min(100% - 42px, 1320px);
    }

    .cc-about-section {
        padding: 75px 0;
    }

    .cc-about-hero-copy h1 {
        font-size: 48px;
    }

    .cc-about-visual {
        transform: scale(0.82);

        margin-top: -35px;
        margin-bottom: -35px;
    }

    .cc-about-process-track {
        grid-template-columns: 1fr;
    }

    .cc-about-history-card {
        padding: 38px 28px;
    }

    .cc-about-independent-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .cc-about-independent-mark {
        width: 180px;
        height: 180px;

        margin: auto;

        font-size: 40px;
    }

    .cc-about-final-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;
    }

    .cc-about-final-actions {
        width: 100%;
    }

    .cc-about-final-actions .cc-btn {
        width: 100%;

        text-align: center;
    }

}

.cc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.cc-footer-bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cc-footer-bottom-links a:hover {
    color: #ef8b17;
}

/* Logged-in account button */

.cc-user-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    background: #0e77d8 !important;
    border: 1px solid #0e77d8 !important;
    border-radius: 6px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none !important;

    transition: 0.2s ease;
}

.cc-user-account:hover {
    background: #0b63b6 !important;
    border-color: #0b63b6 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* =====================================================
   CHRONOS & CODE — MY ACCOUNT DASHBOARD
   ===================================================== */

body:has(.cc-account-shell) .entry-header,
body:has(.cc-account-shell) .page-header {
    display: none !important;
}

.cc-account-shell,
.cc-account-shell * {
    box-sizing: border-box;
}

.cc-account-shell {
    width: calc(100% - 40px);
    max-width: 900px;

    margin: 0 auto;
    padding: 70px 0 90px;

    font-family: inherit;
}


/* =====================================================
   HEADER
   ===================================================== */

.cc-account-header {
    max-width: 650px;

    margin: 0 auto 45px;

    text-align: center;
}

.cc-account-eyebrow,
.cc-card-label {
    margin-bottom: 11px;

    color: #17B8A6;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.2px;

    text-transform: uppercase;
}

.cc-account-header h1 {
    margin: 0;

    color: #07142c;

    font-size: 44px;
    line-height: 1.08;

    letter-spacing: -1.5px;
}

.cc-account-header p {
    margin: 14px auto 0;

    color: #64748B;

    font-size: 14px;
    line-height: 1.65;
}


/* =====================================================
   CARDS
   ===================================================== */

.cc-account-card {
    margin-bottom: 25px;
    padding: 34px;

    background: #ffffff;

    border: 1px solid #E2E8F0;
    border-top: 3px solid #F59E0B;
    border-radius: 9px;

    box-shadow:
        0 8px 28px
        rgba(15,23,42,.05);
}

.cc-account-card h2 {
    margin: 0;

    color: #07142c;

    font-size: 26px;
    line-height: 1.2;

    letter-spacing: -.7px;
}

.cc-card-description {
    max-width: 650px;

    margin: 9px 0 24px;

    color: #64748B;

    font-size: 13px;
    line-height: 1.65;
}


/* =====================================================
   ACCOUNT INFORMATION
   ===================================================== */

.cc-account-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;
}

.cc-account-info {
    padding: 17px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;
    border-radius: 6px;
}

.cc-account-info span {
    display: block;

    margin-bottom: 5px;

    color: #94A3B8;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-account-info strong {
    display: block;

    color: #1E293B;

    font-size: 13px;
    font-weight: 600;

    overflow-wrap: anywhere;
}


/* =====================================================
   PROFILE BUILDER
   ===================================================== */

.cc-profile-builder-wrapper
#wppb-edit-user {
    width: 100% !important;

    margin: 10px 0 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
    box-shadow: none !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user
.wppb-form-field {
    display: block !important;

    width: 100% !important;

    margin: 0 0 18px !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user label {
    display: block !important;

    width: 100% !important;

    margin: 0 0 7px !important;

    color: #1E293B !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    float: none !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="text"],

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="email"],

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="password"] {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 12px 13px !important;

    background: #F8FAFC !important;

    border: 1px solid #D7DEE7 !important;
    border-radius: 6px !important;

    color: #0F172A !important;

    font-family: inherit !important;
    font-size: 14px !important;

    box-sizing: border-box !important;

    float: none !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="email"],

.cc-profile-builder-wrapper
#wppb-edit-user
input[readonly] {
    background: #F1F5F9 !important;

    color: #64748B !important;

    cursor: not-allowed !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user
input:focus {
    border-color: #17B8A6 !important;

    outline: none !important;

    box-shadow:
        0 0 0 3px
        rgba(23,184,166,.08)
        !important;
}

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="submit"] {
    width: 100% !important;

    padding: 12px 20px !important;

    background: #17B8A6 !important;

    border: 1px solid #17B8A6 !important;
    border-radius: 6px !important;

    color: #ffffff !important;

    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;

    cursor: pointer;
}

.cc-profile-builder-wrapper
#wppb-edit-user
input[type="submit"]:hover {
    background: #119E90 !important;

    border-color: #119E90 !important;
}


/* =====================================================
   RESOURCES
   ===================================================== */

.cc-resource-list {
    margin-top: 20px;
}

.cc-resource-item {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 22px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;
    border-radius: 7px;
}

.cc-resource-copy {
    flex: 1;
}

.cc-resource-copy h3 {
    margin: 0 0 7px;

    color: #07142c;

    font-size: 17px;
}

.cc-resource-copy p {
    max-width: 580px;

    margin: 0 0 8px;

    color: #64748B;

    font-size: 12px;
    line-height: 1.6;
}

.cc-resource-copy span {
    color: #94A3B8;

    font-size: 10px;
}

.cc-resource-download {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    background: #0E77D8;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.cc-resource-download:hover {
    background: #0B63B6;
}


/* =====================================================
   EMAIL PREFERENCES
   ===================================================== */

.cc-preferences-form {
    margin-top: 20px;
}

.cc-preference-toggle {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 16px;

    background: #F8FAFC;

    border: 1px solid #E5E7EB;
    border-radius: 6px;

    color: #475569;

    font-size: 13px;
    line-height: 1.55;

    cursor: pointer;
}

.cc-preference-toggle input {
    width: 16px;
    height: 16px;

    flex: 0 0 16px;

    margin-top: 2px;

    accent-color: #17B8A6;
}

.cc-account-save {
    margin-top: 16px;

    padding: 11px 20px;

    background: #17B8A6;

    border: 1px solid #17B8A6;
    border-radius: 5px;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.cc-account-save:hover {
    background: #119E90;

    border-color: #119E90;
}

.cc-account-success {
    margin: 18px 0;

    padding: 11px 13px;

    background: #ECFDF5;

    border: 1px solid #A7F3D0;
    border-radius: 5px;

    color: #047857;

    font-size: 12px;
}


/* =====================================================
   LOG OUT
   ===================================================== */

.cc-security-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cc-security-card
.cc-card-description {
    margin-bottom: 0;
}

.cc-logout-button {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 130px;

    padding: 11px 20px;

    background: #DC2626;

    border: 1px solid #DC2626;
    border-radius: 6px;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.cc-logout-button:hover {
    background: #B91C1C;

    border-color: #B91C1C;
}


/* =====================================================
   DELETE ACCOUNT
   ===================================================== */

.cc-danger-zone {
    border-top-color: #DC2626;
}

.cc-danger-zone .cc-card-label {
    color: #DC2626;
}

.cc-delete-details {
    margin-top: 20px;
}

.cc-delete-details summary {
    display: inline-flex;

    padding: 10px 17px;

    border: 1px solid #DC2626;
    border-radius: 5px;

    color: #DC2626;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.cc-delete-details summary::-webkit-details-marker {
    display: none;
}

.cc-delete-content {
    max-width: 520px;

    margin-top: 20px;
    padding: 20px;

    background: #FEF2F2;

    border: 1px solid #FECACA;
    border-radius: 6px;
}

.cc-delete-content p {
    margin: 0 0 18px;

    color: #7F1D1D;

    font-size: 12px;
    line-height: 1.6;
}

.cc-delete-content label {
    display: block;

    margin-bottom: 14px;

    color: #7F1D1D;

    font-size: 12px;
    font-weight: 600;
}

.cc-delete-content input {
    display: block;

    width: 100%;

    margin-top: 6px;
    padding: 11px 12px;

    background: #ffffff;

    border: 1px solid #FCA5A5;
    border-radius: 5px;

    font-family: inherit;

    box-sizing: border-box;
}

.cc-delete-content input:focus {
    border-color: #DC2626;

    outline: none;
}

.cc-delete-button {
    width: 100%;

    padding: 11px 18px;

    background: #DC2626;

    border: 1px solid #DC2626;
    border-radius: 5px;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.cc-delete-button:hover {
    background: #B91C1C;
}

.cc-account-error {
    margin: 18px 0;

    padding: 11px 13px;

    background: #FEF2F2;

    border: 1px solid #FECACA;
    border-radius: 5px;

    color: #B91C1C;

    font-size: 12px;
}


/* =====================================================
   LOGGED-OUT ACCOUNT PAGE
   ===================================================== */

.cc-account-login-required {
    width: calc(100% - 40px);
    max-width: 600px;

    margin: 80px auto;

    padding: 50px 35px;

    background: #ffffff;

    border: 1px solid #E2E8F0;
    border-top: 3px solid #F59E0B;
    border-radius: 9px;

    box-shadow:
        0 8px 28px
        rgba(15,23,42,.05);

    text-align: center;
}

.cc-account-login-required h1 {
    margin: 0;

    color: #07142c;

    font-size: 38px;
}

.cc-account-login-required p {
    margin: 14px auto 25px;

    color: #64748B;

    font-size: 14px;
    line-height: 1.6;
}

.cc-account-login-actions {
    display: flex;

    justify-content: center;

    gap: 10px;
}

.cc-account-primary,
.cc-account-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 11px 19px;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}

.cc-account-primary {
    background: #17B8A6;

    color: #ffffff !important;
}

.cc-account-secondary {
    background: #ffffff;

    border: 1px solid #CBD5E1;

    color: #334155 !important;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 700px) {

    .cc-account-shell {
        width: calc(100% - 30px);

        padding: 50px 0 65px;
    }

    .cc-account-header h1 {
        font-size: 36px;
    }

    .cc-account-card {
        padding: 25px;
    }

    .cc-account-info-grid {
        grid-template-columns: 1fr;
    }

    .cc-resource-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-resource-download {
        width: 100%;
    }

    .cc-security-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-logout-button {
        width: 100%;
    }

    .cc-account-login-actions {
        flex-direction: column;
    }

    .cc-account-primary,
    .cc-account-secondary {
        width: 100%;
    }
}