:root{
  --ink:#0b1014;
  --ink-2:#17212a;
  --paper:#f6f7f4;
  --paper-2:#ecefeb;
  --white:#ffffff;
  --muted:#68727c;
  --soft:#dfe4e0;
  --line:rgba(11,16,20,.12);
  --line-dark:rgba(255,255,255,.18);
  --red:#e02020;
  --blue:#246bfe;
  --green:#6f8d52;
  --shadow:0 24px 80px rgba(11,16,20,.12);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Arial,sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.55;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}
::selection{background:rgba(224,32,32,.18)}

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  background:rgba(8,12,16,.78);
  border-bottom:1px solid var(--line-dark);
  backdrop-filter:blur(18px);
}
.nav-inner{
  max-width:1240px;
  margin:0 auto;
  padding:14px 24px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}
.nav-inner > *,
.section-head > *{
  min-width:0;
}
.brand:before{
  content:"RR";
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.26);
  border-radius:8px;
  background:linear-gradient(135deg,#fff 0 48%,var(--red) 49% 100%);
  color:#101417;
  font-size:11px;
  font-weight:900;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width:0;
  gap:8px;
  color:rgba(255,255,255,.68);
  font-size:14px;
}
.nav-links a{
  border-radius:999px;
  padding:9px 12px;
  transition:background .2s ease,color .2s ease;
}
.nav-links a:hover,
.nav-links a.active{
  background:rgba(255,255,255,.1);
  color:#fff;
}
.nav-cta{
  color:#fff!important;
  background:#fff!important;
  color:#0b1014!important;
  padding-inline:16px!important;
}
.language-switch{
  display:flex;
  align-items:center;
  gap:3px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  padding:3px;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.68);
  white-space:nowrap;
}
.language-switch a{
  min-width:34px;
  border-radius:999px;
  padding:6px 8px;
  text-align:center;
  font-size:12px;
  font-weight:750;
  transition:background .2s ease,color .2s ease;
}
.language-switch a:hover,
.language-switch a.active{
  background:#fff;
  color:#0b1014;
}
.mobile-note{display:none}

.hero{
  min-height:86vh;
  padding:112px 24px 48px;
  display:grid;
  align-items:center;
  background:
    linear-gradient(110deg,rgba(5,8,11,.98),rgba(7,12,16,.94) 48%,rgba(7,12,16,.78)),
    repeating-linear-gradient(90deg,rgba(255,255,255,.045) 0 1px,transparent 1px 120px),
    #05080b;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero:after,
.page-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:28%;
  background:linear-gradient(to bottom,rgba(5,8,11,0),rgba(5,8,11,.72));
  pointer-events:none;
}
.hero-grid{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.82fr);
  gap:56px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:34px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:7px 12px;
  color:rgba(255,255,255,.74);
  font-size:13px;
  margin-bottom:26px;
  background:rgba(255,255,255,.06);
}
.kicker i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--red);
  display:block;
  box-shadow:0 0 0 5px rgba(224,32,32,.14);
}
h1{
  max-width:980px;
  font-size:68px;
  line-height:1;
  font-weight:850;
  letter-spacing:0;
  margin-bottom:28px;
  overflow-wrap:anywhere;
}
.lead{
  max-width:690px;
  color:rgba(255,255,255,.72);
  font-size:22px;
  line-height:1.45;
  margin-bottom:34px;
}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:999px;
  padding:12px 20px;
  font-weight:750;
  font-size:14px;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn:focus-visible,
.nav-links a:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(36,107,254,.32);
  outline-offset:3px;
}
.btn-primary{
  background:#fff;
  color:#0b1014;
  box-shadow:0 14px 40px rgba(255,255,255,.16);
}
.btn-dark{
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);
  color:#fff;
}
.hero-card{
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  box-shadow:0 30px 90px rgba(0,0,0,.38);
}
.hero-img{
  min-height:300px;
  aspect-ratio:16/11;
  background:url("hero-swiss-market.svg") center/cover no-repeat;
}
.hero-card-bottom{
  padding:22px 24px 24px;
  display:grid;
  gap:10px;
}
.hero-card-bottom strong{
  font-size:20px;
  line-height:1.2;
}
.hero-card-bottom p{color:rgba(255,255,255,.66)}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:12px;
  padding-top:16px;
}
.stat strong{
  display:block;
  font-size:25px;
  color:#fff;
}
.stat span{
  display:block;
  color:rgba(255,255,255,.58);
  font-size:12px;
}

section{padding:92px 24px}
.container{max-width:1240px;margin:0 auto}
.section-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,520px);
  gap:44px;
  align-items:end;
  margin-bottom:42px;
}
.section-title{
  font-size:50px;
  line-height:1.02;
  letter-spacing:0;
  overflow-wrap:anywhere;
}
.section-text{
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  min-height:248px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.76);
  padding:28px;
  position:relative;
  overflow:hidden;
  box-shadow:0 1px 0 rgba(255,255,255,.74) inset;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(36,107,254,.26);
  box-shadow:var(--shadow);
}
.card small{
  color:var(--red);
  font-size:13px;
  font-weight:850;
}
.card h3{
  max-width:420px;
  font-size:24px;
  line-height:1.14;
  letter-spacing:0;
  margin:42px 0 14px;
  overflow-wrap:anywhere;
}
.card p{color:var(--muted)}
.card:after{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  top:68px;
  height:1px;
  background:var(--line);
}

.feature{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:16px;
  align-items:stretch;
}
.feature-media,
.split-image{
  min-height:500px;
  border-radius:8px;
  border:1px solid var(--line);
  background-color:#11181f;
  box-shadow:var(--shadow);
}
.feature-media{background:url("alpine-product.svg") center/cover no-repeat}
.split-image{background:url("channel-map.svg") center/cover no-repeat}
.feature-copy{
  min-height:500px;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.feature-copy h2{
  max-width:620px;
  font-size:50px;
  line-height:1.02;
  letter-spacing:0;
  margin-bottom:18px;
  overflow-wrap:anywhere;
}
.feature-copy p{
  color:#4f5962;
  font-size:18px;
  line-height:1.62;
  max-width:660px;
}
.list{
  display:grid;
  gap:0;
  margin-top:30px;
}
.list-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding:17px 0;
  border-top:1px solid rgba(11,16,20,.12);
  font-weight:800;
}
.list-item span{
  font-weight:600;
  color:#65707a;
  font-size:13px;
  text-align:right;
}
.dark-list .list-item{border-top:1px solid rgba(255,255,255,.16)}
.dark-list .list-item span{color:rgba(255,255,255,.62)}

.process{
  border-top:1px solid var(--line);
  counter-reset:steps;
}
.step{
  display:grid;
  grid-template-columns:140px minmax(220px,1fr) minmax(260px,390px);
  gap:28px;
  padding:34px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
}
.step-num{
  color:var(--red);
  font-size:13px;
  font-weight:850;
}
.step h3{
  font-size:34px;
  line-height:1.08;
  letter-spacing:0;
  overflow-wrap:anywhere;
}
.step p{
  color:var(--muted);
  font-size:16px;
}

.page-hero{
  min-height:46vh;
  padding:132px 24px 64px;
  display:grid;
  align-items:end;
  background:
    linear-gradient(110deg,rgba(5,8,11,.98),rgba(9,15,20,.93)),
    repeating-linear-gradient(90deg,rgba(255,255,255,.042) 0 1px,transparent 1px 118px),
    #05080b;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.page-hero .container{
  width:100%;
  position:relative;
  z-index:2;
}
.page-hero h1{
  max-width:1040px;
  font-size:64px;
  margin-bottom:22px;
}
.breadcrumb{
  color:rgba(255,255,255,.62);
  margin-bottom:22px;
  font-size:14px;
}

.table,
.market-table{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  border-collapse:separate;
  border-spacing:0;
  box-shadow:0 1px 0 rgba(255,255,255,.78) inset;
}
.row{
  display:grid;
  grid-template-columns:1fr 1.6fr .8fr;
  border-bottom:1px solid var(--line);
}
.row:last-child{border-bottom:none}
.row div{padding:20px}
.row.head{
  background:#0e151b;
  font-weight:850;
  color:#fff;
}
.row div:nth-child(2),
.row div:nth-child(3){color:var(--muted)}
.market-table th,
.market-table td{
  padding:22px;
  text-align:left;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.market-table tr:last-child td{border-bottom:none}
.market-table th{
  background:#0e151b;
  color:#fff;
  font-weight:850;
}
.market-table td{color:var(--muted)}
.market-table td:first-child{
  color:var(--ink);
  font-weight:800;
}

.contact-panel{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:16px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:34px;
  box-shadow:0 1px 0 rgba(255,255,255,.74) inset;
}
.contact-card h2{
  font-size:42px;
  line-height:1.05;
  letter-spacing:0;
  margin-bottom:18px;
}
.contact-card p{
  color:var(--muted);
  margin-bottom:18px;
}
.contact-card a{
  color:var(--blue);
  font-weight:750;
}
.form{display:grid;gap:14px}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:8px;
  background:#f8faf8;
  color:var(--ink);
  font-size:15px;
  padding:15px 16px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
input:focus,
textarea:focus{
  border-color:rgba(36,107,254,.42);
  box-shadow:0 0 0 4px rgba(36,107,254,.09);
  background:#fff;
}
textarea{min-height:168px;resize:vertical}
button{border:0;cursor:pointer}
.form .btn-primary{
  background:#0b1014;
  color:#fff;
  box-shadow:none;
}
.form-note{
  color:var(--muted);
  font-size:13px;
  margin:2px 0 0;
}

.footer{
  border-top:1px solid var(--line);
  padding:30px 24px;
  color:#66707a;
  font-size:13px;
  background:#fff;
}
.footer-inner{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media(max-width:1100px){
  h1{font-size:58px}
  .page-hero h1{font-size:56px}
  .hero-grid{grid-template-columns:1fr;gap:34px}
  .hero-card{max-width:680px}
  .section-title,.feature-copy h2{font-size:44px}
}
@media(max-width:900px){
  .nav-inner{
    grid-template-columns:minmax(0,1fr) auto;
    gap:12px;
    padding:12px 18px;
  }
  .brand{
    grid-column:1;
    grid-row:1;
  }
  .language-switch{
    grid-column:2;
    grid-row:1;
    justify-self:end;
  }
  .nav-links{
    grid-column:1/-1;
    width:100%;
    overflow-x:auto;
    justify-content:flex-start;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .nav-links::-webkit-scrollbar{display:none}
  .mobile-note{display:none}
  .hero{
    min-height:auto;
    padding:146px 18px 48px;
  }
  .page-hero{padding:146px 18px 56px}
  h1,.page-hero h1{
    font-size:52px;
    line-height:1.02;
  }
  .lead{
    font-size:19px;
    margin-bottom:28px;
  }
  .hero-img{min-height:320px}
  .hero-img{
    min-height:0;
    aspect-ratio:16/11;
  }
  section{padding:70px 18px}
  .section-head{
    grid-template-columns:1fr;
    gap:16px;
    margin-bottom:30px;
  }
  .section-title,.feature-copy h2{font-size:40px}
  .cards,.feature,.contact-panel{grid-template-columns:1fr}
  .feature-media,
  .split-image,
  .feature-copy{
    min-height:360px;
  }
  .feature-copy{padding:30px}
  .step{
    grid-template-columns:1fr;
    gap:10px;
    padding:28px 0;
  }
  .row{grid-template-columns:1fr}
  .market-table{
    display:block;
    overflow:visible;
    white-space:normal;
  }
  .market-table thead{
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
  }
  .market-table tbody,
  .market-table tr,
  .market-table td{
    display:block;
    width:100%;
  }
  .market-table tr{
    padding:22px;
    border-bottom:1px solid var(--line);
  }
  .market-table tr:last-child{border-bottom:none}
  .market-table th,
  .market-table td{
    min-width:0;
    padding:0;
    border-bottom:none;
  }
  .market-table td + td{margin-top:16px}
  .market-table td:before{
    content:attr(data-label);
    display:block;
    color:var(--red);
    font-size:12px;
    font-weight:850;
    margin-bottom:4px;
  }
}
@media(max-width:560px){
  .brand{font-size:13px}
  .brand-extra{display:none}
  .language-switch a{
    min-width:28px;
    padding:5px 6px;
    font-size:11px;
  }
  .nav-links{gap:4px;font-size:13px}
  .nav-links a{padding:8px 10px}
  .hero{padding-top:142px}
  .page-hero{padding-top:142px}
  h1,.page-hero h1{font-size:42px}
  .section-title,.feature-copy h2{font-size:34px}
  .card{min-height:auto;padding:24px}
  .card h3{font-size:22px;margin-top:38px}
  .actions .btn{width:100%}
  .stat-row{grid-template-columns:1fr;gap:12px}
  .contact-card{padding:26px}
  .contact-card h2{font-size:34px}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }
}
