:root {
  --background: hsl(225 28% 7%);
  --background-deep: hsl(225 44% 4%);
  --foreground: hsl(45 18% 96%);
  --card: hsl(222 22% 10%);
  --card-soft: hsl(222 18% 14%);
  --primary: hsl(43 67% 58%);
  --primary-soft: hsl(43 82% 72%);
  --primary-dark: hsl(38 55% 39%);
  --primary-foreground: hsl(220 36% 8%);
  --muted: hsl(222 13% 18%);
  --muted-foreground: hsl(220 10% 68%);
  --border: hsl(222 13% 23%);
  --input: hsl(222 15% 15%);
  --green: hsl(148 48% 52%);
  --red: hsl(0 75% 60%);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 8%, rgba(217, 184, 92, 0.11), transparent 34%),
    linear-gradient(180deg, var(--background-deep), var(--background) 44%, #080a10),
    var(--background);
  background-size: 70px 70px, 70px 70px, auto, auto, auto;
  color: var(--foreground);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  position: relative;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  z-index: -2;
}

.particle {
  display: none;
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.25;
  animation: particle-float linear infinite;
  z-index: -1;
}

.blob {
  display: none;
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 999px;
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

.blob.one {
  width: 80px;
  height: 80px;
  left: 3%;
  top: 33%;
}

.blob.two {
  width: 64px;
  height: 64px;
  right: 7%;
  top: 24%;
  background: rgba(201, 168, 76, 0.08);
}

.blob.three {
  width: 62px;
  height: 62px;
  right: 25%;
  bottom: 34%;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 10, 17, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 202px;
}

.brand > span {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.brand-logo {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 14px rgba(217, 184, 92, 0.12));
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--primary-soft);
  border: 2px solid var(--primary);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.26), rgba(201, 168, 76, 0.04) 58%);
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.22));
  font-size: 15px;
}

.brand-name {
  color: var(--primary-soft);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 3px;
  line-height: 1;
  display: block;
}

.brand-tag {
  color: var(--muted-foreground);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-link,
.footer-button {
  color: rgba(245, 242, 234, 0.66);
  background: transparent;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.footer-button:hover {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  color: var(--primary-foreground);
  box-shadow: 0 14px 44px rgba(214, 177, 78, 0.24);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(231, 199, 115, 0.36);
  color: var(--primary-soft);
}

.btn-muted {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--foreground);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 138px 24px 84px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 52%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(224, 190, 96, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 72%);
  pointer-events: none;
}

.hero-inner {
  width: min(1120px, 100%);
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 18px;
  margin-bottom: 34px;
  border-radius: 999px;
  border: 1px solid rgba(224, 190, 96, 0.34);
  background: rgba(224, 190, 96, 0.075);
  color: var(--primary-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 84px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.resume-hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-main {
  display: block;
}

#hero-word {
  display: block;
  width: 100%;
  min-height: 1.04em;
  white-space: normal;
  text-wrap: balance;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
  will-change: opacity, transform, filter;
}

#hero-word.is-changing {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
}

.shimmer-text {
  background: linear-gradient(108deg, #b9953d, #f7df96 38%, #d9b85c 62%, #f3d889);
  background-size: 140% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s ease-in-out infinite alternate;
  text-shadow: 0 0 30px rgba(217, 184, 92, 0.12);
}

.hero-copy,
.section-copy,
.resume-copy {
  color: var(--muted-foreground);
  font-size: 19px;
  line-height: 1.58;
  max-width: 720px;
  margin: 34px auto 0;
}

.hero-copy strong {
  color: var(--primary-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.hero-marquee {
  width: min(780px, 100%);
  height: 46px;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(224, 190, 96, 0.18);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 52px rgba(0, 0, 0, 0.18);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: marquee 28s linear infinite;
}

.hero-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  color: rgba(245, 242, 234, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary-soft);
  box-shadow: 0 0 14px rgba(224, 190, 96, 0.48);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(238, 238, 238, 0.45);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 12px auto 0;
  background: linear-gradient(var(--primary), transparent);
}

.section {
  position: relative;
  padding: 96px 24px;
}

.section.narrow-top {
  padding-top: 64px;
}

.section-rule {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 58px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  color: var(--primary-soft);
  background: rgba(201, 168, 76, 0.06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: 58px;
  line-height: 1.13;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.path-card {
  min-height: 250px;
  padding: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 17, 24, 0.9), rgba(10, 12, 18, 0.74));
  cursor: pointer;
  text-align: left;
  color: var(--foreground);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.path-card::after,
.glass-panel::after,
.service-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.path-card:hover,
.service-card:hover,
.project-card:hover,
.course-result:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(-6px);
}

.path-card:hover::after,
.glass-panel:hover::after,
.service-card:hover::after,
.project-card:hover::after {
  opacity: 1;
}

.path-icon {
  font-size: 38px;
  margin-bottom: 28px;
}

.path-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.path-label {
  color: var(--primary-soft);
  font-weight: 900;
  margin: 0 0 16px;
}

.path-card p:last-of-type {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.path-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--primary-soft);
  font-weight: 900;
}

.student-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.student-copy {
  position: sticky;
  top: 116px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.stat-box {
  min-height: 96px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(231, 199, 115, 0.13);
  background: rgba(255, 255, 255, 0.032);
}

.stat-value {
  display: block;
  color: var(--primary-soft);
  font-size: 26px;
  font-weight: 900;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 700;
}

.vertical-stack {
  display: grid;
  gap: 22px;
}

.glass-panel,
.modal-card,
.resume-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 13, 20, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass-panel {
  padding: 32px;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-number {
  color: var(--primary-soft);
  font-size: 28px;
  font-weight: 900;
}

.panel-note {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.glass-panel h3 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 900;
}

.glass-panel p {
  color: var(--muted-foreground);
  line-height: 1.58;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 238, 238, 0.82);
  font-size: 14px;
}

.feature-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.14);
  color: var(--primary-soft);
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.category-chip {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.category-chip strong {
  display: block;
  color: var(--foreground);
  font-size: 13px;
  line-height: 1.25;
}

.category-chip span {
  display: block;
  margin-top: 8px;
  color: var(--primary-soft);
  font-size: 12px;
  font-weight: 800;
}

.cv-cta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  background: radial-gradient(circle at 20% 30%, rgba(217, 184, 92, 0.12), transparent 32%), rgba(10, 13, 20, 0.88);
}

.cv-cta small {
  color: var(--primary-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.cv-cta h3 {
  margin: 8px 0 8px;
  font-size: 26px;
}

.glorixa-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.chat-preview {
  border: 1px solid rgba(231, 199, 115, 0.18);
  border-radius: 18px;
  background: rgba(11, 14, 21, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.chat-header,
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(231, 199, 115, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.chat-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(231, 199, 115, 0.38);
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #070a11;
  position: relative;
  flex: 0 0 auto;
}

.avatar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--card);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(68, 196, 123, 0.32);
}

.chat-name {
  margin: 0;
  font-weight: 900;
}

.chat-status {
  margin: 2px 0 0;
  color: hsl(148 45% 58%);
  font-size: 12px;
}

.chat-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.message {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--foreground);
  line-height: 1.45;
  font-size: 14px;
}

.message.assistant {
  justify-self: start;
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.065);
}

.message.user {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700;
}

.chat-input-ghost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--muted-foreground);
  background: rgba(255, 255, 255, 0.045);
}

.picker-panel {
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 8px;
  padding: 34px;
  background: rgba(10, 13, 20, 0.88);
  overflow: hidden;
  position: relative;
}

.picker-section + .picker-section {
  margin-top: 34px;
}

.picker-title {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.picker-title span {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.skill-grid,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: all 180ms ease;
}

.pill:hover,
.pill.active {
  border-color: rgba(201, 168, 76, 0.65);
  background: rgba(201, 168, 76, 0.16);
  color: var(--primary-soft);
}

.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.goal-button {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-foreground);
  text-align: left;
  cursor: pointer;
  transition: all 180ms ease;
}

.goal-button:hover,
.goal-button.active {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(201, 168, 76, 0.13);
  color: var(--primary-soft);
}

.goal-emoji {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.goal-label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.result-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 18px;
  background: rgba(201, 168, 76, 0.08);
}

.course-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.course-result,
.service-card,
.project-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  background: rgba(10, 13, 20, 0.86);
  overflow: hidden;
  transition: all 220ms ease;
}

.course-result {
  min-height: 270px;
  padding: 24px;
}

.course-index {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  color: var(--primary-soft);
  font-size: 12px;
  font-weight: 900;
}

.course-emoji {
  font-size: 32px;
  margin-bottom: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-foreground);
  font-size: 11px;
  font-weight: 800;
}

.tag.level-beginner {
  color: hsl(142 70% 58%);
  border: 1px solid rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.08);
}

.tag.level-intermediate {
  color: hsl(48 92% 62%);
  border: 1px solid rgba(250, 204, 21, 0.25);
  background: rgba(250, 204, 21, 0.08);
}

.tag.level-advanced {
  color: hsl(0 85% 70%);
  border: 1px solid rgba(248, 113, 113, 0.25);
  background: rgba(248, 113, 113, 0.08);
}

.course-result h3,
.service-card h3,
.project-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.24;
}

.service-card h3 {
  font-size: 23px;
  letter-spacing: 0;
}

.course-result p,
.service-card p,
.project-card p {
  color: var(--muted-foreground);
  font-size: 13px;
  line-height: 1.55;
}

.service-card p {
  margin-bottom: 54px;
  font-size: 14px;
  line-height: 1.6;
}

.course-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 800;
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.showcase-count {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-foreground);
  font-weight: 700;
}

.showcase-count strong {
  color: var(--foreground);
  font-size: 22px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
  margin-bottom: 20px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--input);
  color: var(--foreground);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input,
.select {
  min-height: 50px;
  padding: 0 16px;
}

.textarea {
  min-height: 104px;
  padding: 14px 16px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35);
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(162, 174, 195, 0.68);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.project-card {
  min-height: 330px;
}

.project-thumb {
  height: 150px;
  background:
    linear-gradient(135deg, rgba(217, 184, 92, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(10, 13, 20, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--primary-soft);
  font-size: 42px;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body {
  padding: 20px;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
}

.project-author {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 800;
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 180ms ease;
}

.icon-button:hover {
  color: var(--primary-soft);
  border-color: rgba(201, 168, 76, 0.48);
}

.empty-state {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted-foreground);
  border: 1px dashed rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  margin-top: 28px;
}

.empty-state strong {
  display: block;
  color: var(--foreground);
  font-size: 18px;
  margin-bottom: 6px;
}

.business-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 30px;
}

.business-head .section-copy {
  margin: 0;
  max-width: none;
  text-align: left;
}

.business-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.business-metrics div {
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid rgba(231, 199, 115, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012));
}

.business-metrics strong,
.business-metrics span {
  display: block;
}

.business-metrics strong {
  color: var(--primary-soft);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.business-metrics span {
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 272px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(9, 12, 18, 0.94);
}

.service-card.featured {
  border-color: rgba(231, 199, 115, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 54px rgba(0, 0, 0, 0.24);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.service-number {
  color: rgba(245, 242, 234, 0.42);
  font-size: 13px;
  font-weight: 900;
}

.service-category {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(231, 199, 115, 0.16);
  border-radius: 999px;
  color: var(--primary-soft);
  background: rgba(231, 199, 115, 0.06);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-outcome {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  min-height: 32px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 13px;
  color: rgba(245, 242, 234, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.14);
  color: var(--primary-soft);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}

.business-cta {
  text-align: center;
  margin-top: 34px;
  padding: 36px;
  border: 1px solid rgba(231, 199, 115, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.about-copy {
  font-size: 20px;
  line-height: 1.68;
  color: var(--muted-foreground);
}

.about-stats {
  display: grid;
  gap: 16px;
}

.about-stat {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(231, 199, 115, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.modal-label,
.resume-label {
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.segment {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-foreground);
  cursor: pointer;
  font-weight: 800;
}

.segment.active {
  color: var(--primary-soft);
  border-color: rgba(201, 168, 76, 0.58);
  background: rgba(201, 168, 76, 0.12);
}

.site-footer {
  padding: 34px 24px 116px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.chat-float {
  position: fixed;
  display: flex;
  top: auto;
  right: 28px;
  bottom: 28px;
  left: auto;
  z-index: 90;
  transform: none;
}

.chat-bubble {
  width: 204px;
  min-height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(231, 199, 115, 0.22);
  background: rgba(7, 9, 14, 0.94);
  color: var(--foreground);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), 0 0 24px rgba(217, 184, 92, 0.11);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.chat-bubble.chat-float {
  position: fixed;
  top: auto;
  right: 28px;
  bottom: 28px;
  left: auto;
  transform: none;
}

.chat-bubble.chat-float.near-footer {
  bottom: 104px;
}

.chat-float.is-scrolled {
  background: rgba(7, 9, 14, 0.96);
  border-color: rgba(231, 199, 115, 0.28);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.46), 0 0 26px rgba(217, 184, 92, 0.14);
}

.chat-bubble:hover {
  border-color: rgba(231, 199, 115, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48), 0 0 30px rgba(217, 184, 92, 0.16);
}

.chat-bubble.chat-float:hover {
  transform: translateY(-2px);
}

.chat-button-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  background: #070a11;
  box-shadow: none;
}

.chat-button-copy {
  display: grid;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.chat-button-copy strong,
.chat-button-copy small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-button-copy strong {
  color: var(--primary-soft);
  font-weight: 900;
  font-size: 13px;
}

.chat-button-copy small {
  color: rgba(245, 242, 234, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(68, 196, 123, 0.35);
}

.chat-window {
  position: fixed;
  top: auto;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 60;
  width: min(410px, calc(100vw - 24px));
  height: min(680px, calc(100svh - 48px));
  display: none;
  flex-direction: column;
  border: 1px solid rgba(231, 199, 115, 0.18);
  border-radius: 18px;
  background: rgba(8, 10, 16, 0.97);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 28px rgba(217, 184, 92, 0.09);
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(1.2);
  transform: none;
}

.chat-window.open {
  display: flex;
}

body.chat-near-footer .chat-window.open {
  bottom: 96px;
  height: min(620px, calc(100svh - 128px));
}

.widget-messages {
  flex: 1;
  overflow: auto;
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 199, 115, 0.45) transparent;
  overscroll-behavior: contain;
}

.quick-prompts {
  display: grid;
  gap: 8px;
  padding: 0 18px 12px;
}

.quick-prompt {
  min-height: 34px;
  border: 1px solid rgba(231, 199, 115, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--primary-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  padding: 0 12px;
}

.widget-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-input {
  flex: 1;
  min-height: 46px;
  max-height: 110px;
  resize: none;
  border: 1px solid rgba(231, 199, 115, 0.12);
  border-radius: 8px;
  background: var(--input);
  color: var(--foreground);
  padding: 12px 14px;
  outline: none;
}

.widget-send {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  color: var(--primary-foreground);
  font-weight: 900;
  cursor: pointer;
}

.widget-input:disabled,
.widget-send:disabled {
  cursor: wait;
  opacity: 0.62;
}

.widget-foot {
  padding: 0 18px 12px;
  color: rgba(245, 242, 234, 0.48);
  font-size: 11px;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(7px);
}

.modal-card {
  width: min(680px, 100%);
  max-height: min(92vh, 780px);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.modal-subtitle {
  margin: 4px 0 0;
  color: var(--muted-foreground);
  font-size: 14px;
}

.modal-body {
  overflow: auto;
  padding: 26px 28px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 20px;
}

.resume-page {
  min-height: 100vh;
  padding: 92px 24px 80px;
}

.admin-stats {
  margin-bottom: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-panel {
  min-height: 240px;
}

.admin-records {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-record {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-foreground);
  padding: 12px;
  font-family: "Raleway", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-weight: 700;
  margin-bottom: 36px;
}

.resume-hero {
  text-align: center;
  margin-bottom: 48px;
}

.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  color: rgba(162, 174, 195, 0.45);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(162, 174, 195, 0.25);
  font-size: 12px;
}

.step.active,
.step.done {
  color: var(--primary-soft);
}

.step.active .step-number,
.step.done .step-number {
  border-color: var(--primary);
}

.step-line {
  width: 44px;
  height: 1px;
  background: rgba(162, 174, 195, 0.22);
}

.resume-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 38px 40px;
}

.resume-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
}

.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.role-card {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-foreground);
  text-align: left;
  cursor: pointer;
}

.role-card.active {
  border-color: var(--primary);
  background: rgba(201, 168, 76, 0.12);
  color: var(--primary-soft);
}

.role-card span {
  display: block;
  font-size: 25px;
  margin-bottom: 10px;
}

.resume-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.generator-loading {
  display: grid;
  place-items: center;
  gap: 20px;
  min-height: 360px;
  text-align: center;
}

.spinner {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.17);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
  display: grid;
  place-items: center;
  color: var(--primary-soft);
  font-size: 34px;
}

.resume-output {
  display: grid;
  gap: 18px;
}

.cv-sheet {
  background: #f7f7f4;
  color: #1b2430;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.cv-sheet h2,
.cv-sheet h3,
.cv-sheet p {
  margin: 0;
}

.cv-sheet h2 {
  font-size: 34px;
  color: #182233;
}

.cv-sheet h3 {
  margin-top: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid #c8b77a;
  color: #182233;
  font-size: 15px;
  text-transform: uppercase;
}

.cv-sheet p,
.cv-sheet li {
  line-height: 1.55;
}

.cv-contact {
  margin: 8px 0 20px;
  color: #53606f;
}

.cv-list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.keyword {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8dfc5;
  color: #263448;
  font-size: 12px;
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  z-index: 100;
  max-width: min(520px, calc(100vw - 32px));
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 16, 0.96);
  color: var(--foreground);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 800;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hidden {
  display: none !important;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translate(0) rotate(0);
  }
  25% {
    transform: translateY(-20px) translate(10px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) translate(-15px) rotate(-1deg);
  }
  75% {
    transform: translateY(-25px) translate(5px) rotate(1deg);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 66px;
    line-height: 1.02;
  }

  .resume-hero h1 {
    font-size: 58px;
  }

  .section-title {
    font-size: 48px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-link {
    font-size: 12px;
  }

  .student-layout,
  .glorixa-layout,
  .about-panel,
  .contact-layout,
  .business-head {
    grid-template-columns: 1fr;
  }

  .business-head .section-copy {
    max-width: 720px;
  }

  .student-copy {
    position: static;
  }

  .goal-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-results,
  .projects-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: auto;
    min-height: 76px;
    padding: 14px 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 2.4px;
  }

  .brand-tag {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .nav-links {
    display: none;
  }

  .site-nav .btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 18px 84px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.06;
  }

  .resume-hero h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  #hero-word {
    min-height: 2.12em;
    white-space: normal;
  }

  .hero-marquee {
    height: 42px;
    margin-top: 28px;
  }

  .marquee-track span {
    padding: 0 18px;
    font-size: 11px;
  }

  .hero-copy,
  .section-copy,
  .resume-copy {
    font-size: 17px;
  }

  .section-title {
    font-size: 38px;
  }

  .section {
    padding: 72px 18px;
  }

  .choice-grid,
  .cv-cta,
  .toolbar,
  .form-grid,
  .modal-form {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .business-metrics,
  .category-grid,
  .course-results,
  .projects-grid,
  .services-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .showcase-top,
  .footer-inner,
  .resume-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .goal-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 12px;
  }

  .modal-head,
  .modal-body,
  .modal-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .chat-window {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    width: calc(100vw - 24px);
    height: min(640px, calc(100svh - 24px));
    transform: none;
  }

  .chat-float {
    top: auto;
    right: 22px;
    bottom: 22px;
    left: auto;
    transform: none;
  }

  .chat-bubble.chat-float {
    position: fixed;
    top: auto;
    right: 22px;
    bottom: 22px;
    left: auto;
    transform: none;
  }

  .chat-bubble.chat-float.near-footer {
    bottom: 96px;
  }

  .chat-bubble.chat-float:hover {
    transform: translateY(-2px);
  }

  body.chat-near-footer .chat-window.open {
    bottom: 76px;
    height: min(560px, calc(100svh - 96px));
  }

  .chat-bubble {
    width: 64px;
    min-width: 64px;
    height: 64px;
    min-height: 64px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    border-color: rgba(231, 199, 115, 0.48);
    background: rgba(7, 9, 14, 0.98);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48), 0 0 30px rgba(217, 184, 92, 0.22);
  }

  .chat-button-copy {
    display: none;
  }

  .chat-button-mark {
    width: 46px;
    height: 46px;
  }

  .chat-bubble::after {
    right: 9px;
    top: 9px;
  }

  .resume-card {
    padding: 26px 20px;
  }

  .stepper {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .step-line {
    display: none;
  }
}
