:root {
  --bg: #f6efe5;
  --bg-soft: #fbf6ef;
  --panel: rgba(255, 251, 246, 0.88);
  --panel-strong: #ffffff;
  --surface: #fffaf3;
  --surface-alt: #f6efe8;
  --border: rgba(84, 60, 29, 0.12);
  --border-strong: rgba(192, 98, 40, 0.28);
  --text: #1f1b2f;
  --text-muted: #62586f;
  --text-soft: #857b8e;
  --brand-blue: #f45d48;
  --brand-blue-strong: #dd4e3b;
  --brand-violet: #ff9863;
  --brand-violet-strong: #ff7a3c;
  --brand-ink: #20172d;
  --brand-gradient: linear-gradient(135deg, #ff6b4a 0%, #ff9f5a 45%, #ffd166 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(244, 93, 72, 0.14), rgba(255, 209, 102, 0.16));
  --shadow-lg: 0 32px 80px rgba(110, 66, 24, 0.16);
  --shadow-md: 0 20px 48px rgba(116, 75, 35, 0.12);
  --shadow-3d: 0 26px 48px rgba(133, 80, 31, 0.14), 0 8px 16px rgba(180, 112, 52, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 122, 60, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.16), transparent 28%),
    radial-gradient(circle at bottom center, rgba(244, 93, 72, 0.12), transparent 34%),
    linear-gradient(180deg, #fff8ef 0%, #f8efe6 42%, #fdf8f2 100%);
  color: var(--text);
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: fixed;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 28px;
  position: relative;
}

.browser {
  backdrop-filter: blur(20px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 1260px;
  overflow: hidden;
  position: relative;
  transform: perspective(1800px) rotateX(1.2deg);
  transform-style: preserve-3d;
  width: 100%;
}

.browser::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  height: 1px;
  left: 4%;
  position: absolute;
  top: 0;
  width: 92%;
}

.browser-top {
  align-items: center;
  background: rgba(255, 248, 241, 0.82);
  border-bottom: 1px solid rgba(133, 97, 57, 0.14);
  display: flex;
  gap: 18px;
  padding: 16px 20px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #ffbd2f;
}

.dot.green {
  background: #28ca42;
}

.address {
  background: rgba(255, 252, 248, 0.92);
  border: 1px solid rgba(133, 97, 57, 0.12);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 13px;
  margin-left: auto;
  max-width: 560px;
  overflow: hidden;
  padding: 10px 18px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.inner {
  min-height: 82vh;
  padding: 26px;
}

.home-shell,
.page-content {
  display: grid;
  gap: 24px;
}

.home-shell {
  perspective: 1800px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(255, 252, 247, 0.96), rgba(255, 244, 233, 0.88)),
    var(--brand-gradient-soft);
  border: 1px solid rgba(184, 116, 49, 0.18);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
  padding: 38px;
  transform-style: preserve-3d;
  position: relative;
  isolation: isolate;
}

.hero::after {
  background: radial-gradient(circle, rgba(255, 122, 60, 0.22), transparent 62%);
  content: "";
  height: 320px;
  position: absolute;
  right: -80px;
  top: -90px;
  width: 320px;
}

.hero-orb {
  border-radius: 50%;
  filter: blur(2px);
  position: absolute;
  z-index: 0;
}

.hero-orb-one {
  background: radial-gradient(circle, rgba(255, 122, 60, 0.24), rgba(255, 122, 60, 0.03) 70%);
  height: 180px;
  left: -40px;
  top: -30px;
  width: 180px;
}

.hero-orb-two {
  background: radial-gradient(circle, rgba(255, 209, 102, 0.3), rgba(255, 209, 102, 0.05) 68%);
  bottom: -44px;
  height: 220px;
  right: 24%;
  width: 220px;
}

.hero-gridline {
  background:
    linear-gradient(90deg, rgba(216, 153, 90, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 153, 90, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  inset: 0;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent 78%);
  position: absolute;
  z-index: 0;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(192, 98, 40, 0.16);
  border-radius: 999px;
  color: var(--brand-ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  max-width: max-content;
  padding: 10px 14px;
}

.eyebrow {
  color: var(--brand-blue-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero h1,
.page-title-wrap h1,
.page-title-wrap h2,
.folder-link h3,
.skill-card h3,
.project-card h3,
.timeline-top h3,
.section-card h3,
.contact-card h3,
.notice h4,
.hero-panel h3,
.career-card h3 {
  font-family: "Sora", sans-serif;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
  max-width: 10ch;
  text-wrap: balance;
}

.hero p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
  max-width: 58ch;
  position: relative;
  z-index: 1;
}

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

.proof-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 120, 53, 0.16);
  border-radius: 22px;
  box-shadow: var(--shadow-3d);
  padding: 18px;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-card:hover {
  border-color: rgba(221, 78, 59, 0.28);
  box-shadow: 0 24px 48px rgba(161, 90, 29, 0.16);
}

.proof-card-accent {
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.92), rgba(255, 252, 247, 0.84));
}

.proof-label,
.floating-kicker,
.panel-chip,
.panel-status {
  color: var(--brand-blue-strong);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-card strong,
.hero-floating-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
  margin: 10px 0 8px;
}

.proof-card p,
.hero-floating-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.hero-actions,
.project-links,
.skill-tags,
.tag-row,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.interest-grid,
.workflow-grid {
  display: grid;
  gap: 18px;
}

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

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.hero-strip span {
  background: rgba(255, 252, 248, 0.78);
  border: 1px solid rgba(184, 116, 49, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(141, 95, 42, 0.08);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.pill,
.btn,
.social-btn,
.folder-link,
.mini-card,
.contact-method,
.stat,
.tag,
.skill-tag,
.signal-card {
  border: 1px solid transparent;
  border-radius: 999px;
}

.pill,
.btn {
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 18px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pill:hover,
.pill:focus-visible,
.btn:hover,
.btn:focus-visible,
.folder-link:hover,
.folder-link:focus-visible,
.contact-method:hover,
.contact-method:focus-visible,
.social-btn:hover,
.social-btn:focus-visible,
.back-btn:hover,
.back-btn:focus-visible,
.send-btn:hover,
.send-btn:focus-visible {
  outline: none;
  transform: translateY(-3px);
}

.pill {
  background: var(--brand-gradient);
  box-shadow: 0 18px 34px rgba(213, 98, 44, 0.22);
  color: #ffffff;
}

.pill:hover,
.btn-primary:hover,
.send-btn:hover {
  box-shadow: 0 24px 38px rgba(213, 98, 44, 0.28);
}

.ghost-pill,
.btn-secondary,
.social-btn,
.back-btn {
  background: rgba(255, 251, 246, 0.82);
  border-color: rgba(184, 116, 49, 0.16);
  color: var(--text);
}

.hero-side {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.brand-card,
.hero-panel,
.section-card,
.project-card,
.contact-card,
.career-card,
.timeline-item,
.skill-card,
.notice,
.signal-card {
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(143, 101, 57, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow-3d);
  position: relative;
}

.brand-card,
.hero-panel {
  padding: 24px;
}

.interest-card,
.workflow-card,
.availability-card,
.spotlight-panel,
.spotlight-metric {
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(143, 101, 57, 0.14);
  box-shadow: var(--shadow-3d);
}

.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tilt-card:hover,
.tilt-card:focus-within {
  border-color: rgba(221, 78, 59, 0.24);
  box-shadow: 0 30px 56px rgba(154, 90, 31, 0.18), 0 10px 18px rgba(180, 112, 52, 0.12);
}

.hero-stage {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  align-content: start;
}

.hero-panel-main {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(255, 244, 233, 0.78));
  grid-column: 1 / -1;
  padding: 28px;
}

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

.panel-status {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(184, 116, 49, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-panel-main h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero-floating-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(184, 116, 49, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow-3d);
  min-height: 170px;
  padding: 20px;
}

.hero-floating-card-one {
  animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card-two {
  animation: floatCard 7.5s ease-in-out infinite reverse;
}

.brand-lockup {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-mark {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 22px;
  box-shadow: 0 18px 32px rgba(213, 98, 44, 0.24);
  color: #ffffff;
  display: inline-flex;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  height: 74px;
  justify-content: center;
  letter-spacing: -0.06em;
  min-width: 74px;
  position: relative;
  transform: rotate(-8deg);
}

.brand-mark::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 58%);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name strong {
  color: var(--brand-ink);
  font-family: "Sora", sans-serif;
  font-size: 26px;
  letter-spacing: -0.05em;
}

.brand-name span {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-shine {
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.8) 38%, transparent 60%);
  inset: 0;
  opacity: 0.44;
  pointer-events: none;
  position: absolute;
  transform: translateX(-58%);
}

.hero-panel p,
.hero-panel li,
.career-card p,
.career-card li,
.project-card p,
.section-card p,
.section-card li,
.contact-card p,
.timeline-item p,
.timeline-item li,
.mini-card span,
.notice p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-panel ul,
.career-card ul,
.section-card ul,
.timeline-item ul,
.project-points {
  margin: 0;
  padding-left: 18px;
}

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

.stat,
.signal-card,
.mini-card {
  background: rgba(255, 251, 246, 0.88);
  border-color: rgba(143, 101, 57, 0.14);
  border-radius: 22px;
  overflow: hidden;
  padding: 22px;
}

.stat::before,
.interest-card::before,
.workflow-card::before,
.mini-card::before,
.skill-card::before,
.project-card::before,
.timeline-item::before,
.section-card::before,
.contact-card::before,
.career-card::before {
  background: linear-gradient(90deg, rgba(244, 93, 72, 0.24), rgba(255, 209, 102, 0.28));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.interest-card,
.workflow-card {
  border-radius: 22px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.interest-card:hover,
.workflow-card:hover {
  border-color: rgba(221, 78, 59, 0.24);
  box-shadow: 0 28px 52px rgba(154, 90, 31, 0.16);
  transform: translateY(-5px);
}

.interest-card h3,
.workflow-card h3,
.spotlight-copy h3,
.availability-card h3 {
  font-family: "Sora", sans-serif;
  margin: 0 0 10px;
}

.interest-card p,
.workflow-card p,
.spotlight-copy p,
.spotlight-metric span,
.availability-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.spotlight-card {
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.9)),
    var(--brand-gradient-soft);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.spotlight-copy {
  display: grid;
  gap: 14px;
}

.spotlight-copy p {
  margin-bottom: 4px;
}

.spotlight-panel {
  border-radius: 22px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.spotlight-metric {
  border-radius: 18px;
  padding: 18px;
}

.spotlight-metric strong {
  color: var(--brand-ink);
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.workflow-shell {
  display: grid;
  gap: 18px;
}

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

.workflow-step {
  color: var(--brand-violet-strong);
  display: inline-block;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.availability-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(46, 25, 17, 0.98), rgba(104, 52, 25, 0.96)),
    var(--brand-gradient);
  border-radius: 28px;
  color: #ffffff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.availability-card::before {
  background: radial-gradient(circle, rgba(255, 183, 76, 0.35), transparent 65%);
  content: "";
  height: 220px;
  position: absolute;
  right: -40px;
  top: -70px;
  width: 220px;
}

.availability-card .eyebrow,
.availability-card h3,
.availability-card p {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.availability-card p {
  max-width: 58ch;
}

.availability-card .pill {
  position: relative;
  z-index: 1;
}

.stat strong,
.signal-card strong,
.mini-card strong {
  color: var(--brand-ink);
  display: block;
  font-size: 25px;
  margin-bottom: 8px;
}

.stat span,
.signal-card span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.folder-link {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(250, 241, 232, 0.92));
  border-color: rgba(143, 101, 57, 0.16);
  border-radius: 24px;
  color: var(--text);
  cursor: pointer;
  min-height: 200px;
  padding: 24px;
  position: relative;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

.folder-link:hover,
.folder-link:focus-visible {
  border-color: rgba(221, 78, 59, 0.3);
  box-shadow: 0 26px 48px rgba(171, 94, 29, 0.14);
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
}

.folder-kicker {
  color: var(--brand-blue-strong);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.folder-link h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.folder-link p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.folder-arrow {
  background: var(--brand-gradient-soft);
  border-radius: 50%;
  bottom: 22px;
  color: var(--brand-violet-strong);
  display: inline-flex;
  font-size: 22px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 22px;
  transform: translateZ(18px);
  width: 38px;
}

.notice {
  align-items: center;
  display: flex;
  gap: 16px;
  padding: 22px 24px;
}

.notice-mark,
.page-mark {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 18px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  min-height: 56px;
  min-width: 56px;
  padding: 0 16px;
}

.page-content {
  animation: fadeIn 0.4s ease;
  max-height: 76vh;
  overflow-y: auto;
  padding-right: 6px;
}

.page-content::-webkit-scrollbar {
  width: 8px;
}

.page-content::-webkit-scrollbar-thumb {
  background: rgba(88, 104, 188, 0.24);
  border-radius: 999px;
}

.back-btn {
  border-radius: 999px;
  cursor: pointer;
  justify-self: start;
  padding: 11px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-header {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.page-title-wrap h1,
.page-title-wrap h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.page-title-wrap p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 68ch;
}

.section-card,
.project-card,
.contact-card,
.career-card {
  padding: 28px;
}

.two-col,
.contact-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

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

.mini-card {
  border-radius: 20px;
}

.skill-tags,
.tag-row {
  align-items: center;
}

.skill-tag,
.tag {
  background: rgba(255, 248, 241, 0.96);
  border-color: rgba(143, 101, 57, 0.16);
  border-radius: 999px;
  color: var(--text-muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 13px;
}

.timeline,
.project-grid {
  display: grid;
  gap: 18px;
}

.timeline-item,
.skill-card {
  padding: 24px;
}

.skill-card,
.project-card,
.timeline-item,
.section-card,
.contact-card,
.career-card,
.mini-card,
.stat {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.skill-card:hover,
.project-card:hover,
.timeline-item:hover,
.section-card:hover,
.contact-card:hover,
.career-card:hover,
.mini-card:hover,
.stat:hover {
  border-color: rgba(221, 78, 59, 0.24);
  box-shadow: 0 28px 52px rgba(154, 90, 31, 0.16);
  transform: translateY(-5px);
}

.timeline-top,
.skill-card-header,
.project-head {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.meta {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.company,
.section-label {
  color: var(--brand-blue-strong);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

.skill-card-header {
  margin-bottom: 14px;
}

.skill-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.skill-percent {
  color: var(--brand-violet-strong);
  font-size: 13px;
  font-weight: 800;
}

.skill-bar {
  background: rgba(247, 229, 211, 0.92);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.skill-fill {
  background: var(--brand-gradient);
  border-radius: 999px;
  height: 100%;
  box-shadow: 0 6px 14px rgba(213, 98, 44, 0.24);
}

.project-card {
  gap: 16px;
}

.project-points li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.btn-primary,
.send-btn {
  background: var(--brand-gradient);
  border: none;
  box-shadow: 0 18px 34px rgba(213, 98, 44, 0.22);
  color: #ffffff;
}

.field {
  margin-bottom: 16px;
}

.field label {
  color: var(--brand-ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid rgba(143, 101, 57, 0.16);
  border-radius: 16px;
  color: var(--text);
  outline: none;
  padding: 14px 15px;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a97b9;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(221, 78, 59, 0.42);
  box-shadow: 0 0 0 4px rgba(244, 93, 72, 0.08);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.send-btn {
  border-radius: 16px;
  cursor: pointer;
  font-weight: 800;
  padding: 14px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.send-btn:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-result {
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 0;
  min-height: 22px;
}

.form-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 10px 0 0;
}

.form-result.is-pending {
  color: var(--text-muted);
}

.form-result.is-success {
  color: #1f8f52;
}

.form-result.is-error {
  color: #cf3e35;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  background: rgba(255, 248, 241, 0.96);
  border-color: rgba(143, 101, 57, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-method strong {
  color: var(--brand-ink);
  display: block;
  margin-bottom: 6px;
}

.contact-method span {
  color: var(--text-muted);
  font-size: 13px;
}

.social-btn {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .browser,
  .tilt-card,
  .proof-card,
  .folder-link,
  .skill-card,
  .project-card,
  .timeline-item,
  .section-card,
  .contact-card,
  .career-card,
  .mini-card,
  .stat {
    transform: none !important;
  }

  .hero-floating-card-one,
  .hero-floating-card-two {
    animation: none !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .hero,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .hero-stage {
    grid-template-columns: 1fr;
  }

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

  .interest-grid,
  .workflow-grid,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .mini-grid,
  .stats-grid,
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page {
    padding: 14px;
  }

  .inner {
    padding: 14px;
  }

  .hero,
  .section-card,
  .project-card,
  .contact-card,
  .career-card,
  .timeline-item,
  .brand-card,
  .hero-panel,
  .notice,
  .signal-card {
    padding: 20px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .folder-grid {
    grid-template-columns: 1fr;
  }

  .page-header,
  .project-head,
  .timeline-top,
  .browser-top,
  .brand-lockup,
  .availability-card {
    align-items: start;
    flex-direction: column;
  }

  .address {
    margin-left: 0;
  }

  .page-content {
    max-height: none;
  }

  .browser {
    transform: none;
  }
}
