@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
}

body {
  font-family: "basic-sans", sans-serif, monospace;
  background-color: #111312;
  color: #E5E5E5;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

Basic Sans Thin {
  font-family: "basic-sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}

Basic Sans Thin It {
  font-family: "basic-sans", sans-serif;
  font-weight: 100;
  font-style: italic;
}

Basic Sans ExtraLight {
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

Basic Sans ExtraLight It {
  font-family: "basic-sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}

Basic Sans Light {
  font-family: "basic-sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

Basic Sans Light It {
  font-family: "basic-sans", sans-serif;
  font-weight: 300;
  font-style: italic;
}

Basic Sans Regular {
  font-family: "basic-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

Basic Sans Regular It {
  font-family: "basic-sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

Basic Sans SemiBold {
  font-family: "basic-sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}

Basic Sans SemiBold It {
  font-family: "basic-sans", sans-serif;
  font-weight: 600;
  font-style: italic;
}

Basic Sans Bold {
  font-family: "basic-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

Basic Sans Bold It {
  font-family: "basic-sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

Basic Sans Black {
  font-family: "basic-sans", sans-serif;
  font-weight: 900;
  font-style: normal;
}

Basic Sans Black It {
  font-family: "basic-sans", sans-serif;
  font-weight: 900;
  font-style: italic;
}

#nodeCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.fixed-logo {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 100;
  pointer-events: auto;
}
.fixed-logo img {
  width: 80px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(43, 189, 167, 0.5));
  transition: filter 0.3s ease;
}
.fixed-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(43, 189, 167, 0.8));
}
@media (min-width: 768px) {
  .fixed-logo {
    top: 15px;
    left: 30px;
  }
}
@media (min-width: 1440px) {
  .fixed-logo {
    top: 20px;
    left: 40px;
  }
}

.content-box {
  background: rgba(43, 189, 167, 0.035);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(43, 189, 167, 0.04);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}
.content-box:hover {
  background: rgba(43, 189, 167, 0.001);
  border-color: #00FFF5;
  box-shadow: 0 8px 32px rgba(0, 255, 245, 0.3);
}
@media (min-width: 768px) {
  .content-box {
    padding: 2rem;
  }
}
@media (min-width: 1440px) {
  .content-box {
    padding: 3rem;
  }
}

.wireframe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  animation: fadeInWireframes 2s ease-in forwards;
  animation-delay: 0.5s;
}
.wireframe-overlay .wireframe-element {
  position: absolute;
  font-family: "basic-sans", sans-serif, monospace;
  font-size: 1.2rem;
  color: #A0A0A0;
  opacity: 0.25;
  transition: opacity 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wireframe-overlay .wireframe-element:nth-child(1) {
  top: 10%;
  left: 5%;
}
.wireframe-overlay .wireframe-element:nth-child(2) {
  top: 30%;
  right: 10%;
}
.wireframe-overlay .wireframe-element:nth-child(3) {
  bottom: 40%;
  left: 15%;
}
.wireframe-overlay .wireframe-element:nth-child(4) {
  bottom: 20%;
  right: 5%;
}
.wireframe-overlay .wireframe-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.projects:hover .wireframe-overlay .wireframe-element,
.footer:hover .wireframe-overlay .wireframe-element,
.footer:hover .wireframe-overlay .wireframe-dots {
  opacity: 0.85;
}

@keyframes fadeInWireframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer-wireframes {
  display: none;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
@media (min-width: 1440px) {
  section {
    padding: 4rem;
  }
}

.hero {
  justify-content: flex-end;
  padding-right: 16.6666666667vw;
}
.hero .content-box {
  text-align: center;
  max-width: 1200px;
}
.hero .logo {
  margin-bottom: 2rem;
}
.hero .logo img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(43, 189, 167, 0.5));
}
@media (min-width: 768px) {
  .hero .logo img {
    width: 100px;
  }
}
@media (min-width: 1440px) {
  .hero .logo img {
    width: 120px;
  }
}
.hero .name {
  font-size: 3.5rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(43, 189, 167, 0.3);
  text-decoration: underline;
  text-decoration-color: #2BBDA7;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
@media (min-width: 768px) {
  .hero .name {
    font-size: 5rem;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
  }
}
@media (min-width: 1440px) {
  .hero .name {
    font-size: 6.5rem;
    text-decoration-thickness: 4px;
    text-underline-offset: 12px;
  }
}
.hero .title {
  font-size: 1.2rem;
  font-weight: 100;
  color: #2BBDA7;
  letter-spacing: 2px;
  text-shadow: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .hero .title {
    font-size: 1.5rem;
  }
}
.hero .content-box:hover .title {
  color: #00FFF5;
  text-shadow: 0 0 8px rgba(0, 255, 245, 0.6), 0 0 12px rgba(0, 255, 245, 0.4);
}

.what-i-do {
  justify-content: flex-start;
  padding-left: 16.6666666667vw;
}
.what-i-do .content-box {
  max-width: 900px;
}
.what-i-do h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2BBDA7;
}
@media (min-width: 768px) {
  .what-i-do h2 {
    font-size: 2.5rem;
  }
}
.what-i-do .description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .what-i-do .description {
    font-size: 1.4rem;
  }
}
.what-i-do .details {
  margin-bottom: 2rem;
  color: #A0A0A0;
}
.what-i-do .specialties {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(58, 79, 78, 0.3);
  border-left: 3px solid #2BBDA7;
  border-radius: 6px;
}
.what-i-do .specialties h3 {
  color: #2BBDA7;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.what-i-do .currently {
  font-style: italic;
  color: #00FFF5;
  margin-top: 2rem;
}

.projects .content-box {
  max-width: 1200px;
  width: 100%;
}
.projects h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2BBDA7;
  text-align: center;
}
@media (min-width: 768px) {
  .projects h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}
.projects .section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #A0A0A0;
}
.projects .project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .projects .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.projects .project-card {
  background: rgba(58, 79, 78, 0.2);
  border: 1px solid rgba(43, 189, 167, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.projects .project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 189, 167, 0.4);
  box-shadow: 0 10px 30px rgba(43, 189, 167, 0.2);
}
.projects .project-card .project-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(17, 19, 18, 0.5);
  border-radius: 6px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects .project-card .project-image .placeholder {
  color: #A0A0A0;
  font-size: 0.9rem;
}
.projects .project-card h3 {
  color: #2BBDA7;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.projects .project-card p {
  color: #A0A0A0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .content-box {
  max-width: 800px;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2BBDA7;
}
@media (min-width: 768px) {
  .about h2 {
    font-size: 2.5rem;
  }
}
.about p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.about a {
  color: #00FFF5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.about a:hover {
  border-bottom-color: #00FFF5;
}

.footer {
  min-height: auto;
  padding: 3rem 2rem;
}
.footer .content-box {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .content-box {
    text-align: left;
  }
}
.footer .contact {
  margin-bottom: 2rem;
}
.footer .contact h3 {
  color: #2BBDA7;
  margin-bottom: 0.5rem;
}
.footer .contact a {
  color: #00FFF5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .contact a:hover {
  color: #2BBDA7;
}
.footer .social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer .social-links {
    justify-content: flex-start;
  }
}
.footer .social-links a {
  color: #E5E5E5;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.footer .social-links a:hover {
  color: #2BBDA7;
  border-bottom-color: #2BBDA7;
}
.footer .copyright {
  color: #A0A0A0;
  font-size: 0.9rem;
  margin-top: 2rem;
}

a {
  color: #2BBDA7;
  transition: color 0.3s ease;
  cursor: pointer;
}
a:hover {
  color: #00FFF5;
}

.tab-nav {
  position: fixed;
  left: 0;
  top: 170px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab-nav .tab-link {
  background: rgba(58, 79, 78, 0.3);
  border: 1px solid rgba(43, 189, 167, 0.2);
  border-left: none;
  border-radius: 0 8px 8px 0;
  color: rgba(229, 229, 229, 0.6);
  font-family: "basic-sans", sans-serif, monospace;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  width: 68px;
  overflow: hidden;
}
.tab-nav .tab-link:hover {
  width: 160px;
  background: rgba(58, 79, 78, 0.5);
  border-color: #2BBDA7;
  color: #2BBDA7;
  box-shadow: 0 4px 20px rgba(43, 189, 167, 0.3);
}
.tab-nav .tab-link.active {
  width: 160px;
  background: rgba(43, 189, 167, 0.15);
  border-color: #00FFF5;
  color: #00FFF5;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(0, 255, 245, 0.4);
}
.tab-nav .tab-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #00FFF5;
}
.tab-nav .tab-link span.tab-abbr {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: rgba(229, 229, 229, 0.6) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  width: auto !important;
  height: auto !important;
  transition: all 0.3s ease;
}
.tab-nav .tab-link:hover span.tab-abbr {
  color: #2BBDA7 !important;
  text-shadow: 0 0 10px rgba(43, 189, 167, 0.8), 0 0 20px rgba(43, 189, 167, 0.5) !important;
}
.tab-nav .tab-link.active span.tab-abbr {
  color: #00FFF5 !important;
  text-shadow: 0 0 10px rgba(0, 255, 245, 0.8), 0 0 20px rgba(0, 255, 245, 0.5) !important;
}
.tab-nav .tab-link span.tab-full {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.tab-nav .tab-link:hover span.tab-abbr, .tab-nav .tab-link.active span.tab-abbr {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.tab-nav .tab-link:hover span.tab-full, .tab-nav .tab-link.active span.tab-full {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  font-size: 0.9rem !important;
  width: auto !important;
  height: auto !important;
}
@media (max-width: 768px) {
  .tab-nav {
    top: 110px;
    gap: 15px;
  }
  .tab-nav .tab-link {
    width: 58px;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .tab-nav .tab-link:hover {
    width: 58px;
    background: rgba(58, 79, 78, 0.5);
    border-color: #2BBDA7;
    color: #2BBDA7;
  }
  .tab-nav .tab-link.active {
    width: 58px;
  }
  .tab-nav .tab-link span.tab-abbr {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .tab-nav .tab-link span.tab-full {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .tab-nav .tab-link:hover span.tab-abbr, .tab-nav .tab-link.active span.tab-abbr {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .tab-nav .tab-link:hover span.tab-full, .tab-nav .tab-link.active span.tab-full {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media (max-width: 480px) {
  .tab-nav {
    top: 160px;
    gap: 12px;
  }
  .tab-nav .tab-link {
    width: 53px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .tab-nav .tab-link:hover {
    width: 53px;
    background: rgba(58, 79, 78, 0.5);
    border-color: #2BBDA7;
    color: #2BBDA7;
  }
  .tab-nav .tab-link.active {
    width: 53px;
  }
  .tab-nav .tab-link span.tab-abbr {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .tab-nav .tab-link span.tab-full {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  .tab-nav .tab-link:hover span.tab-abbr, .tab-nav .tab-link.active span.tab-abbr {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .tab-nav .tab-link:hover span.tab-full, .tab-nav .tab-link.active span.tab-full {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

.page-container {
  position: relative;
  z-index: 1;
}

.page {
  display: none;
  margin-top: 200px;
  min-height: 100vh;
}
.page.active {
  display: block;
}
.page section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-left: 80px;
  position: relative;
}
@media (min-width: 768px) {
  .page section {
    padding-left: 180px;
  }
}
@media (min-width: 1440px) {
  .page section {
    padding: 4rem;
    padding-left: 200px;
  }
}

.services .content-box {
  max-width: 1400px;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2BBDA7;
  text-align: center;
}
@media (min-width: 768px) {
  .services h2 {
    font-size: 2.5rem;
  }
}
.services .section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #A0A0A0;
}
.services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .services .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services .service-card {
  background: rgba(58, 79, 78, 0.1);
  border: 1px solid rgba(43, 189, 167, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 189, 167, 0.3);
  box-shadow: 0 10px 30px rgba(43, 189, 167, 0.15);
}
.services .service-card .service-icon {
  font-size: 3rem;
  font-weight: bold;
  color: #2BBDA7;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.services .service-card h3 {
  color: #2BBDA7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.services .service-card p {
  color: #A0A0A0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.services .service-card .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services .service-card .service-features li {
  padding: 0.5rem 0;
  color: #E5E5E5;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(43, 189, 167, 0.1);
}
.services .service-card .service-features li:last-child {
  border-bottom: none;
}
.services .service-card .service-features li:before {
  content: "→";
  color: #2BBDA7;
  margin-right: 0.5rem;
}

.about .content-box {
  max-width: 1000px;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2BBDA7;
}
@media (min-width: 768px) {
  .about h2 {
    font-size: 2.5rem;
  }
}
.about .intro {
  font-size: 1.3rem;
  color: #00FFF5;
  margin-bottom: 2rem;
  font-style: italic;
}
.about p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.about .skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .about .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about .skills-grid .skill-category {
  background: rgba(58, 79, 78, 0.2);
  border: 1px solid rgba(43, 189, 167, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}
.about .skills-grid .skill-category h3 {
  color: #2BBDA7;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.about .skills-grid .skill-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about .skills-grid .skill-category ul li {
  padding: 0.5rem 0;
  color: #E5E5E5;
  font-size: 0.95rem;
}
.about .skills-grid .skill-category ul li:before {
  content: "•";
  color: #00FFF5;
  margin-right: 0.5rem;
}

.collaborate .content-box {
  max-width: 1200px;
}
.collaborate h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2BBDA7;
  text-align: center;
}
@media (min-width: 768px) {
  .collaborate h2 {
    font-size: 2.5rem;
  }
}
.collaborate .section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #A0A0A0;
}
.collaborate .collaborate-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .collaborate .collaborate-content {
    grid-template-columns: 1fr 1fr;
  }
}
.collaborate .collaborate-content h3 {
  color: #2BBDA7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.collaborate .collaborate-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.collaborate .process-list {
  list-style: none;
  counter-reset: process-counter;
  padding: 0;
  margin-bottom: 2rem;
}
.collaborate .process-list li {
  counter-increment: process-counter;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}
.collaborate .process-list li:before {
  content: counter(process-counter);
  position: absolute;
  left: 0;
  top: 0;
  color: #2BBDA7;
  font-weight: bold;
  font-size: 1.2rem;
}
.collaborate .process-list li strong {
  color: #00FFF5;
}
.collaborate .ideal-projects {
  list-style: none;
  padding: 0;
}
.collaborate .ideal-projects li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(43, 189, 167, 0.1);
}
.collaborate .ideal-projects li:before {
  content: "✓";
  color: #00FFF5;
  margin-right: 0.5rem;
  font-weight: bold;
}
.collaborate .contact-form-wrapper {
  background: rgba(58, 79, 78, 0.2);
  border: 1px solid rgba(43, 189, 167, 0.1);
  border-radius: 8px;
  padding: 2rem;
}
.collaborate .contact-info {
  margin: 2rem 0;
}
.collaborate .contact-info p {
  margin-bottom: 1rem;
}
.collaborate .contact-info strong {
  color: #2BBDA7;
}
.collaborate .availability {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43, 189, 167, 0.2);
}
.collaborate .availability h4 {
  color: #2BBDA7;
  margin-bottom: 1rem;
}
.collaborate .availability .status-badge {
  display: inline-block;
  background: rgba(0, 255, 245, 0.1);
  color: #00FFF5;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.policy .content-box {
  max-width: 1000px;
}
.policy h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2BBDA7;
  text-align: center;
}
@media (min-width: 768px) {
  .policy h2 {
    font-size: 2.5rem;
  }
}
.policy .policy-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.policy .policy-section h3 {
  color: #2BBDA7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.policy .policy-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.policy .policy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.policy .policy-section ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #A0A0A0;
}
.policy .policy-section ul li:before {
  content: "•";
  color: #2BBDA7;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.footer {
  margin-bottom: 0.25rem;
  padding: 0.75rem 2rem 0.25rem;
  font-size: 0.85rem;
}
@media (min-width: 1440px) {
  .footer {
    margin-bottom: 0.5rem;
    padding: 1rem 4rem 0.5rem;
  }
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.footer .footer-content .footer-section h3,
.footer .footer-content .footer-section h4 {
  color: #2BBDA7;
  margin-bottom: 0.175rem;
  font-size: 0.9rem;
}
.footer .footer-content .footer-section p {
  color: #A0A0A0;
  margin-bottom: 0.1rem;
  font-size: 0.8rem;
  line-height: 1.2;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.1rem;
}
.footer .footer-links .footer-tab-link {
  background: none;
  border: none;
  color: #E5E5E5;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  font-family: "basic-sans", sans-serif, monospace;
  font-size: 0.8rem;
  padding: 0;
}
.footer .footer-links .footer-tab-link:hover {
  color: #2BBDA7;
}
.footer .contact-email {
  margin-top: 0.175rem;
  font-size: 0.8rem;
}
.footer .contact-email a {
  color: #00FFF5;
}
.footer .footer-bottom {
  padding-top: 0.375rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(43, 189, 167, 0.1);
  text-align: center;
}
.footer .footer-bottom .copyright {
  font-size: 0.75rem;
  margin: 0;
}
.footer .social-links {
  display: flex;
  gap: 0.25rem;
}
.footer .social-links a {
  font-size: 0.8rem;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.project-tags .tag {
  background: rgba(43, 189, 167, 0.1);
  color: #2BBDA7;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  border: 1px solid rgba(43, 189, 167, 0.2);
}

.viewport-ruler {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  background: rgba(17, 19, 18, 0.9);
  border: 1px solid #2BBDA7;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-family: "basic-sans", sans-serif, monospace;
  font-size: 0.9rem;
  color: #00FFF5;
  font-weight: bold;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.viewport-ruler::before {
  content: "W: " attr(data-width) "px | H: " attr(data-height) "px";
}
.viewport-ruler.mobile::after {
  content: " | MOBILE";
  color: #2BBDA7;
}
.viewport-ruler.tablet::after {
  content: " | TABLET";
  color: #00FFF5;
}
.viewport-ruler.desktop::after {
  content: " | DESKTOP";
  color: #5CAEA0;
}
.viewport-ruler.hd::after {
  content: " | HD";
  color: #FFFFFF;
}
@media (max-width: 320px) {
  .viewport-ruler {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

.grid-ruler {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.1;
  background-image: linear-gradient(90deg, #2BBDA7 1px, transparent 1px), linear-gradient(0deg, #2BBDA7 1px, transparent 1px);
  background-size: 100px 100px;
}
.grid-ruler.show {
  opacity: 0.3;
}
.grid-ruler::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #00FFF5 2px, transparent 2px), linear-gradient(0deg, #00FFF5 2px, transparent 2px);
  background-size: 500px 500px;
}/*# sourceMappingURL=styles.css.map */