:root {
    --primary: #4b5cfb;
    --primary-dark: #3749ff;
    --secondary: #32478e;
    --accent:#6c7ff2;
    --background: #f8f9fc;
    --surface: #ffffff;
    --text-primary: #1a1d2e;
    --text-secondary: #6b7280;
    --border: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(.4, 0,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--background);
}

body {
    background-color: #e9ecf1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

h1 {
    color: #4b5cfb;
    font-size: 70px;
}

h2 {
    color: #5665ff;
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: #2f2f2f;
    max-width: 800px;
}

a {
    color: #4b5cfb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover:not(.btn):not(.btn-primary):not(.btn-secondary):not(.btn-download):not(.btn-contact) {
    color: #3749ff;
    text-decoration: underline;
}

/* nav settings */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-title {
    font-size: 1.8rem;
    font-weight: 760;
    color: var(--primary);}

.nav-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

nav:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

nav.scrolled {
    background: rgba(248, 249, 252, 0.7);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #4b5cfb; text-decoration: none; }

/* Home section - #home */
#home {
    min-height: 91vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 10%;
    background: linear-gradient(135deg, #f8f9fd 0%, #d4d5e8 100%);
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(75, 92, 251, 0.15), transparent 70%);
    animation: pulse 6s infinite;
    z-index: 0;
}

/* Floating shapes animation */
#home::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.1), rgba(108, 127, 242, 0.1));
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    animation: float 8s infinite ease-in-out;
    z-index: 0;
}

/* bubble 2 */
.bubble-2 {
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.08), rgba(75, 92, 251, 0.08));
    border-radius: 50%;
    top: 5%;
    left: 2%;
    animation: float 10s infinite ease-in-out;
    animation-delay: -2s;
    z-index: 0;
}

/* bubble 3 */
.bubble-3 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.12), rgba(50, 71, 142, 0.1));
    border-radius: 50%;
    top: 8%;
    right: 3%;
    animation: float 12s infinite ease-in-out;
    animation-delay: -4s;
    z-index: 0;
}

/* bbubble 4 */
.bubble-4 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.1), rgba(75, 92, 251, 0.08));
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: float 9s infinite ease-in-out;
    animation-delay: -6s;
    z-index: 0;
}

/* bubble 5 */
.bubble-5 {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.1), rgba(108, 127, 242, 0.08));
    border-radius: 50%;
    top: 60%;
    right: 8%;
    animation: float 11s infinite ease-in-out;
    animation-delay: -3s;
    z-index: 0;
}

/* bubble 6*/
.bubble-6 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.09), rgba(108, 127, 242, 0.09));
    border-radius: 50%;
    top: 40%;
    left: 3%;
    animation: float 10.5s infinite ease-in-out;
    animation-delay: -5s;
    z-index: 0;
}

/* bubble 7 */
.bubble-7 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(108, 127, 242, 0.1), rgba(75, 92, 251, 0.1));
    border-radius: 50%;
    bottom: 20%;
    right: 20%;
    animation: float 8.5s infinite ease-in-out;
    animation-delay: -1s;
    z-index: 0;
}

/* bubble 8 */
.bubble-8 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(75, 92, 251, 0.09), rgba(108, 127, 242, 0.08));
    border-radius: 50%;
    top: 15%;
    left: 17%;
    animation: float 9.5s infinite ease-in-out;
    animation-delay: -7s;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-40px) translateX(15px) rotate(3deg);
    }
    50% {
        transform: translateY(-50px) translateX(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-30px) translateX(20px) rotate(4deg);
    }
}

@keyframes floatStrong {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-60px) translateX(25px) rotate(5deg);
    }
    50% {
        transform: translateY(-70px) translateX(-20px) rotate(-4deg);
    }
    75% {
        transform: translateY(-45px) translateX(30px) rotate(6deg);
    }
}


@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        filter: blur(1px) brightness(1);
        box-shadow: 0 0 30px rgba(108, 127, 242, 0.2);
    }
    33% {
        transform: translateY(-45px) translateX(20px) scale(1.05);
        filter: blur(2px) brightness(1.1);
        box-shadow: 0 0 50px rgba(108, 127, 242, 0.35);
    }
    66% {
        transform: translateY(-30px) translateX(-15px) scale(0.98);
        filter: blur(1.5px) brightness(1.05);
        box-shadow: 0 0 40px rgba(108, 127, 242, 0.3);
    }
}

/* move anim */
@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-50px) translateX(15px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-65px) translateX(-10px) scale(0.95);
        opacity: 0.85;
    }
    75% {
        transform: translateY(-40px) translateX(20px) scale(1.05);
        opacity: 0.95;
    }
}

/* rotate with float anim */
@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-55px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-75px) translateX(-25px) rotate(180deg);
    }
    75% {
        transform: translateY(-50px) translateX(35px) rotate(270deg);
    }
}

/* scale with float anim */
@keyframes floatScale {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    20% {
        transform: translateY(-40px) translateX(20px) scale(1.15);
    }
    40% {
        transform: translateY(-65px) translateX(-15px) scale(0.9);
    }
    60% {
        transform: translateY(-50px) translateX(25px) scale(1.1);
    }
    80% {
        transform: translateY(-30px) translateX(-10px) scale(0.95);
    }
}

/* Hero Badge */
.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}



.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white !important;
    text-decoration: none !important;
}

.btn-secondary {
    background: white;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    text-decoration: none !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:visited {
    background: var(--primary);
    color: white !important;
    transform: translateY(-3px);
    text-decoration: none !important;
}

/* Spezifische Regel für Home-Buttons */
#home .btn-primary,
#home .btn-primary:hover,
#home .btn-primary:focus,
#home .btn-primary:active {
    color: white !important;
}

#home .btn-secondary:hover,
#home .btn-secondary:focus,
#home .btn-secondary:active {
    color: white !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

section {
    padding: 4rem 0;
    scroll-margin-top: 70px;
}

section .container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

section .container p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
    margin: 0;
}

section .container h2,
section .container p {
    padding: 0;
    margin-left: 0;
}

@media (max-width: 768px) {
    /* Ensure nav links are collapsed on small screens (override earlier rules) */
    .nav-toggle { display: inline-flex !important; }

    .nav-links {
        display: none !important;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        padding: 0.8rem 0;
        text-align: center;
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav { align-items: center; }
}

@media (max-width: 640px) {
    .container { padding: 0 6%; }
    .hero-content { gap: 1rem; }
}

/* Platform Switch Buttons */
.platform-switch {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.platform {
    background-color: #f0f2f5;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
}

.platform:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

.platform.active {
    background-color: #4b5cfb;
    border-color: #4b5cfb;
    color: white;
    font-weight: 600;
}

/* Device Container and Images */
.device-container {
    margin: 30px 0;
    text-align: center;
}

.device {
    margin: 0 auto;
}

.device img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.device figcaption {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
    font-style: italic;
}

/* Download Buttons */
.download-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-download {
    background-color: #4b5cfb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 92, 251, 0.3);
}


/*!* Footer *!*/
/*footer {*/
/*  background: linear-gradient(135deg, #4b5cfb, #3749d8);*/
/*  color: white;*/
/*  width: 100%;*/
/*  margin: 0;*/
/*  padding: 60px 0 0 0;*/
/*  box-sizing: border-box;*/
/*  position: relative;*/
/*  overflow-x: hidden;*/
/*}*/

/*footer::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  height: 1px;*/
/*  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);*/
/*}*/

/*.footer-container {*/
/*  display: grid;*/
/*  grid-template-columns: 1.5fr 1fr 1fr 1fr;*/
/*  gap: 30px;*/
/*  max-width: 1400px;*/
/*  margin: 0 auto;*/
/*  padding: 0 40px 60px 40px;*/
/*}*/

/*@media (max-width: 1200px) {*/
/*  .footer-container {*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 40px;*/
/*  }*/
/*}*/

/*@media (max-width: 640px) {*/
/*  .footer-container {*/
/*    grid-template-columns: 1fr;*/
/*    gap: 30px;*/
/*  }*/
/*}*/

/*.footer-section {*/
/*  text-align: left;*/
/*  max-width: 100%;*/
/*  min-width: 0;*/
/*}*/

/*.footer-section h2 {*/
/*  color: #fff;*/
/*  font-size: 28px;*/
/*  margin-bottom: 15px;*/
/*  font-weight: 800;*/
/*  letter-spacing: -0.5px;*/
/*}*/

/*.footer-section h3 {*/
/*  color: #fff;*/
/*  margin-bottom: 20px;*/
/*  font-size: 16px;*/
/*  font-weight: 700;*/
/*  letter-spacing: 0.5px;*/
/*  text-transform: uppercase;*/
/*  opacity: 0.95;*/
/*}*/

/*.footer-section p {*/
/*  color: rgba(255, 255, 255, 0.85);*/
/*  font-size: 15px;*/
/*  line-height: 1.8;*/
/*  max-width: none;*/
/*  width: 100%;*/
/*  margin-bottom: 20px;*/
/*  word-wrap: break-word;*/
/*  overflow-wrap: break-word;*/
/*  hyphens: auto;*/
/*}*/

/*.footer-section a {*/
/*  display: block;*/
/*  color: rgba(255, 255, 255, 0.8);*/
/*  text-decoration: none;*/
/*  margin-bottom: 12px;*/
/*  font-size: 15px;*/
/*  transition: all 0.3s ease;*/
/*  padding-left: 20px;*/
/*  position: relative;*/
/*}*/

/*.footer-section a::before {*/
/*  content: "→";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  opacity: 0;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.footer-section a:hover {*/
/*  color: #ffffff;*/
/*  transform: translateX(8px);*/
/*  text-decoration: none;*/
/*}*/

/*.footer-section a:hover::before {*/
/*  opacity: 1;*/
/*  left: 0;*/
/*}*/

/*.footer-bottom {*/
/*  text-align: center;*/
/*  margin: 0;*/
/*  border-top: 1px solid rgba(255, 255, 255, 0.2);*/
/*  padding: 30px 20px;*/
/*  background: rgba(0, 0, 0, 0.15);*/
/*}*/

/*.footer-bottom p {*/
/*  margin: 0;*/
/*  font-size: 15px;*/
/*  color: rgba(255, 255, 255, 0.75);*/
/*  max-width: 100%;*/
/*  letter-spacing: 0.3px;*/
/*}*/

footer a,
footer .footer-section a,
footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.95) !important;
  text-decoration: none !important;
}

footer a:hover,
footer .footer-section a:hover,
footer .footer-bottom a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Deskstop */
#desktop .hero-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

#desktop .hero-text {
    flex: 1;
}

#desktop .device-container {
    flex: 1;
}

/* Mobile */

/* Desktop Section */
#desktop {
    background: linear-gradient(135deg, #f8f9fd 0%, #e9ecf1 100%);
}

#desktop .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

#desktop .hero-text {
    flex: 1.2;
    max-width: 600px;
}

#desktop .hero-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

#desktop .hero-text p:last-of-type {
    font-size: 0.95rem;
    margin-bottom: 0;
}

#desktop .instruction-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

#desktop .instruction-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-decoration: none;
}

#desktop .platform-switch {
    justify-content: flex-start;
    margin: 2.5rem 0 1.5rem 0;
}

#desktop .platform {
    padding: 12px 28px;
    font-size: 17px;
}

#desktop .download-row {
    justify-content: flex-start;
    margin-top: 2rem;
    gap: 1.2rem;
    flex-wrap: wrap;
}

#desktop .btn-download {
    padding: 14px 28px;
    font-size: 16px;
}

#desktop .device-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

#desktop .device {
    width: 100%;
    max-width: 500px;
}

#desktop .device img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#desktop .device img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

#desktop .device figcaption {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design für Desktop Section */
@media (max-width: 1024px) {
    #desktop .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    #desktop .hero-text {
        max-width: 100%;
        text-align: left;
    }
    
    #desktop .platform-switch {
        justify-content: flex-start;
    }
    
    #desktop .download-row {
        justify-content: flex-start;
    }
    
    #desktop .device {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    #desktop .hero-content {
        gap: 2rem;
    }
    
    #desktop .hero-text {
        text-align: left;
    }

    #desktop .hero-text p {
        font-size: 1rem;
    }
    
    #desktop .platform-switch {
        justify-content: flex-start;
    }

    #desktop .download-row {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    #desktop .btn-download {
        width: auto;
        text-align: center;
    }
}

/* Responsive improvements for tablet and mobile to improve layout, bubbles and text sizing */
@media (max-width: 1024px) {
    #home {
        padding: 3rem 6%;
    }

    h1 {
        font-size: 48px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-badge {
        margin: 0 auto 1rem auto;
    }

    /* Reduce bubble sizes and reposition so they don't overlap content */
    .bubble-2 { width: 140px; height: 140px; top: 2%; left: 3%; }
    .bubble-3 { width: 120px; height: 120px; top: 6%; right: 3%; }
    .bubble-4 { width: 130px; height: 130px; bottom: 5%; left: 3%; }
    .bubble-5 { width: 90px;  height: 90px;  top: 55%; right: 6%; }
    .bubble-6 { width: 110px; height: 110px; top: 38%; left: 4%; }
    .bubble-7 { width: 80px;  height: 80px;  bottom: 18%; right: 12%; }
    .bubble-8 { display: none; }
}

@media (max-width: 768px) {
    #home {
        padding: 2.2rem 5%;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 15px;
    }

    .hero-content {
        gap: 1rem;
    }

    /* Hide most decorative bubbles on small phones to avoid overlap and layout issues */
    .bubble-2,
    .bubble-3,
    .bubble-4,
    .bubble-5,
    .bubble-6,
    .bubble-7 { display: none; }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Tighten spacing on very small screens */
    #home {
        padding: 1.6rem 4%;
    }

    h1 {
        font-size: 30px;
    }

    p {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-badge {
        border-radius: 28px;
        font-size: 0.85rem;
    }
}

/* About section styles moved from template */
.about-note {
    background: var(--background);
    border-radius: 4px;
    margin: 0.9em auto 0.6em auto;
    padding: 0.6em 0.9em;
    max-width: 100%;
    color: var(--text-primary);
    font-size: 0.96rem;
    text-align: left;
    border: 1px solid var(--border);
    box-shadow: none;
    border-left: 4px solid var(--accent);
}
.about-note .note-label {
    font-weight: 600;
    font-style: normal;
    color: var(--accent);
    margin-bottom: 0.12em;
    display: block;
    letter-spacing: 0.01em;
    font-size: 1.02rem;
}
.about-link { color: var(--primary); text-decoration: underline; }

section#about > .container,
#about .container {
    max-width: 1400px;
    padding-left: 13rem !important;
    padding-right: 2rem !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#about .hero-content,
#about .hero-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0;
    box-sizing: border-box;
}

#about .hero-text {
    max-width: 100% !important;
    width: 100% !important;
}

.about-note { max-width: 100%; }

@media (min-width: 1600px) {
    section#about > .container, #about .container { max-width: 1600px; }
}
@media (max-width: 1000px) {
    section#about > .container, #about .container {
        max-width: 95vw;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

#about .hero-text p,
#about .hero-text p * {
    max-width: 100% !important;
    width: 100% !important;
}
#about .hero-text h2,
#about .hero-text h3,
#about .hero-text .about-note {
    max-width: 100% !important;
    width: 100% !important;
}

#about .hero-text, #about .hero-content {
    text-align: left !important;
    align-items: flex-start !important;
}
