|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Telar — Software for tour operators</title> |
|
<meta name="description" content="Telar is a B2B platform for tour operators: supplier agreements, tariffs and reservations, woven into one system. Currently in private alpha."> |
|
<link rel="preconnect" href="https://fonts.googleapis.com"> |
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
|
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700&family=Albert+Sans:wght@400;500&family=Spline+Sans+Mono:wght@400;500&display=swap" rel="stylesheet"> |
|
<style> |
|
:root { |
|
--paper: #FBFAF6; |
|
--ink: #23282D; |
|
--ink-soft: #5A6068; |
|
--teal: #2E6E64; |
|
--cardinal: #B8442E; |
|
--gold: #D9A441; |
|
--indigo: #39507E; |
|
--fuchsia: #A93A66; |
|
--hairline: #E4E1D8; |
|
} |
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; } |
|
|
|
html { height: 100%; } |
|
|
|
body { |
|
min-height: 100svh; |
|
display: flex; |
|
flex-direction: column; |
|
background: var(--paper); |
|
color: var(--ink); |
|
font-family: "Albert Sans", system-ui, sans-serif; |
|
font-size: 17px; |
|
line-height: 1.6; |
|
-webkit-font-smoothing: antialiased; |
|
} |
|
|
|
/* Signature: the woven selvage band */ |
|
.selvage { |
|
height: 10px; |
|
background: repeating-linear-gradient( |
|
105deg, |
|
var(--teal) 0 22px, |
|
var(--gold) 22px 30px, |
|
var(--cardinal) 30px 52px, |
|
var(--indigo) 52px 74px, |
|
var(--fuchsia) 74px 82px |
|
); |
|
} |
|
|
|
.wrap { |
|
width: min(100% - 3rem, 880px); |
|
margin-inline: auto; |
|
} |
|
|
|
header { |
|
padding: 1.6rem 0 0; |
|
} |
|
|
|
.topline { |
|
display: flex; |
|
align-items: baseline; |
|
justify-content: space-between; |
|
gap: 1rem; |
|
} |
|
|
|
.wordmark { |
|
font-family: "Bricolage Grotesque", sans-serif; |
|
font-weight: 700; |
|
font-size: 1.45rem; |
|
letter-spacing: -0.01em; |
|
color: var(--ink); |
|
text-decoration: none; |
|
} |
|
|
|
.wordmark span { |
|
display: inline-block; |
|
width: 0.55em; |
|
height: 0.55em; |
|
margin-left: 0.3em; |
|
background: |
|
repeating-linear-gradient(90deg, var(--cardinal) 0 2px, transparent 2px 5px), |
|
repeating-linear-gradient(0deg, var(--teal) 0 2px, transparent 2px 5px); |
|
} |
|
|
|
.status { |
|
font-family: "Spline Sans Mono", monospace; |
|
font-size: 0.78rem; |
|
color: var(--ink-soft); |
|
white-space: nowrap; |
|
} |
|
|
|
main { |
|
flex: 1; |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
padding: 4rem 0 3.5rem; |
|
} |
|
|
|
.eyebrow { |
|
font-family: "Spline Sans Mono", monospace; |
|
font-size: 0.82rem; |
|
letter-spacing: 0.06em; |
|
text-transform: uppercase; |
|
color: var(--teal); |
|
margin-bottom: 1.1rem; |
|
} |
|
|
|
h1 { |
|
font-family: "Bricolage Grotesque", sans-serif; |
|
font-weight: 700; |
|
font-size: clamp(2.1rem, 5.4vw, 3.4rem); |
|
line-height: 1.08; |
|
letter-spacing: -0.02em; |
|
max-width: 17ch; |
|
margin-bottom: 1.4rem; |
|
} |
|
|
|
.lede { |
|
max-width: 56ch; |
|
color: var(--ink-soft); |
|
font-size: 1.06rem; |
|
margin-bottom: 3.2rem; |
|
} |
|
|
|
.lede strong { |
|
color: var(--ink); |
|
font-weight: 500; |
|
} |
|
|
|
.threads { |
|
display: grid; |
|
grid-template-columns: repeat(3, 1fr); |
|
gap: 2rem; |
|
list-style: none; |
|
border-top: 1px solid var(--hairline); |
|
padding-top: 1.6rem; |
|
} |
|
|
|
.threads li { |
|
position: relative; |
|
padding-top: 0.9rem; |
|
} |
|
|
|
.threads li::before { |
|
content: ""; |
|
position: absolute; |
|
top: -1.6rem; |
|
left: 0; |
|
width: 2.6rem; |
|
height: 4px; |
|
} |
|
|
|
.threads li:nth-child(1)::before { background: var(--teal); } |
|
.threads li:nth-child(2)::before { background: var(--gold); } |
|
.threads li:nth-child(3)::before { background: var(--cardinal); } |
|
|
|
.threads h2 { |
|
font-family: "Bricolage Grotesque", sans-serif; |
|
font-weight: 500; |
|
font-size: 1.02rem; |
|
margin-bottom: 0.35rem; |
|
} |
|
|
|
.threads p { |
|
font-size: 0.92rem; |
|
color: var(--ink-soft); |
|
line-height: 1.55; |
|
} |
|
|
|
footer { |
|
border-top: 1px solid var(--hairline); |
|
padding: 1.3rem 0 1.6rem; |
|
} |
|
|
|
.footline { |
|
display: flex; |
|
flex-wrap: wrap; |
|
align-items: baseline; |
|
justify-content: space-between; |
|
gap: 0.6rem 1.5rem; |
|
font-size: 0.88rem; |
|
color: var(--ink-soft); |
|
} |
|
|
|
.footline a { |
|
font-family: "Spline Sans Mono", monospace; |
|
font-size: 0.84rem; |
|
color: var(--teal); |
|
text-decoration: none; |
|
border-bottom: 1px solid currentColor; |
|
} |
|
|
|
.footline a:hover, .footline a:focus-visible { |
|
color: var(--cardinal); |
|
} |
|
|
|
a:focus-visible { |
|
outline: 2px solid var(--indigo); |
|
outline-offset: 3px; |
|
} |
|
|
|
@media (max-width: 640px) { |
|
.threads { grid-template-columns: 1fr; gap: 2.4rem; } |
|
.threads li::before { top: -1.2rem; } |
|
main { padding: 3rem 0 2.5rem; } |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<div class="selvage" role="presentation"></div> |
|
|
|
<header class="wrap"> |
|
<div class="topline"> |
|
<a class="wordmark" href="/">Telar<span role="presentation"></span></a> |
|
<p class="status">private alpha · 2026</p> |
|
</div> |
|
</header> |
|
|
|
<main class="wrap"> |
|
<p class="eyebrow">Software for tour operators</p> |
|
<h1>Supplier agreements, tariffs and reservations, woven into one system.</h1> |
|
<p class="lede"><strong>Telar</strong> — Spanish for loom — is a B2B platform where a tour operator's daily work comes together: it reads supplier agreements, keeps tariffs current and consistent, and turns them into an operable catalog. Built hand in hand with working operators, starting in Argentina.</p> |
|
|
|
<ul class="threads"> |
|
<li> |
|
<h2>Agreements</h2> |
|
<p>Supplier agreements are read and structured with AI assistance, reviewed and confirmed by your team — conditions stop living in PDFs and inboxes.</p> |
|
</li> |
|
<li> |
|
<h2>Tariffs & catalog</h2> |
|
<p>Seasons, currencies and billing units resolved into one consistent tariff base, ready to quote from.</p> |
|
</li> |
|
<li> |
|
<h2>Reservations</h2> |
|
<p>From quote to confirmed file, connected to the same agreements and tariffs the operation runs on.</p> |
|
</li> |
|
</ul> |
|
</main> |
|
|
|
<footer> |
|
<div class="wrap footline"> |
|
<p>© 2026 Telar · Buenos Aires, Argentina</p> |
|
<a href="/cdn-cgi/l/email-protection#c9a1a6a5a889aca5bdaca5a8bbe7a8b9b9"><span class="__cf_email__" data-cfemail="11797e7d7051747d65747d70633f706161">[email protected]</span></a> |
|
</div> |
|
</footer> |
|
|
|
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v833ccba57c9e4d2798f2e76cebdd09a11778172276447" integrity="sha512-57MDmcccJXYtNnH+ZiBwzC4jb2rvgVCEokYN+L/nLlmO8rfYT/gIpW2A569iJ/3b+0UEasghjuZH/ma3wIs/EQ==" data-cf-beacon='{"version":"2024.11.0","token":"2edcc2ba012f4d65b71982701cf16649","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script> |
|
</body> |
|
</html> |
|
|