/* ============================================================
   4DEV — Cinematic Portfolio
   ============================================================ */

:root {
  --bg: #05070d;
  --bg-elevated: #0a0f1a;
  --glass: rgba(12, 18, 32, 0.55);
  --glass-hover: rgba(18, 28, 48, 0.75);
  --border: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(120, 180, 255, 0.25);

  --text: #f0f4fa;
  --text-dim: #8b9bb4;
  --text-muted: #5c6b82;

  --accent: #7eb8ff;
  --accent-soft: rgba(126, 184, 255, 0.15);
  --warm: #c9a06e;
  --warm-soft: rgba(201, 160, 110, 0.18);
  --success: #5eead4;

  --font-display: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body.is-loading {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

/* ---------- Canvas & overlays ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 40%,
    transparent 0%,
    rgba(5, 7, 13, 0.35) 50%,
    rgba(5, 7, 13, 0.85) 100%
  );
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.preloader-logo .accent {
  color: var(--accent);
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  transition: width 0.15s ease;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(5, 7, 13, 0.85), transparent);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.nav-logo .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent-soft);
  border: 1px solid var(--border-glow);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  cursor: none;
  transition: background 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: rgba(126, 184, 255, 0.25);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav {
    padding: 1rem 1.25rem;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 10;
  padding: 7rem 0;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--warm);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(120deg, var(--accent), #a78bfa, var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-warm {
  color: var(--warm);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: background 0.3s, border-color 0.3s, transform 0.35s;
}

.glass:hover {
  background: var(--glass-hover);
  border-color: var(--border-glow);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.25s, border-color 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5b8def);
  color: #05070d;
  border: none;
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-card {
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.status-live {
  color: var(--success);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .meta-card {
    flex: 1 1 140px;
  }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card {
    flex: 1 1 120px;
  }
}

/* ---------- Work / Projects ---------- */
.projects {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.project {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  position: relative;
  overflow: hidden;
}

.project-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 0.25rem;
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--warm);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.project-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.project-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 1rem;
}

.project-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: letter-spacing 0.2s;
}

.project-link:hover {
  letter-spacing: 0.03em;
}

.project-status {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  align-self: start;
  white-space: nowrap;
}

.project-status.live {
  background: rgba(94, 234, 212, 0.12);
  color: var(--success);
  border: 1px solid rgba(94, 234, 212, 0.3);
}

.project-status.pending {
  background: rgba(201, 160, 110, 0.12);
  color: var(--warm);
  border: 1px solid rgba(201, 160, 110, 0.3);
}

@media (max-width: 700px) {
  .project {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .project-status {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
  }
}

/* ---------- Toolkit ---------- */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.tool-group {
  padding: 1.5rem;
}

.tool-group h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.tool-group li {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tool-group li:last-child {
  border-bottom: none;
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  padding: 2rem 1.75rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--warm);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.step-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step p:last-child {
  color: var(--text-dim);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-action {
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 10;
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

@media (max-width: 500px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.tilt {
  transform-style: preserve-3d;
}

/* ============================================================
   4D Aurelia-style identity + responsive refinement
   ============================================================ */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.four-d-mark {
  width: 2rem;
  height: 2rem;
  display: block;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(126, 184, 255, .22));
}

.brand-word { display: inline-block; }
.preloader-logo .four-d-mark { width: 3rem; height: 3rem; }
.preloader-logo { justify-content: center; }
.nav-logo { position: relative; }

.floating-four-d {
  position: fixed;
  left: clamp(1rem, 2.4vw, 2.4rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 80;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 13, 24, .58);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.42), inset 0 0 0 1px rgba(126,184,255,.05);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.92);
  transition: left .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1), opacity .45s ease, background .3s ease, border-color .3s ease;
}

.floating-four-d::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(244,247,255,.4), rgba(126,184,255,.18), rgba(201,160,110,.28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.floating-four-d .four-d-mark { width: 2.35rem; height: 2.35rem; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.floating-four-d:hover { background: rgba(13,21,38,.78); border-color: rgba(126,184,255,.32); }
.floating-four-d:hover .four-d-mark { transform: rotate(-8deg) scale(1.08); }
.floating-four-d.is-visible { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.floating-four-d.at-bottom { left: 50%; transform: translate3d(-50%,0,0) scale(1); }
.floating-label {
  position: absolute;
  left: calc(100% + .7rem);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s ease;
  pointer-events: none;
}
.floating-four-d:hover .floating-label { opacity: 1; transform: translateX(0); }
.floating-four-d.at-bottom .floating-label { display: none; }

.nav-menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10,15,26,.55);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
}
.nav-menu-toggle span { width: 16px; height: 1px; background: currentColor; transition: transform .35s ease; }
.menu-open .nav-menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .nav-menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.featured-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(126,184,255,.12), transparent 36%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .section { padding: 5.5rem 0; }
  .hero { padding-top: 7rem; }
  .hero-grid { gap: 2rem; }
  .hero-meta { display: grid; grid-template-columns: repeat(3,1fr); }
  .meta-card { min-width: 0; }
}

@media (max-width: 768px) {
  .nav { padding: .85rem 1rem; background: rgba(5,7,13,.72); }
  .nav-logo .four-d-mark { width: 1.75rem; height: 1.75rem; }
  .nav-logo { font-size: 1.05rem; gap: .45rem; }
  .nav-menu-toggle { display: inline-flex; margin-left: auto; margin-right: .5rem; }
  .nav-cta { padding: .48rem .85rem; font-size: .75rem; }
  .nav-links {
    display: flex;
    position: fixed;
    inset: 4.5rem 1rem auto;
    padding: 1rem;
    border-radius: 18px;
    flex-direction: column;
    gap: .25rem;
    background: rgba(7,11,20,.93);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(.98);
    transition: .35s cubic-bezier(.16,1,.3,1);
    box-shadow: var(--shadow);
  }
  .menu-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .nav-link { display:block; padding:.8rem .9rem; border-radius:10px; }
  .nav-link:hover { background: var(--accent-soft); }
  .hero-title { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-meta { grid-template-columns: 1fr; }
  .scroll-hint { display:none; }
  .about-stats { display:grid; grid-template-columns:repeat(3,1fr); }
  .project { padding:1.35rem; }
  .project-status { top:1rem; right:1rem; }
  .contact-value { overflow-wrap:anywhere; font-size:1rem; }
  .floating-four-d { width:3.65rem; height:3.65rem; }
  .floating-four-d .four-d-mark { width:2rem; height:2rem; }
}

@media (max-width: 520px) {
  .container { width:min(100% - 2rem,1120px); }
  .section { padding:4.5rem 0; }
  .hero { min-height:auto; padding-top:8rem; padding-bottom:5rem; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .about-stats { grid-template-columns:1fr; }
  .stat-card { padding:1.2rem; }
  .project-desc { font-size:.9rem; }
  .toolkit-grid { grid-template-columns:1fr; }
  .footer { padding-bottom:6rem; }
  .floating-four-d { left:1rem; bottom:1rem; }
  .floating-four-d.at-bottom { left:50%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}


/* ============================================================
   Exact supplied 4D logo + compact contact actions
   ============================================================ */

.four-d-mark {
  object-fit: contain;
  object-position: center;
}

.contact-card {
  padding: 1.45rem 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-value {
  overflow-wrap: anywhere;
}

.contact-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.contact-icon-button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-dim);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-icon-button:hover {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 184, 255, 0.12);
}

.contact-icon-button:active {
  transform: scale(0.94);
}

.contact-icon-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-check {
  display: none;
}

.copy-contact.is-copied {
  color: var(--success);
  background: rgba(94, 234, 212, 0.1);
  border-color: rgba(94, 234, 212, 0.35);
}

.copy-contact.is-copied .icon-copy {
  display: none;
}

.copy-contact.is-copied .icon-check {
  display: block;
}

@media (max-width: 600px) {
  .contact-card {
    padding: 1.2rem;
    align-items: center;
    flex-direction: row;
  }

  .contact-actions {
    gap: 0.4rem;
  }

  .contact-icon-button {
    width: 34px;
    height: 34px;
  }

  .contact-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 380px) {
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
